免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: arts
打印 上一主题 下一主题

我的ThinkPAD出问题了,无线网卡总是加载不上.(问题已经解决) [复制链接]

论坛徽章:
0
11 [报告]
发表于 2005-11-30 11:39 |只看该作者
~~~~~~~~~~~~~~~~~~~~~~~~~~~
#define CONFIG_FW_LOADER 1
~~~~~~~~~~~~~~~~~~~~~~~~~~~
ipw2200 loads firmware via the Linux firmware hotplug capability (see later
section on firmware loading). In 2.6.x, this is enabled via menuconfig:

Device Drivers ->
Generic Driver Options ->
Hotplug firmware loading support



[ 本帖最后由 arts 于 2006-4-21 08:32 编辑 ]

论坛徽章:
0
12 [报告]
发表于 2005-11-30 11:44 |只看该作者
~~~~~~~~~~~~~~~~~~~~~~~~~~~
#define CONFIG_CRYPTO 1
#define CONFIG_CRYPTO_ARC4(_MODULE) 1
#define CONFIG_CRC32(_MODULE) 1
~~~~~~~~~~~~~~~~~~~~~~~~~~~
ipw2200 uses the WEP encryption and decryption algorithms provided
by the Linux kernel.  To use WEP you must enable the Crypto library support
(CONFIG_CRYPTO) and the ARC4 cipher algorithm (CONFIG_CRYPTO_ARC4) via:

        Cryptographic options ->
                ARC4 cipher algorithm





[ 本帖最后由 arts 于 2006-4-21 08:32 编辑 ]

论坛徽章:
0
13 [报告]
发表于 2005-11-30 11:45 |只看该作者
You also need to enable the CRC32 (CONFIG_CRC32) algorithm via:

Library routines ->
CRC32 functions




[ 本帖最后由 arts 于 2006-4-21 08:33 编辑 ]

论坛徽章:
0
14 [报告]
发表于 2005-11-30 11:47 |只看该作者
~~~~~~~~~~~~~~~~~~~~~~~~~~~
#define CONFIG_CRYPTO_MICHAEL_MIC(_MODULE) 1
#define CONFIG_CRYPTO_AES_586(_MODULE) 1
~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you wish to enable (optional) WPA support, you also need to enable the
following Crypto library modules (in addition to those required for WEP above):

Cryptographic options ->
Michael MIC keyed digest algorithm
AES cipher algorithms (i586)




NOW MAKE SURE THAT THE FOLLOWING CAPABILITIES ARE *NOT* ENABLED!!
NOW MAKE SURE THAT THE FOLLOWING CAPABILITIES ARE *NOT* ENABLED!!
NOW MAKE SURE THAT THE FOLLOWING CAPABILITIES ARE *NOT* ENABLED!!

[ 本帖最后由 arts 于 2006-4-21 08:33 编辑 ]

论坛徽章:
0
15 [报告]
发表于 2005-11-30 11:50 |只看该作者
ipw2200驱动程序不用安装,2.6.14开始内核就带了,如果安装反而要先编译内核把inte2200bg的设置去掉,你看看ipw2200的INSTALL就知道了. 我没装ipw2200,就把内核升到2.6.14,然后把firmware解压到相应目录, 运行一下kudzu就发现新硬件了...

论坛徽章:
0
16 [报告]
发表于 2005-11-30 11:50 |只看该作者
~~~~~~~~~~~~~~~~~~~~~~~~~~~
#define CONFIG_IEEE80211 1
~~~~~~~~~~~~~~~~~~~~~~~~~~~
If ieee80211 support is built into your kernel (available in 2.6.14 and later),
you must de-configure that capability and rebuild your kernel before
upgrading ieee80211 and ipw2200 drivers.  In 2.6.x, this is *dis*abled via
menuconfig (enter n for no):

        Networking ->
                Networking support (NET [=y]) ->
                        Generic IEEE 802.11 Networking Stack

