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

26 lines
302 B
Bash

#!/bin/sh
#
# Copyright (C) 2015 OpenWrt.org
#
. /lib/functions/leds.sh
set_state() {
status_led="led0"
case "$1" in
preinit)
status_led_blink_preinit
;;
failsafe)
status_led_blink_failsafe
;;
preinit_regular)
status_led_blink_preinit_regular
;;
done)
status_led_on
;;
esac
}