1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 04:23:16 +03:00
openwrt-xburst/target/linux/ar71xx/base-files/etc/uci-defaults/dir-825
juhosg 2e7490c8ca ar71xx: make uci-default scripts executable
Reported-by: Nuno Gonçalves <nunojpg@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24897 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-01-04 13:44:01 +00:00

25 lines
416 B
Bash
Executable File

#!/bin/sh
#
# Copyright (C) 2010 OpenWrt.org
#
. /lib/ar71xx.sh
board=$(ar71xx_board_name)
dir825b1_setup_leds() {
uci batch <<EOF
set system.usb_led=led
set system.usb_led.name='USB'
set system.usb_led.sysfs='dir825b1:blue:usb'
set system.usb_led.trigger='usbdev'
set system.usb_led.dev='1-1'
set system.usb_led.interval='50'
commit system
EOF
}
if [ "${board}" == "dir-825-b1" ]; then
dir825b1_setup_leds
fi