1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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
This commit is contained in:
juhosg
2010-12-10 15:17:03 +00:00
parent 2048e10433
commit 680d895a87
7 changed files with 84 additions and 2 deletions

View File

@@ -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