diff options
Diffstat (limited to 'target/linux/ramips/base-files/etc/uci-defaults/hw550-3g')
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/hw550-3g | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/hw550-3g b/target/linux/ramips/base-files/etc/uci-defaults/hw550-3g new file mode 100755 index 0000000000..49ad568a39 --- /dev/null +++ b/target/linux/ramips/base-files/etc/uci-defaults/hw550-3g @@ -0,0 +1,24 @@ +#!/bin/sh +# +# Copyright (C) 2011 OpenWrt.org +# + +hw550_set_leds() { + uci batch <<EOF +set system.usb_led=led +set system.usb_led.name='USB' +set system.usb_led.sysfs='hw550-3g:green:usb' +set system.usb_led.trigger='usbdev' +set system.usb_led.dev='1-1' +set system.usb_led.interval='50' +commit system +EOF +} + +. /lib/ramips.sh + +board=$(ramips_board_name) + +if [ "${board}" == "hw550-3g" ]; then + hw550_set_leds +fi |