1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-17 04:33:57 +02:00

ramips: make use of the new board detection layer

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 42186
This commit is contained in:
John Crispin 2014-08-18 13:09:20 +00:00
parent 562d9f9582
commit 0fc4383d69
2 changed files with 11 additions and 13 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
. /lib/functions/uci-defaults.sh
. /lib/functions/uci-defaults-new.sh
. /lib/ramips.sh
set_usb_led() {
@ -11,8 +11,11 @@ set_wifi_led() {
ucidef_set_led_netdev "wifi_led" "wifi" "$1" "wlan0"
}
board=$(ramips_board_name)
board_config_update
case $board in
3g-6200n)
set_wifi_led "edimax:amber:wlan"
@ -167,15 +170,15 @@ case $board in
hg255d)
set_wifi_led "hg255d:wlan"
set_usb_led "hg255d:usb"
ucidef_set_led_netdev "eth" "Internet" "hg255d:internet" "eth0.2"
ucidef_set_led_interface "lan" "hg255d:internet"
;;
wnce2001)
set_wifi_led "netgear:green:wlan"
;;
rt-n14u)
ucidef_set_led_default "power" "power" "asus:blue:power" "1"
ucidef_set_led_netdev "lan" "lan" "asus:blue:lan" "eth0.1"
ucidef_set_led_netdev "wan" "wan" "asus:blue:wan" "eth0.2"
ucidef_set_led_interafce "lan" "asus:blue:lan"
ucidef_set_led_netdev "wan" "asus:blue:wan"
set_wifi_led "asus:blue:air"
set_usb_led "asus:blue:usb"
;;
@ -207,6 +210,6 @@ case $board in
;;
esac
ucidef_commit_leds
board_config_flush
exit 0

View File

@ -2,7 +2,7 @@
. /lib/functions.sh
. /lib/ramips.sh
. /lib/functions/uci-defaults.sh
. /lib/functions/uci-defaults-new.sh
. /lib/functions/system.sh
ramips_setup_rt3x5x_vlans()
@ -299,15 +299,10 @@ ramips_setup_macs()
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac
}
[ -e /etc/config/network ] && exit 0
touch /etc/config/network
board_config_update
board=$(ramips_board_name)
ramips_setup_interfaces $board
ramips_setup_macs $board
uci commit network
board_config_flush
exit 0