Hi everybody,
few days ago I flashed Kamikaze to my box (Asus WL500GP). It works with Broadcom wifi, recognized it and worked with it.
Flashing:
wget http://downloads.openwrt.org/kamikaze/7.09/brcm-2.4/openwrt-brcm-2.4-squashfs.trx
mtd write openwrt-brcm-2.4-squashfs.trx linux && reboot
Today I have changed Broadcom to Atheros wifi, Wistron Atheros CM9, but box do not recognize it
Dmesg does not show Atheros (LED AIR is on, miniPCI card is properly inserted).
Here is uci show
dhcp.cfg1=dhcp
dhcp.cfg1.interface=lan
dhcp.cfg1.start=100
dhcp.cfg1.limit=150
dhcp.cfg1.leasetime=12h
dhcp.cfg2=dhcp
dhcp.cfg2.interface=wan
dhcp.cfg2.ignore=1
dropbear.cfg1=dropbear
dropbear.cfg1.TYPE=dropbear
dropbear.cfg1.PasswordAuth=on
dropbear.cfg1.Port=22
network.eth0=switch
network.eth0.vlan0=1 2 3 4 5*
network.eth0.vlan1=0 5
network.loopback=interface
network.loopback.ifname=lo
network.loopback.proto=static
network.loopback.ipaddr=127.0.0.1
network.loopback.netmask=255.0.0.0
network.lan=interface
network.lan.type=bridge
network.lan.ifname=eth0.0
network.lan.proto=static
network.lan.ipaddr=10.0.0.7
network.lan.netmask=255.0.0.0
network.wan=interface
network.wan.ifname=wifi0
network.wan.proto=static
network.wan.ipaddr=10.0.0.2
network.wan.netmask=255.0.0.0
network.wan.gateway=172.16.47.254
network.wan.dns=172.16.47.254
system.cfg1=system
system.cfg1.TYPE=system
system.cfg1.hostname=OpenWrt
wireless.wifi0=wifi-device
wireless.wifi0.type=atheros
wireless.wifi0.channel=11
wireless.wifi0.agmode=11g
wireless.wifi0.disabled=0
wireless.cfg2=wifi-iface
wireless.cfg2.TYPE=wifi-iface
wireless.cfg2.device=wifi0
wireless.cfg2.network=wan
wireless.cfg2.mode=sta
wireless.cfg2.ssid=xxxxxxxxxx
wireless.cfg2.encryption=none
/etc/config/wireless/
config wifi-device "wifi0"
option type "atheros"
option channel "11"
option agmode "11g"
option disabled 0
config wifi-iface
option device "wifi0"
option network wan
option mode "sta"
option ssid "xxxxxxxx"
option encryption "none"
/lib/wifi/broadcom.sh ---> renamed to "atheros.sh" and every string inside rewrited to "atheros" instead of "broadcom".
My question, where is problem ?
Thank you for answers.