You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/ar7/base-files/etc/diag.sh

20 lines
290 B
Bash

#!/bin/sh
# Copyright (C) 2007 OpenWrt.org
set_led() {
local led="$1"
local state="$2"
[ -d "/sys/class/leds/ar7:$led" ] && echo "$state" > "/sys/class/leds/ar7:$led/brightness"
}
set_state() {
case "$1" in
preinit)
set_led status 1
;;
done)
set_led status 0
;;
esac
}