mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-07 17:32:49 +02:00
b95eb02775
This add support for the Sitecom WL-351 v1 002. In principle the Engenius ESR9850 should also work with this, but I don't have the hardware to test it. Since an external gigabit switch (RTL8366RB) is used, I had to modify the ramips_esw driver to add a 'bypass' mode, which just configures it to not filter the vlan tags. Also two initialization words (FCT2 and FPA2) are set to different values by u-boot than what the driver is using and it only seems to work correctly when they not overridden by the driver, so I added them to the platform specific data as reg_initval_fct2 and reg_initval_fpa2. With this wired lan works as expected, however I'm still having some trouble with the wireless lan: It only works after I rmmod & re-insmod rt2800pci and then reconfigure it in the webinterface, but not directly after rebooting. The symptom of this is wpad saying: Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> IEEE 802.11: associated (aid 1) Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> WPA: pairwise key handshake completed (RSN) Dec 20 15:45:22 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> IEEE 802.11: authenticated But wpa_supplicant on the client saying: Authentication with <wl351mac> timed out. Signed-off-by: Tobias Diedrich <ranma+openwrt@tdiedrich.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29604 3c298f89-4303-0410-b956-a3cf2f4a3e73
91 lines
1.5 KiB
Bash
Executable File
91 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
#
|
|
|
|
. /lib/ramips.sh
|
|
|
|
status_led=""
|
|
|
|
led_set_attr() {
|
|
[ -f "/sys/class/leds/$1/$2" ] && echo "$3" > "/sys/class/leds/$1/$2"
|
|
}
|
|
|
|
status_led_set_timer() {
|
|
led_set_attr $status_led "trigger" "timer"
|
|
led_set_attr $status_led "delay_on" "$1"
|
|
led_set_attr $status_led "delay_off" "$2"
|
|
}
|
|
|
|
status_led_on() {
|
|
led_set_attr $status_led "trigger" "none"
|
|
led_set_attr $status_led "brightness" 255
|
|
}
|
|
|
|
status_led_off() {
|
|
led_set_attr $status_led "trigger" "none"
|
|
led_set_attr $status_led "brightness" 0
|
|
}
|
|
|
|
get_status_led() {
|
|
case $(ramips_board_name) in
|
|
dir-300-b1 | dir-600-b1 | dir-600-b2)
|
|
status_led="d-link:green:status"
|
|
;;
|
|
esr-9753)
|
|
status_led="esr-9753:orange:power"
|
|
;;
|
|
fonera20n)
|
|
status_led="fonera20n:green:power"
|
|
;;
|
|
hw550-3g)
|
|
status_led="hw550-3g:green:status"
|
|
;;
|
|
mofi3500-3gn)
|
|
status_led="mofi3500-3gn:green:status"
|
|
;;
|
|
nbg-419n)
|
|
status_led="nbg-419n:green:power"
|
|
;;
|
|
nw718)
|
|
status_led="nw718:amber:cpu"
|
|
;;
|
|
omni-emb)
|
|
status_led="emb:green:status"
|
|
;;
|
|
pwh2004)
|
|
status_led="pwh2004:green:power"
|
|
;;
|
|
rt-n15)
|
|
status_led="rt-n15:blue:power"
|
|
;;
|
|
v22rw-2x2)
|
|
status_led="v22rw-2x2:green:security"
|
|
;;
|
|
whr-g300n)
|
|
status_led="whr-g300n:green:router"
|
|
;;
|
|
wl-351)
|
|
status_led="wl-351:amber:power"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
set_state() {
|
|
get_status_led
|
|
|
|
case "$1" in
|
|
preinit)
|
|
insmod leds-gpio
|
|
status_led_set_timer 200 200
|
|
;;
|
|
failsafe)
|
|
status_led_set_timer 50 50
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|