mirror of https://github.com/hak5/openwrt.git
25 lines
418 B
Bash
Executable File
25 lines
418 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
mzk_w04nu_setup_leds() {
|
|
uci batch <<EOF
|
|
set system.usb_led=led
|
|
set system.usb_led.name='USB'
|
|
set system.usb_led.sysfs='mzk-w04nu:green: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}" == "mzk-w04u" ]; then
|
|
mzk_w04nu_setup_leds
|
|
fi
|