Code: Select all
modprobe 8192cuCode: Select all
[ 3.852414] usb 1-1.3: Product: 802.11n WLAN Adapter
[ 3.871930] usb 1-1.3: Manufacturer: Realtek
[ 3.883647] usb 1-1.3: SerialNumber: 00e04c000001
[ 3.973068] usb 1-1.2.3: new low-speed USB device number 6 using dwc_otg
[ 4.099727] usb 1-1.2.3: New USB device found, idVendor=413c, idProduct=2003
[ 4.123300] usb 1-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0Code: Select all
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB
Bus 001 Device 005: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS]
Bus 001 Device 006: ID 413c:2003 Dell Computer Corp. Keyboard
Bus 001 Device 007: ID 045e:0023 Microsoft Corp. Trackball OpticalCode: Select all
pi@raspberrypi ~ $ lsmod
Module Size Used by
rfcomm 33168 0
bnep 10574 2
bluetooth 193568 10 bnep,rfcomm
rfkill 18202 2 bluetooth
snd_bcm2835 16304 0
snd_pcm 77560 1 snd_bcm2835
snd_seq 53329 0
snd_timer 19998 2 snd_pcm,snd_seq
snd_seq_device 6438 1 snd_seq
snd 58447 5 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device
snd_page_alloc 5145 1 snd_pcm
evdev 9426 1
leds_gpio 2235 0
led_class 3562 1 leds_gpioyou don't have the Wifi drivers loadedyefred wrote:It seems i have the same problem, my wifi does not work anymore...
My lsmod :
Code: Select all
pi@raspberrypi ~ $ lsmod Module Size Used by rfcomm 33168 0 bnep 10574 2 bluetooth 193568 10 bnep,rfcomm rfkill 18202 2 bluetooth snd_bcm2835 16304 0 snd_pcm 77560 1 snd_bcm2835 snd_seq 53329 0 snd_timer 19998 2 snd_pcm,snd_seq snd_seq_device 6438 1 snd_seq snd 58447 5 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device snd_page_alloc 5145 1 snd_pcm evdev 9426 1 leds_gpio 2235 0 led_class 3562 1 leds_gpio
Code: Select all
pi@raspberrypi ~ $ lsusb
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 046d:c312 Logitech, Inc. DeLuxe 250 Keyboard
Bus 001 Device 005: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS]Code: Select all
pi@raspberrypi ~ $ sudo modprobe rtl8192cu
FATAL: Module rtl8192cu not found.Code: Select all
sudo rpi-update 0fc090e8fbae693fae12bdf26b59c812ba99e141Code: Select all
sudo bash /boot/install-rtl8188cus-latest.shCode: Select all
diff -Naur rtl8192cu-old/os_dep/linux/usb_intf.c rtl8192cu/os_dep/linux/usb_intf.c
--- rtl8192cu-old/os_dep/linux/usb_intf.c 2013-04-17 00:16:02.000000000 +0100
+++ rtl8192cu/os_dep/linux/usb_intf.c 2013-05-17 14:16:15.733101975 +0100
@@ -114,6 +114,7 @@
{USB_DEVICE(0x4856, 0x0091)},//NetweeN - Feixun
{USB_DEVICE(0x2019, 0x4902)},//Planex - Etop
{USB_DEVICE(0x2019, 0xAB2E)},//SW-WF02-AD15 -Abocom
+ {USB_DEVICE(0x0846, 0x9041)},//Netgear
/****** 8188 RU ********/
{USB_DEVICE(0x0BDA, 0x317F)},//Netcore,Netcore
Are you using the script every time you reboot to get the wifi working? If so I would suggest running the following commands instead of the script and then see how it behaves.yefred wrote:I halfly solved my issue by running :
(reverts firmware to before this commit https://github.com/Hexxeh/rpi-firmware/ ... 038da0946f)Code: Select all
sudo rpi-update 0fc090e8fbae693fae12bdf26b59c812ba99e141
and then :
(downloaded at http://dl.dropboxusercontent.com/u/8025 ... -latest.sh)Code: Select all
sudo bash /boot/install-rtl8188cus-latest.sh
I got the wlan0 appearing and working, however, if i reboot, i have to run the install script again...
Note: I was using the latest fimrware obtained via rpi-update.
Code: Select all
sudo rmmod 8192cu
sudo insmod /lib/modules/3.6.11+/kernel/drivers/net/wireless/rtl8192cu/8192cu.ko
sudo depmod -aCode: Select all
sudo insmod /lib/modules/3.6.11+/kernel/drivers/net/wireless/rtl8192cu/8192cu.ko
sudo depmod -aCode: Select all
pi@raspberrypi ~ $ sudo rmmod 8192cu
Error: Module 8192cu is not currently loadedCode: Select all
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "XXXXXX"
wpa-psk "YYYYYY"
iface default inet dhcpCode: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "name"
wpa-psk "password"
Code: Select all
auto eth0
allow-hotplug eth0
iface default inet dhcpYes that works better (for the eth0 hotplug part) !MrEngman wrote: Not sure what may be happening but suggest you try removing/commenting out following lines and see if it makes any differenceMrEngmanCode: Select all
auto eth0 allow-hotplug eth0 iface default inet dhcp
That's good to hear. Not sure what to do about the wifi. Have to have a think about it. Don't now why but I never seem to have many problems.yefred wrote:Yes that works better (for the eth0 hotplug part) !MrEngman wrote: Not sure what may be happening but suggest you try removing/commenting out following lines and see if it makes any differenceMrEngmanCode: Select all
auto eth0 allow-hotplug eth0 iface default inet dhcp
Code: Select all
wget http://db.tt/8tJ17aXM -O 8192cu-WNA1000M-fix.tar.gz
tar -xzvf 8192cu-WNA1000M-fix.tar.gz
sudo install -p -m 644 8192cu.ko /lib/modules/3.6.11+/kernel/drivers/net/wireless/rtl8192cu
sudo depmod -aThanks, your patch seems to work fine, but i still have to run :MrEngman wrote: Anyway just in case you are interested I have updated and compiled a new version of the 8192cu drive to fix the issue with the WNA1000M so you can use it with newer kernels if you want to until the RPi kernel is updated. I have tried it with rpi_update 7d7f8510f103f3c6686835c0a002de038da0946f Apr 10 version #408, which is when it broke, and the latest released from today #450 and it looks OK with both so should work with all versions in between.
First run rpi-update to update Linux and reboot then to download and install the fixed driver use the commandsReboot and hopefully the wifi will start up.Code: Select all
wget http://db.tt/8tJ17aXM -O 8192cu-WNA1000M-fix.tar.gz tar -xzvf 8192cu-WNA1000M-fix.tar.gz sudo install -p -m 644 8192cu.ko /lib/modules/3.6.11+/kernel/drivers/net/wireless/rtl8192cu sudo depmod -a
MrEngman
Code: Select all
sudo insmod /lib/modules/3.6.11+/kernel/drivers/net/wireless/rtl8192cu/8192cu.ko
sudo depmod -aYou could try updating using sudo rpi-update as the built in driver is now fixed.yefred wrote: Thanks, your patch seems to work fine, but i still have to run :
after every reboot.Code: Select all
sudo insmod /lib/modules/3.6.11+/kernel/drivers/net/wireless/rtl8192cu/8192cu.ko sudo depmod -a