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/au1000/base-files/etc/diag.sh

22 lines
282 B
Bash

#!/bin/sh
# Copyright (C) 2007-2013 OpenWrt.org
. /lib/functions/leds.sh
set_state() {
case "$1" in
preinit)
led_off "mtx1:green"
led_on "mtx1:red"
;;
failsafe)
led_on "mtx1:green"
led_on "mtx1:red"
;;
done)
led_on "mtx1:green"
led_off "mtx1:red"
;;
esac
}