This adds image generation for NBG460N/550N/550NH boards. Signed-off-by: Michael Kurz <michi.kurz@googlemail.com> SVN-Revision: 24419master
parent
a084fb6a3f
commit
081796fe47
@ -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" |
@ -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 |
Loading…
Reference in new issue