diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-12-10 15:17:03 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-12-10 15:17:03 +0000 |
commit | 081796fe472d2e06918730a70a60b0b32023d4f5 (patch) | |
tree | bbc1b789e181851af63be85dfe5ce94172380cd1 /target/linux/ar71xx/base-files | |
parent | a084fb6a3f54905f5b3b76fcae6d17f88c857da2 (diff) | |
download | mtk-20170518-081796fe472d2e06918730a70a60b0b32023d4f5.zip mtk-20170518-081796fe472d2e06918730a70a60b0b32023d4f5.tar.gz mtk-20170518-081796fe472d2e06918730a70a60b0b32023d4f5.tar.bz2 |
ar71xx: add nbg460n image generation
This adds image generation for NBG460N/550N/550NH boards.
Signed-off-by: Michael Kurz <michi.kurz@googlemail.com>
SVN-Revision: 24419
Diffstat (limited to 'target/linux/ar71xx/base-files')
5 files changed, 55 insertions, 1 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 0000000..3ab4bc8 --- /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 77217c7..a89ede9 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 0000000..f3fbaf2 --- /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 diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index fa00516..ec3aa5b 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -49,6 +49,9 @@ ar71xx_board_name() { *MZK-W300NH) name="mzk-w300nh" ;; + *"NBG460N/550N/550NH") + name="nbg460n_550n_550nh" + ;; *PB42) name="pb42" ;; diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index 089f5f4..36e2b21 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -68,7 +68,7 @@ platform_check_image() { [ "$ARGC" -gt 1 ] && return 1 case "$board" in - ap81 | ap83 | dir-600-a1 | dir-615-c1 | dir-825-b1 | mzk-w04nu | mzk-w300nh | tew-632brp | wrt400n | bullet-m | nanostation-m | rocket-m | wzr-hp-g300nh ) + ap81 | ap83 | dir-600-a1 | dir-615-c1 | dir-825-b1 | mzk-w04nu | mzk-w300nh | tew-632brp | wrt400n | bullet-m | nanostation-m | rocket-m | wzr-hp-g300nh | nbg460n_550n_550nh) [ "$magic" != "2705" ] && { echo "Invalid image type." return 1 |