diff options
Diffstat (limited to 'target/linux/ramips/base-files/etc/uci-defaults')
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/leds | 9 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/network | 41 |
2 files changed, 34 insertions, 16 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/leds b/target/linux/ramips/base-files/etc/uci-defaults/leds index 0877a1d25e..02d522a6d8 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/leds +++ b/target/linux/ramips/base-files/etc/uci-defaults/leds @@ -39,6 +39,12 @@ case $board in esr-9753) set_wifi_led "rt2800pci-phy0::radio" ;; + f5d8235-v1) + set_usb_led "f5d8235-v1:blue:storage" + ;; + f5d8235-v2) + set_usb_led "f5d8235v2:blue:storage" + ;; fonera20n) set_usb_led "fonera20n:amber:usb" ;; @@ -55,4 +61,7 @@ case $board in set_usb_led "alfa:blue:usb" set_wifi_led "rt2800pci-phy0::radio" ;; + wcr-150gn) + set_usb_led "wcr150gn:amber:user" + ;; esac diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index 7e58ef043e..89a3e359ad 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -18,12 +18,20 @@ ramips_setup_interfaces() case $board in argus-atp52b | \ b2c | \ - f5d8235-v2 | \ nw718 | \ w502u) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ;; + f5d8235-v1 | \ + rt-n15) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "rtl8366s" "1" "1" + ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t" + ucidef_add_switch_vlan "rtl8366s" "2" "0 5t" + ;; + + f5d8235-v2 | \ wl-351) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ucidef_add_switch "rtl8366rb" "1" "1" @@ -31,16 +39,12 @@ ramips_setup_interfaces() ucidef_add_switch_vlan "rtl8366rb" "2" "4 5t" ;; - wli-tx4-ag300n) - ucidef_set_interface_lan "eth0" + wcr-150gn) + ucidef_set_interface_lan_wan "eth0.2" "eth0.1" ;; - f5d8235-v1 | \ - rt-n15) - ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" - ucidef_add_switch "rtl8366s" "1" "1" - ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t" - ucidef_add_switch_vlan "rtl8366s" "2" "0 5t" + wli-tx4-ag300n) + ucidef_set_interface_lan "eth0" ;; *) @@ -61,11 +65,6 @@ ramips_setup_macs() local wan_mac="" case $board in - f5d8235-v2) - lan_mac=$(ramips_get_mac_nvram "u-boot" 262148) - wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1) - ;; - argus-atp52b | \ b2c | \ f5d8235-v1 | \ @@ -89,19 +88,29 @@ ramips_setup_macs() wan_mac=$(ramips_get_mac_binary factory 40) ;; + f5d8235-v2) + lan_mac=$(ramips_get_mac_binary "u-boot" 262148) + wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1) + ;; + w502u) lan_mac=$(ramips_get_mac_binary factory 40) wan_mac=$(ramips_get_mac_binary factory 46) ;; + wcr-150gn) + lan_mac=$(ramips_get_mac_binary factory 4) + wan_mac=$(ramips_get_mac_binary factory 40) + ;; + wli-tx4-ag300n) lan_mac=$(ramips_get_mac_binary factory 4) ;; esac - [ -n $lan_mac ] && ucidef_set_interface_macaddr lan $lan_mac - [ -n $wan_mac ] && ucidef_set_interface_macaddr wan $wan_mac + [ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac + [ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac } [ -e /etc/config/network ] && exit 0 |