首次部署powershell$adb C:\platform-tools\adb.exe$dev 192.168.0.115:51141. 连接并获取 root $adb connect $dev $adb root $adb connect $dev2. 推送驱动和工具到 /data/local/tmp/ $adb -s $dev push F:\2\01_drivers\8188eu_v5_patched.ko /data/local/tmp/ $adb -s $dev push F:\2\01_drivers\cfg80211.ko /data/local/tmp/ $adb -s $dev push F:\2\02_tools\wpa_supplicant_wext /data/local/tmp/ $adb -s $dev push F:\2\02_tools\wpa_cli_wext /data/local/tmp/ $adb -s $dev shell chmod 755 /data/local/tmp/wpa_supplicant_wext /data/local/tmp/wpa_cli_wext3. 推送自动加载脚本和配置 $adb -s $dev push F:\2\03_scripts\wifi_auto_load.sh /data/local/tmp/ $adb -s $dev shell chmod 755 /data/local/tmp/wifi_auto_load.sh4. 创建 WiFi 配置替换为你的 WiFi $adb -s $dev shell echo SSID你的WiFi名 /data/local/tmp/wifi_config.conf; echo PSK你的密码 /data/local/tmp/wifi_config.conf5. Remount /vendor 为 rw 并写入 init 配置 $adb -s $dev shell mount -o remount,rw /vendor $adb -s $dev push F:\2\03_scripts\init.wifi_auto.rc /vendor/etc/init/init.wifi_auto.rc6. 测试自动加载脚本 $adb -s $dev shell sh /data/local/tmp/wifi_auto_load.sh $adb -s $dev shell cat /data/local/tmp/wifi_auto.log7. 重启验证自动加载 $adb -s $dev reboot卸载自动加载powershellC:\platform-tools\adb.exe -s 192.168.0.115:5114 shell mount -o remount,rw /vendor; rm /vendor/etc/init/init.wifi_auto.rc文件https://github.com/CPPN2010/CM311-3-8188eu-WiFi-