mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-08 22:12:49 +00:00
a3e6521c1a
This driver adds the LED support for the PC Engines APU1. This integrates the Linux kernel driver and includes a patch to support newer firmware versions. Also the default LED configuration is updated to use the correct devices. Signed-off-by: Andreas Eberlein <foodeas@aeberlein.de>
25 lines
581 B
Bash
Executable File
25 lines
581 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright © 2017 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
pc-engines-apu1|pc-engines-apu2|pc-engines-apu3)
|
|
ucidef_set_led_netdev "wan" "WAN" "apu:green:3" "eth0"
|
|
ucidef_set_led_netdev "lan" "LAN" "apu:green:2" "br-lan"
|
|
ucidef_set_led_default "diag" "DIAG" "apu:green:1" "1"
|
|
;;
|
|
traverse-technologies-geos)
|
|
ucidef_set_led_netdev "lan" "LAN" "geos:1" "br-lan" "tx rx"
|
|
ucidef_set_led_netdev "wlan" "WiFi" "geos:2" "phy0tpt"
|
|
ucidef_set_led_default "diag" "DIAG" "geos:3" "1"
|
|
;;
|
|
esac
|
|
board_config_flush
|
|
|
|
exit 0
|