试了半天,终于替换了网上说的wpa_supplicant,但是还是不行。。。 刚买了华为的mate2,结果发现上不了公司的leap wifi了。 搜到几个有用的页面: 1. http://blog.csdn.net/quqi99/article/details/17144869 这个基本上就可以解决问题了。 其中提到了google
试了半天,终于替换了网上说的wpa_supplicant,但是还是不行。。。
刚买了华为的mate2,结果发现上不了公司的leap wifi了。
搜到几个有用的页面:
1. http://blog.csdn.net/quqi99/article/details/17144869
这个基本上就可以解决问题了。
其中提到了google的这个bug,里面可以下那个wpa_supplicant.
2. http://code.google.com/p/android/issues/detail?id=40023
其中有一个回复我觉得这个方法会更方便点。
#43 davidall...@gmail.com
hurray! leap is working on my 4.2 nexus 7!i am running the 4.1.2 wpa_supplicant executable on my otherwise stock 4.2 system. here are the instructions for the steps i went through to do this:step 1: get a copy of the proper 4.1 wpa_supplicant executable for your device. my approach: download factory image if you have a nexus device, use this page: https://developers.google.com/android/nexus/images un-tar image use unzip to extract file system.img from image-xxxxxx.zip use expand script (simg2img) to expand the system.img file, creating tmp.img file. script is found here: http://usefulshellscript.googlecode.com/svn/trunk/simg2img.py mount tmp.img file using this command (as root): mount -t ext4 -o loop tmp.img /mnt (or the mount point of your choice) copy wpa_supplicant executable from the bin subdirectory, for example: cp -p /mnt/bin/wpa_supplicant ./wpa_supplicant-4.1.2 unmount the image file and clean up the gigabytes of files you've created during this processstep 2: transfer the file to your android device (i used wifi file explorer, but do whatever works for you)3. install the 4.1 version of wpa_supplicant (commands assume the new version is in the download directory - modify as needed) on your device, open a terminal session, become root make the /system directory writeable: mount -o rw,remount /system copy your new file there: cp -p /sdcard/download/wpa_supplicant-4.1.2 /system/bin make it executable: chmod 775 /system/bin/wpa_supplicant-4.1.2 rename the old version: mv /system/bin/wpa_supplicant /system/bin/wpa_supplicant-4.2 create a link to the new version (makes it clear which version you're running): ln -s /system/bin/wpa_supplicant-4.1.2 /system/bin/wpa_supplicant verify this all worked: /system/bin/wpa_supplicant -v - should return version 4.1.2 restart your system and leap should work as in 4.1.x还没最后实验成功,期待能用。