文章目录
- 源码
- 编译
- openssl编译
- libnl
- 交叉编译WPA
- 开发板测试使用
源码
wpa_supplicant官网:http://w1.fi/wpa_supplicant/
GIT源:git://w1.fi/hostap.git
openssl 源码:
https://www.openssl.org/
libnl 源码:
https://github.com/thom311/libnl/releases/download/libnl3_5_0/libnl-3.5.0.tar.gz 或
https://github.com/thom311/libnl/releases/
编译
编译wpa之前需要先编译openssl 以及 libnl
openssl编译
./Configure linux-armv4 shared no-asm --prefix=$(pwd)/install CROSS_COMPILE=arm-linux-gnueabihf-
make -j16
make install
libnl
./configure --host=arm-linux-gnueabihf --prefix=$(pwd)/install
如果出现以上错误提示,需要对应安装:
apt-get install bison
apt-get install flex
编译:
make -j16
make install
交叉编译WPA
- cp defconfig .config
- vim .config
- 添加如下内容
CC = arm-linux-gnueabihf-gcc
#openssl库和头文件路径
CFLAGS += -I/mnt/f/Project/Linux/Study/openssl-3.0.13/install/include
LIBS += -L/mnt/f/Project/Linux/Study/openssl-3.0.13/install/lib -lssl -lcrypto
#libnl库和头文件路径
CFLAGS += -I/mnt/f/Project/Linux/Study/libnl-3.2.25/install/include/libnl3
LIBS += -L/mnt/f/Project/Linux/Study/libnl-3.2.25/install/lib
export PKG_CONFIG_PATH=/mnt/f/Project/Linux/Study/wpa_supplicant-2.10/wpa_supplicant/install【替换成你的路径】
make -j16
如果出现如下dbus.h缺失
打开.config注释掉两个配置选项
#CONFIG_CTRL_IFACE_DBUS_NEW=y
#CONFIG_CTRL_IFACE_DBUS_INTRO=y
出现linux/if.h:71:2: error: redeclaration of enumerator ‘IFF_UP’
可能是libnl库的版本不对,比如3.2.25 需要用3.5.0
出现没有 if_macsec.h头文件
在.config中加上CFLAGS += -I/mnt/f/Project/Linux/Study/libnl-3.5.0/include/linux-private 该文件存在于libnl中
将编译出来的wpa_cli 以及 wpa_supplicant