6f04128892
Use the values populated by the generic board detect function. The first compatible from the device tree source file will be the board name in userspace. The model property from the device tree source file will be the model name. Change the board name where used in the userspace and drop the target specific board detect, to use the generic one. Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
35 lines
550 B
Bash
35 lines
550 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2015-2016 OpenWrt.org
|
|
# Copyright (C) 2017 LEDE project
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/leds.sh
|
|
|
|
set_state() {
|
|
case "$(board_name)" in
|
|
raspberrypi,2-model-b |\
|
|
raspberrypi,model-b-plus)
|
|
status_led="led1"
|
|
;;
|
|
raspberrypi,model-b |\
|
|
raspberrypi,model-zero |\
|
|
raspberrypi,model-zero-w)
|
|
status_led="led0"
|
|
;;
|
|
esac
|
|
|
|
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
|
|
}
|