diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-10 15:17:03 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-10 15:17:03 +0000 |
commit | 680d895a87bfedbfc3220d05496d6070f23154a5 (patch) | |
tree | be00375a7d8dc70504b0877be7d7f0ad78506fa4 /target/linux/ar71xx/base-files/etc/uci-defaults | |
parent | 2048e10433d932270c5a554b17591f478685d61e (diff) |
ar71xx: add nbg460n image generation
This adds image generation for NBG460N/550N/550NH boards.
Signed-off-by: Michael Kurz <michi.kurz@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24419 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/uci-defaults')
-rw-r--r-- | target/linux/ar71xx/base-files/etc/uci-defaults/nbg460n_550n_550nh | 22 |
1 files changed, 22 insertions, 0 deletions
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 000000000..f3fbaf2e0 --- /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 |