#!/bin/sh # # Copyright (C) 2015 OpenWrt.org # . /lib/functions/uci-defaults.sh board_config_update board=$(board_name) case "$board" in c2600) ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb_2" "usb1-port1" "usb2-port1" ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb_4" "usb3-port1" "usb4-port1" ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20" ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e" ;; d7800 |\ r7500 |\ r7500v2 |\ r7800) ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb1" "usb1-port1" "usb2-port1" ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb2" "usb3-port1" "usb4-port1" ucidef_set_led_netdev "wan" "WAN" "${board}:white:wan" "eth0" ucidef_set_led_ide "esata" "eSATA" "${board}:white:esata" ;; fritz4040) ucidef_set_led_wlan "wlan" "WLAN" "$board:green:wlan" "phy0tpt" "phy1tpt" ucidef_set_led_switch "wan" "WAN" "${board}:green:wan" "switch0" "0x20" ucidef_set_led_switch "lan" "LAN" "${board}:green:lan" "switch0" "0x1e" ;; nbg6817) ucidef_set_led_wlan "wlan2g" "WLAN2G" "$board:amber:wifi2g" "phy1tpt" ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:amber:wifi5g" "phy0tpt" ucidef_set_led_netdev "wan" "WAN" "$board:white:internet" "eth1" ;; rt-acrh17) ucidef_set_led_default "status" "STATUS" "${board}:blue:status" "1" ucidef_set_led_wlan "wlan2g" "WLAN2G" "${board}:blue:wlan2g" "phy0tpt" ucidef_set_led_wlan "wlan5g" "WLAN5G" "${board}:blue:wlan5g" "phy1tpt" ucidef_set_led_switch "wan" "WAN(blue)" "${board}:blue:wan" "switch0" "0x20" ucidef_set_led_switch "lan1" "LAN1" "${board}:blue:lan1" "switch0" "0x02" ucidef_set_led_switch "lan2" "LAN2" "${board}:blue:lan2" "switch0" "0x04" ucidef_set_led_switch "lan3" "LAN3" "${board}:blue:lan3" "switch0" "0x08" ucidef_set_led_switch "lan4" "LAN4" "${board}:blue:lan4" "switch0" "0x10" ;; rt-ac58u) ucidef_set_led_wlan "wlan2g" "WLAN2G" "$board:blue:wlan2G" "phy0tpt" ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:blue:wlan5G" "phy1tpt" ucidef_set_led_switch "wan" "WAN" "${board}:blue:wan" "switch0" "0x20" ucidef_set_led_usbport "usb" "USB" "${board}:blue:usb" "usb1-port1" "usb2-port1" "usb3-port1" "usb4-port1" ucidef_set_led_switch "lan" "LAN" "${board}:blue:lan" "switch0" "0x1e" ;; vr2600v) ucidef_set_led_usbport "usb" "USB" "${board}:white:usb" "usb1-port1" "usb2-port1" "usb3-port1" "usb4-port1" ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e" ucidef_set_led_wlan "wlan2g" "WLAN2G" "${board}:white:wlan2g" "phy0tpt" ucidef_set_led_wlan "wlan5g" "WLAN5G" "${board}:white:wlan5g" "phy1tpt" ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20" ;; *) ;; esac board_config_flush exit 0