Does Linux kernel for i.mx6q support socket network programming?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Does Linux kernel for i.mx6q support socket network programming?

1,776 次查看
shijunzhao
Contributor III

I'm using i.mx6q sabresd board, and the Linux kernel is downloaded from here: GitHub - MrVan/linux: Linux kernel source tree . 

The problem is that the linux network socket seems don't work. When I write an application to create a socket, it is blocked. The network is ok,  as the ping works well.

Following is the code I want to create a socket. However, it is blocked, and doesn't run.

//Create socket
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0){
printf("Could not create socket");
exit(0);
}

标签 (3)
0 项奖励
回复
1 回复

1,672 次查看
igorpadykov
NXP Employee
NXP Employee

Hi shijun

according to attached Release Notes sect.2.1 New features nxp linux sources are located on

linux-imx - i.MX Linux kernel 

Supported functionality and drivers are described in attached Release Notes sect.3 BSP Supported Features

and Linux Manual.

Best regards
igor
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 项奖励
回复