diff options
Diffstat (limited to 'target/linux/ar71xx/base-files/etc')
3 files changed, 51 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/defconfig/nbg460n_550n_550nh/network b/target/linux/ar71xx/base-files/etc/defconfig/nbg460n_550n_550nh/network new file mode 100644 index 0000000000..3ab4bc81da --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/defconfig/nbg460n_550n_550nh/network @@ -0,0 +1,26 @@ +config interface loopback + option ifname lo + option proto static + option ipaddr 127.0.0.1 + option netmask 255.0.0.0 + +config interface lan + option ifname eth0 + option type bridge + option proto static + option ipaddr 192.168.1.1 + option netmask 255.255.255.0 + +config interface wan + option ifname eth1 + option proto dhcp + +config switch + option name rtl8366s + option reset 1 + option enable_vlan 1 + +config switch_vlan + option device rtl8366s + option vlan 0 + option ports "0 1 2 3 5" diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 77217c70f7..a89ede9493 100755 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -66,6 +66,9 @@ get_status_led() { mzk-w300nh) status_led="mzk-w300nh:green:status" ;; + nbg460n_550n_550nh) + status_led="nbg460n:green:power" + ;; pb44) status_led="pb44:amber:jump1" ;; diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/nbg460n_550n_550nh b/target/linux/ar71xx/base-files/etc/uci-defaults/nbg460n_550n_550nh new file mode 100644 index 0000000000..f3fbaf2e05 --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/nbg460n_550n_550nh @@ -0,0 +1,22 @@ +#!/bin/sh +# +# Copyright (C) 2010 OpenWrt.org +# + +. /lib/ar71xx.sh + +board=$(ar71xx_board_name) + +nbg460n_550n_550nh_set_wlan_led() { + uci batch <<EOF +set system.wlan_led=led +set system.wlan_led.name='WLAN' +set system.wlan_led.sysfs='nbg460n:green:wlan' +set system.wlan_led.trigger='phy0rx' +commit system +EOF +} + +if [ "${board}" == "nbg460n_550n_550nh" ]; then + nbg460n_550n_550nh_set_wlan_led +fi |