by cyberp » Fri Jan 11, 2013 8:52 pm
I have the same problem on my Pandaboard after the lastest update to kernel 3.6.3-2
After fresh install, update with pacman -Syu no wlan0 interface is present.
$this->bbcode_second_pass_code('', '
[root@alarm ~]# lsmod
Module Size Used by
binfmt_misc 6660 1
smsc95xx 12159 0
')
After reinstalling ti-connectivity (i have to remove he firmware files manually before), installing crda and uncommenting crda configuration for my country in /etc/conf.d/wireless-regdom i can modprobe the wl12xx driver:
$this->bbcode_second_pass_code('', '
[root@alarm ~]# modprobe wl12xx
[root@alarm ~]# lsmod
Module Size Used by
wl12xx 43000 0
wlcore 129787 1 wl12xx
mac80211 479965 1 wlcore
cfg80211 183561 2 mac80211,wlcore
rfkill 17575 1 cfg80211
binfmt_misc 6660 1
smsc95xx 12159 0
')
But still no wlan is present. It seems that the wl12xx driver doesnt work.
CRDA is working(?), but not wl12xx
$this->bbcode_second_pass_code('', '
[root@alarm ~]# dmesg
...
8.569427] systemd-udevd[106]: starting version 196
[ 9.444915] smsc95xx v1.0.4
[ 9.516296] smsc95xx 1-1.1:1.0: eth0: register 'smsc95xx' at usb-ehci-omap.0-1.1, smsc95xx USB 2.0 Ethernet, 4a:fc:0a:29:c0:ad
[ 9.516418] usbcore: registered new interface driver smsc95xx
[ 9.664215] EXT4-fs (mmcblk0p2): re-mounted. Opts: data=ordered
[ 11.048278] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 12.743408] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 12.744354] smsc95xx 1-1.1:1.0: eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
[ 640.923248] cfg80211: Calling CRDA to update world regulatory domain
[ 641.007324] cfg80211: Pending regulatory request, waiting for it to be processed...
[ 641.042449] cfg80211: World regulatory domain updated:
[ 641.042480] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 641.042480] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 641.042480] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 641.042480] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 641.042510] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 641.042510] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 641.042572] cfg80211: Calling CRDA for country: DE
[ 641.053527] cfg80211: Regulatory domain changed to country: DE
[ 641.053558] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 641.053558] cfg80211: (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 641.053558] cfg80211: (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 641.053588] cfg80211: (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 641.053588] cfg80211: (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
')
Some idea what can i try next?