要正常使用无线网卡,还要正确配置。linux下的配置工具是wireless-tools,可以在这里下载到它的最新版。
下载后,将源代码解压。
修改makdfile
## Installation directory. By default, go in /usr/local.
## Distributions should probably use /, but they probably know better...
ifndef PREFIX
PREFIX = *********/wireless_install
endif
## Compiler to use (modify this for cross compile).
CC = arm-none-linux-gnueabi-gcc
## Other tools you need to modify for cross compile (static lib only).
AR = arm-none-linux-gnueabi-ar
RANLIB = arm-none-linux-gnueabi-ranlib
make
make install
修改makdfile
## Installation directory. By default, go in /usr/local.
## Distributions should probably use /, but they probably know better...
ifndef PREFIX
PREFIX = *********/wireless_install
endif
## Compiler to use (modify this for cross compile).
CC = arm-none-linux-gnueabi-gcc
## Other tools you need to modify for cross compile (static lib only).
AR = arm-none-linux-gnueabi-ar
RANLIB = arm-none-linux-gnueabi-ranlib
make
make install
将生成的iwconfig,iwlist文件拷贝到开发板根文件系统中的/bin目录下,将libiw.so.29拷贝到/lib目录下。
参考:http://blog.youkuaiyun.com/ghjackie/article/details/6534199
参考:http://blog.youkuaiyun.com/ghjackie/article/details/6534199
本文介绍了如何在Linux环境下配置无线网卡。主要内容包括下载wireless-tools工具、编译安装及将必要的文件复制到开发板的指定目录。适用于希望了解Linux无线网络配置的读者。
202

被折叠的 条评论
为什么被折叠?



