[Bug 728] Update INSTALL document and fix typo. Bug first reported by Stephen R Laniel on ML. Signed-off-by: Zhu Yi --- ieee80211-1.0.3-chuyee/INSTALL | 17 +++++++++-------- 1 files changed, 9 insertions(+), 8 deletions(-) diff -puN INSTALL~INSTALL-typo INSTALL --- ieee80211-1.0.3/INSTALL~INSTALL-typo 2005-07-15 09:23:45.000000000 +0800 +++ ieee80211-1.0.3-chuyee/INSTALL 2005-07-15 09:37:23.000000000 +0800 @@ -9,7 +9,7 @@ that could be found by modprobe instead problems about unresolved symbols, chances are good you have an old module someplace. You can typically find the offending modules via: - % find /lib/modules/\`uname -r\` -name "ieee80211*"; done + % find /lib/modules/`uname -r` -name "ieee80211*" -exec rm {} \; Or you can also run the remove script from the source. @@ -25,15 +25,16 @@ be used with 2.6.8 or higher. OPTIONAL: WPA Support -If you wish to enable WPA support, you also need to enable the following Crypto -library modules (in addition to those required for WEP above): +If you wish to enable software WPA crypto support, you also need to enable +the following Crypto library modules (in addition to those required for WEP +above): Michael MIC (CONFIG_CRYPTO_MICHAEL_MIC) AES (CONFIG_CRYPTO_AES_586) -ieee80211 uses the WEP encryption and decryption algorithms provided -by the Linux kernel. As such, in order to use WEP you must enable the -Crypto library support (CONFIG_CRYPTO) and the following algorithms: +ieee80211 can use the WEP encryption and decryption algorithms provided +by the Linux kernel. As such, in order to use software WEP crypto you must +enable the Crypto library support (CONFIG_CRYPTO) and the following algorithms: ARC4 cipher algorithm (CONFIG_CRYPTO_ARC4) @@ -44,8 +45,8 @@ You also need to enable the following fr Check for these with: % for i in CRYPTO_ARC4 CRC32; do \ - grep CONFIG_INSTALL \ - /lib/modules/2.6.10/build/include/linux/autoconf.h; done + grep $i /lib/modules/`uname -r`/build/include/linux/autoconf.h;\ + done INSTALLING THE BITS _