mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 23:12:32 +00:00
26595eac05
The APU6 is similar to the APU4 except for eth0 having an SFP cage instead of RJ45. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
28 lines
770 B
Plaintext
28 lines
770 B
Plaintext
#
|
|
# Copyright © 2017 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
cisco-mx100-hw)
|
|
ucidef_set_led_usbport "usb" "USB" "mx100:green:usb" "1-1-port2"
|
|
ucidef_set_led_default "diag" "DIAG" "mx100:green:tricolor" "1"
|
|
;;
|
|
pc-engines-apu1|pc-engines-apu2|pc-engines-apu3|pc-engines-apu4|pc-engines-apu5|pc-engines-apu6)
|
|
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
|