NOTE:  If ieee80211 is supported as a module (this would show up as
#define CONFIG_IEEE80211_MODULE 1), you do not need to rebuild your kernel,
but you will need to remove the binary module and relevant include files
(see UPGRADING FROM PRIOR VERSIONS, below).




[ 本帖最后由 arts 于 2006-4-21 08:34 编辑 ]

论坛徽章:
0
17 [报告]
发表于 2005-11-30 11:53 |只看该作者
~~~~~~~~~~~~~~~~~~~~~~~~~~~
#define CONFIG_IPW2200 1
~~~~~~~~~~~~~~~~~~~~~~~~~~~
If ipw2200 support is built into your kernel (available in 2.6.14 and later),
you must de-configure that capability and rebuild your kernel before
upgrading ieee80211 and ipw2200 drivers.  In 2.6.x, this is *dis*abled via
menuconfig (enter n for no):

        Device Drivers ->
                Network device support ->
                        Network device support (NETDEVICES [=y]) ->
                                Wireless LAN (non-hamradio) ->
                                        Intel PRO/Wireless 2200BG and 2915ABG...

NOTE:  If ipw2200 is supported as a module (this would show up as
#define CONFIG_IPW2200_MODULE 1), you do not need to rebuild your kernel,
but you will need to remove the binary module and relevant include files
(see UPGRADING FROM PRIOR VERSIONS, below).




[ 本帖最后由 arts 于 2006-4-21 08:34 编辑 ]

论坛徽章:
0
18 [报告]
发表于 2005-11-30 11:54 |只看该作者
-----------------------------------------------

You will also need to have sysfs mounted.  This facility is used to query
and control the operation of the ipw2200 driver (see the README.ipw2200,
found in the ipw2200 source directory).

You can mount sysfs this by adding an entry to /etc/fstab similar to this:

none            /sys            sysfs   defaults                0       0

If the directory /sys does not already exist, you will need to create it:

% mkdir /sys

You can then mount the sysfs partition via:

% mount -a


我的fstab

# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/1                /                       ext3    defaults        1 1
LABEL=/boot1            /boot                   ext3    defaults        1 2
/dev/devpts             /dev/pts                devpts  gid=5,mode=620  0 0
/dev/shm                /dev/shm                tmpfs   defaults        0 0
/dev/proc               /proc                   proc    defaults        0 0
LABEL=/home             /service                ext3    defaults        1 2
#/dev/sys                /sys                    sysfs   defaults        0 0
LABEL=SWAP-hda5         swap                    swap    defaults        0 0
none /sys sysfs defaults 0 0
/dev/hdc                /media/cdrom            auto    pamconsole,exec,noauto,managed 0 0

论坛徽章:
0
19 [报告]
发表于 2005-11-30 11:56 |只看该作者
一后的安装无非是解压

tar zxvf

make

make install

cp firmware /lib/firmware

然后编译内核。

make

make modules_install

make install

reboot

论坛徽章:
0
20 [报告]
发表于 2005-11-30 11:58 |只看该作者
原帖由 carrison 于 2005-11-30 11:50 发表
ipw2200驱动程序不用安装,2.6.14开始内核就带了,如果安装反而要先编译内核把inte2200bg的设置去掉,你看看ipw2200的INSTALL就知道了. 我没装ipw2200,就把内核升到2.6.14,然后把firmware解压到相应目录, 运行一下ku ...


我也用选择内核的驱动然后的编译,可是启动的时候就是没有,

dmesg看到如下:

[art@ThinkPad sbin]$ dmesg |grep ipw
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.0.8
ipw2200: Copyright(c) 2003-2005 Intel Corporation
ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
ipw2200: ipw-2.4-bss_ucode.fw load failed: Reason -2
ipw2200: Unable to load firmware: -2
ipw2200: failed to register network device
ipw2200: probe of 0000:02:02.0 failed with error -5
[art@ThinkPad sbin]$
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP