You are not logged in.
Pages: 1
Hello,
I try to enable the wifi connection without success
I have tried this but my error seems to be different.
http://forum.slitaz.org/topic/slitaz-40-and-rc-wont-detect-active-and-fuctioning-wi-fi-connection-from-live-cd/page/2#post-34581
dmesg error is :
lib80211_crypt: unregistered algorithm 'NULL'
lib80211: common routines for IEEE802.11 drivers
lib80211_crypt: registered algorithm 'NULL'
libipw: 802.11 data/management/control stack, git-1.1.13
libipw: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kmprq
ipw2200: Copyright(c) 2003-2006 Intel Corporation
lspci is :
03:00.0 Network controller: Intel Corporation Centrino Wireless-N 2200 (rev c4)
I have loaded ipw2200. lsmod return:
root@slitaz:~$ lsmod | grep ipw
ipw2200 106537 0
libipw 17775 1 ipw2200
lib80211 2453 2 ipw2200,libipw
cfg80211 117342 4 ipw2200,libipw,iwlwifi,mac80211
when I launch the command iwlist wlan0 scanning
the result is : wlan0 Interface doesn't support scanning.
Maybe the error is due to lib80211_crypt: unregistered algorithm 'NULL' error.
Do you know how to fix this error ?
Thanks
Jules.
Offline
The wifi adapter uses iwlwifi kernel driver and iwlwifi-2000-6.ucode must be install before iwlwifi is modprobed.
[c]wget http://cook.slitaz.org/packages/firmware-iwlwifi-2000-20130610.tazpkg[/c]
[c]tazpkg install firmware-iwlwifi-2000-20130610.tazpkg[/c]
[c]modprobe -r iwlwifi && modprobe iwlwifi[/c]
If you use /home/boot/packages auto install on boot:
[c]cp firmware-iwlwifi-2000-20130610.tazpkg /home/boot/packages[/c]
Reboot
Firmware should auto install on boot and iwlwifi auto load.
If adapter is not initializing verify with lsmod and check dmesg for errors relating to firmware load or rfkill.
Use lspci -nn to output pciids
I had to search your output with google to get them.
03:00.0 Network controller [0280]: Intel Corporation Centrino Wireless-N 2200 [8086:0890] (rev c4)
Grep modules.alias with your wifi adapters pciids to identify matching kernel module driver.
grep 8086.*0890 /lib/modules/3.2.53-slitaz/modules.alias
alias pci:v00008086d00000890sv*sd00004822bc*sc*i* iwlwifi
alias pci:v00008086d00000890sv*sd00004422bc*sc*i* iwlwifi
alias pci:v00008086d00000890sv*sd00004022bc*sc*i* iwlwifi
Grep your dmesg.txt for iwlwifi kernel messages.
grep iwlwifi dmesg.ipw2200.txt
iwlwifi 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
iwlwifi 0000:03:00.0: setting latency timer to 64
iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
iwlwifi 0000:03:00.0: pci_resource_base = f8684000
iwlwifi 0000:03:00.0: HW Revision ID = 0xC4
iwlwifi 0000:03:00.0: pci_enable_msi failed(0Xffffffff)
iwlwifi 0000:03:00.0: Detected 2000 Series 2x2 BGN, REV=0x104
iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:03:00.0: device EEPROM VER=0x81c, CALIB=0x6
iwlwifi 0000:03:00.0: Device SKU: 0X150
iwlwifi 0000:03:00.0: Valid Tx ant: 0X3, Valid Rx ant: 0X3
iwlwifi 0000:03:00.0: Tunable channels: 13 802.11bg, 0 802.11a channels
iwlwifi 0000:03:00.0: request for firmware file 'iwlwifi-2000-6.ucode' failed.
iwlwifi 0000:03:00.0: request for firmware file 'iwlwifi-2000-5.ucode' failed.
iwlwifi 0000:03:00.0: no suitable firmware found!
iwlwifi 0000:03:00.0: PCI INT A disabled
Offline
Hello,
Happy new Year !!! :-)
Thanks Mojo! it works when I load manually the iwlwifi module
modprobe -r iwlwifi && modprobe iwlwifi
but not Slitaz at boot.
/etc/modules.conf or /etc/modules-load.d/ do not exist on system.
I have tried also to modify rcS.conf (LOAD_MODULE parameter) and then moved it to /home/boot/rootfs/etc to be taken into account at boot
how to load the module at boot ?
Thanks.
Jules
Offline
udev is loading iwlwifi before the firmware is installed.
Add
[c]modprobe -r iwlwifi && modprobe iwlwifi[/c]
to
/etc/init.d/local.sh
Offline
Hello Mojo,
Thank you again it works.
I added "[c]/etc/init.d/network.sh restart[/c]" to the local.sh file because local.sh is called after network.sh.
Jules.
Offline
Pages: 1
[ Generated in 0.022 seconds, 7 queries executed - Memory usage: 1.55 MiB (Peak: 1.77 MiB) ]