您的位置:首页 > 编程语言 > ASP

树莓派2使用360wifi ,小米wifi

2015-05-10 23:34 489 查看
正好多了一个小米的wifi就拿来用一下编译了半天,怕以后忘了怎么搞这是我见过最奇葩的一次编译参考 http://www.7forz.com/2470/ http://www.freemindworld.com/blog/2015/150312_complie_kernel_module_for_raspberry_pi_2.shtml 我的是树莓派2
uname -r
3.18.11-v7+这是树莓派2的版本 如果你的是b+的就会是3.18.11+两个是不一样的 B+和2代的B是不一样的下载对应的源码确实都一样的 
</pre><pre name="code" class="html">wget https://github.com/raspberrypi/linux/archive/rpi-3.18.y.tar.gz tar xvfz rpi-3.18.y.tar.gz
mv linux-rpi-3.18.y /usr/src
ln -s /usr/src/linux-rpi-3.18.y /lib/modules/3.18.8-v7+/build
cd /lib/modules/3.18.8+/build
这个是我见过最奇葩的时候了先是树莓派自带的gcc-4.6 编译可以通过但是后面模块编译会出问题直接用gcc-4.8的编译会出现compiler too buggy 的问题(如果直接使用李大神说的rpi-source 就会出现这个问题)结果就是要先
apt-get install gcc-4.8 g++-4.8
<span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(247, 247, 247);">update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 20</span>
<span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 50</span>
<span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);"><span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(247, 247, 247);">update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.6 20</span>
</span>
<span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);"><span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(247, 247, 247);"><span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50</span>
</span></span>
<span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);"><span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(247, 247, 247);"><span style="color: rgb(255, 128, 0); font-family: Monaco, MonacoRegular, 'Courier New', monospace; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">
</span></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="line-height: 15px; white-space: pre-wrap;">更新到gcc-4.8以后再</span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="line-height: 15px; white-space: pre-wrap;">
</span></span>
<pre name="code" class="cpp">cd /usr/bin
rm gcc
rm g++
cp gcc-4.6 gcc
cp g++-4.6 g++
这个时候再回到目录 /lib/modules/3.18.11-v7+/build
<pre name="code" class="cpp">cd /lib/modules/3.18.11-v7+/build
执行编译
<pre name="code" class="cpp">make mrpropergzip -dc /proc/config.gz > .configmake modules_prepare
接下来下载内核模块导出符号文
<span style="font-family:arial;color:#2c2b2b;"><span style="font-size: 14px; line-height: 18px;">有两种文件   </span></span>
<span style="font-family:arial;color:#2c2b2b;"><span style="font-size: 14px; line-height: 18px;">一代 b+:下这个</span></span>
<span style="font-size: 14px;"></span><pre name="code" class="cpp" style="color: rgb(44, 43, 43); font-family: arial; line-height: 18px;">wget https://github.com/raspberrypi/firmware/raw/master/extra/Module.symvers
二代b 这个
<span class="crayon-e" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">wget </span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">https</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">:</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">github</span><span class="crayon-e" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">.com</spa4000n><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">raspberrypi</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">firmware</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">raw</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">master</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">extra</span><span class="crayon-o" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">/</span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">Module7</span><span class="crayon-e" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">.symvers</span>
<span class="crayon-e" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);"></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="line-height: 15px; white-space: pre-wrap;">二代B 要记得把 </span></span><pre name="code" class="cpp" style="font-size: 14px; font-family: arial; line-height: 18px;"><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">Module7</span><span class="crayon-e" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253);">.symvers 改为 </span><span style="color: rgb(44, 43, 43); background-color: rgb(253, 253, 253); white-space: pre-wrap;">Module.symvers</span>
<span style="color: rgb(44, 43, 43); background-color: rgb(253, 253, 253); white-space: pre-wrap;"></span><pre name="code" class="cpp">mv Module7.symvers Module.symvers
要不然接下来编译好的模块会出现Error: could not insert module tft.ko: Invalid module format
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;"></span></span></span>
接下来编译驱动,小米那些都是mt的 就看大神们怎么写的把源码 改改啦 。。
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;"></span></span></span>
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;">记得要将 gcc ,g++还原成4.8版本的</span></span></span>
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;"></span></span></span>
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;"></span></span></span><pre name="code" class="cpp">cd /usr/binrm gccrm g++cp gcc-4.8 gcccp g++-4.8 g++
进行编译 make && make install
<span style="font-family:arial;color:#2c2b2b;"><span style="font-size: 14px; line-height: 18px;">加载</span></span>
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;"><span class="crayon-e" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253); color: rgb(0, 78, 208) !important;">modprobe </span><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253); color: rgb(0, 45, 122) !important;">mt7601Usta</span></span></span></span>
<span style="font-size: 14px;"><span style="font-family:arial;color:#2c2b2b;"><span style="line-height: 18px;"><span class="crayon-v" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; height: inherit; line-height: 15px; white-space: pre-wrap; background-color: rgb(253, 253, 253); color: rgb(0, 45, 122) !important;"></span></span></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;">ps:什么都不会发生,有反馈信息就说明你有问题了 dmesg 慢慢看看吧,记得有反馈信息千万不要随便reboot,要不然就orz了</span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;">接下来</span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;">具体怎么连接看大神说的配置吧</span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;">更改</span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;">/etc/network/interfaces</span></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"></span></span></span><div class="crayon-line" id="crayon-554f74e435f3a193910366-11" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">allow</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">-</span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">hotplug </span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">ra0</span></div><div class="crayon-line crayon-striped-line" id="crayon-554f74e435f3a193910366-12" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; background-color: rgb(247, 247, 247) !important; white-space: pre-wrap !important;"><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">iface </span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">ra0 </span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">inet </span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">manual</span></div><div class="crayon-line" id="crayon-554f74e435f3a193910366-13" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">wpa</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">-</span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">roam</span><span class="crayon-h" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;"> </span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">/</span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">etc</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">/</span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">wpa_supplicant</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">/</span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">wpa_supplicant</span><span class="crayon-sy" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(51, 51, 51) !important;">.</span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">conf</span></div>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"></span></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;">/etc/wpa_supplicant/wpa_supplicant.conf</span></span></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"></span></span></span></span>
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"><span style="color: rgb(44, 43, 43); font-family: arial; font-size: 14px; line-height: 18px;"></span></span></span></span><div class="crayon-line crayon-striped-line" id="crayon-554f74e435f40500566281-4" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; background-color: rgb(247, 247, 247) !important; white-space: pre-wrap !important;"><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">network</span>c18f<span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-sy" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(51, 51, 51) !important;">{</span></div><div class="crayon-line" id="crayon-554f74e435f40500566281-5" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-h" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">ssid</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-s" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 128, 0) !important;">"yourssid"</span></div><div class="crayon-line crayon-striped-line" id="crayon-554f74e435f40500566281-6" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; background-color: rgb(247, 247, 247) !important; white-space: pre-wrap !important;"><span class="crayon-h" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">psk</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-s" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 128, 0) !important;">"yourpassword"</span></div><div class="crayon-line" id="crayon-554f74e435f40500566281-7" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-h" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">proto</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">RSN</span></div><div class="crayon-line crayon-striped-line" id="crayon-554f74e435f40500566281-8" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; background-color: rgb(247, 247, 247) !important; white-space: pre-wrap !important;"><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">key_mgmt</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">WPA</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">-</span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">PSK</span></div><div class="crayon-line" id="crayon-554f74e435f40500566281-9" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">pairwise</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">CCMP </span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">TKIP</span></div><div class="crayon-line crayon-striped-line" id="crayon-554f74e435f40500566281-10" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; background-color: rgb(247, 247, 247) !important; white-space: pre-wrap !important;"><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">group</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">CCMP </span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">TKIP</span></div><div class="crayon-line" id="crayon-554f74e435f40500566281-11" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">auth_alg</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">OPEN</span></div><div class="crayon-line crayon-striped-line" id="crayon-554f74e435f40500566281-12" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; background-color: rgb(247, 247, 247) !important; white-space: pre-wrap !important;"><span class="crayon-e" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 78, 208) !important;">        </span><span class="crayon-v" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 45, 122) !important;">priority</span><span class="crayon-o" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(0, 111, 224) !important;">=</span><span class="crayon-cn" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(206, 0, 0) !important;">3</span></div><div class="crayon-line" id="crayon-554f74e435f40500566281-13" style="font-family: Monaco, MonacoRegular, 'Courier New', monospace; background-color: rgb(253, 253, 253); border: 0px; padding: 0px 5px; margin: 0px; height: inherit; line-height: 15px; word-break: break-all; white-space: pre-wrap !important; background-position: 0px 50%;"><span class="crayon-sy" style="font-family: inherit; height: inherit; font-size: inherit !important; line-height: inherit !important; color: rgb(51, 51, 51) !important;">}</span></div>
<span style="font-family:arial;color:#2c2b2b;"><span style="font-size: 14px; line-height: 18px; white-space: pre-wrap;">之类的</span></span>
<span style="font-family:arial;color:#2c2b2b;"><span style="font-size: 14px; line-height: 18px; white-space: pre-wrap;"></span></span>
感觉还是买免驱的wifi吧,编译好wifi以后安装了一个LCD驱动以后竟然系统就崩了,ORZ,ORZ,ORZ
<span style="font-family:Monaco, MonacoRegular, Courier New, monospace;"><span style="font-size: 14px; line-height: 15px; white-space: pre-wrap;"></span></span>

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息