| 
 | 
The Armbian team has finally fixed the header scripts generation error and released the minor version 5.11 
 
I was able upgrading the 5.10 image to 5.11 
 
root@orangepiplus:~# apt-get update && apt-get upgrade 
 
Then I was able building the driver again following the same steps as in the post above "Post time 2016-5-3 03:49:48". 
 
root@orangepiplus:/usr/src/rtl8189ES_linux# modinfo 8189es.ko 
filename:       /usr/src/rtl8189ES_linux/8189es.ko 
version:        v4.3.18.1_15373.20151005 <== 5 october 2015 
author:         Realtek Semiconductor Corp. 
description:    Realtek Wireless Lan Driver 
license:        GPL 
srcversion:     AD6BE9C509ECC03E70462BA 
alias:          sdio:c*v024Cd8179* 
depends:         
vermagic:       3.4.112-sun8i SMP preempt mod_unload modversions ARMv7 p2v8  
 
 
I enabled the Monitor mode in the Make file. 
 
It even shows up in the module capabilities: 
root@orangepiplus:/usr/src/rtl8189ES_linux# iw list 
        Supported Ciphers: 
                * WEP40 (00-0f-ac:1) 
                * WEP104 (00-0f-ac:5) 
                * TKIP (00-0f-ac:2) 
                * CCMP (00-0f-ac:4) 
        Available Antennas: TX 0 RX 0 
        Supported interface modes: 
                 * IBSS 
                 * managed 
                 * AP 
                 * monitor   <---- 
                 * P2P-client 
                 * P2P-GO 
        software interface modes (can always be added): 
                 * monitor 
 
Unfortunately, the switch to monitor mode doesn't run : 
 
"iwconfig wlan0 mode monitor" 
 
oot@orangepiplus:/usr/src/rtl8189ES_linux# iwconfig wlan0 mode monitor 
Error for wireless request "Set Mode" (8B06) : 
    SET failed on device wlan0 ; Operation not permitted. 
 
Despite this, the positive bug fix for this driver is that the wlan interface shows up correctly in the single instance : 
 
root@orangepiplus:~# iwconfig  
lo        no wireless extensions. 
 
tunl0     no wireless extensions. 
 
wlan0     unassociated  Nickname:"<WIFI@REALTEK>" 
          Mode:Managed  Frequency=2.412 GHz  Access Point: Not-Associated   
 
I haven't tested the driver performance and the packets drop rate. |   
 
 
 
 |