8189ftv driver compilatgion
Using orange pi plus 2e, armbian , come with 8189FTV driver (8189fs.ko), but wants to learn how to compile wireless driverGEt the original driver from Realtek, success compile , sucess insmod, but the dmesg is different with original driver 8189fs.ko
Then ifconfig , cannot find wlan0 , error device no found.
Makefile select CONFIG_SUN_NX y, select CONFIG_SUN_8ixxx will lead to unknown parameter when insmod the driver
Do anyone face this before or some advise
make command listed below
make ARCH=arm KSRC=/sys/lib/linux-header-sun8i CROSS_COMPILE=
thanks
Note for compile wpa_supplicant 2.6 in orange pi
wget https://w1.fi/releases/wpa_supplicant-2.6.tar.gz
tar -zxvf wpa_supplicant-2.6.tar.gz
cd /wpa_supplicant-2.6/wpa_supplicant
#create config file
cp defconfig .config
#add this to .config
CFLAGS += -I/usr/include/libnl3
CONFIG_LIBNL20=y
save .config
#add this symbolic link
ln -s /lib/arm-linux-gnueabihf/libnl-3.so /lib/arm-linux-gnueabihf/libnl.so
ln -s /lib/arm-linux-gnueabihf/libnl-genl-3.so /lib/arm-linux-gnueabihf/libnl-genl.so
make clean
make
make install
reboot
page:
[1]