openwrtv3/target/linux/brcm2708/base-files/etc/diag.sh
Álvaro Fernández Rojas baad22eed3 brcm2708: update linux 4.9 patches to latest version
As usual these patches were extracted and rebased from the raspberry pi repo:
https://github.com/raspberrypi/linux/tree/rpi-4.9.y

- Remove led1 from diag.sh for RPi3 since it causes boot issues.
- Fix modules.mk typos.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2017-03-04 19:37:50 +01:00

34 lines
450 B
Bash

#!/bin/sh
# Copyright (C) 2015-2016 OpenWrt.org
. /lib/functions/leds.sh
. /lib/brcm2708.sh
set_state() {
case "$(brcm2708_board_name)" in
rpi-b |\
rpi-cm |\
rpi-zero)
status_led="led0"
;;
rpi-b-plus |\
rpi-2-b)
status_led="led1"
;;
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
}