Initial commit

This commit is contained in:
domenico
2025-06-24 13:14:22 +02:00
commit 4002f145fc
9002 changed files with 1731834 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
. /lib/functions/leds.sh
. /lib/functions/uci-defaults.sh
board=$(board_name)
board_config_update
case $board in
airlink101,ar670w|\
airlink101,ar725w)
ucidef_set_led_netdev "wifi_led" "wifi" "rt2800soc-phy0::radio" "wlan0"
;;
belkin,f5d8235-v1)
ucidef_set_led_netdev "wifi_led" "wifi" "blue:wireless" "wlan0"
;;
ralink,v11st-fe)
ucidef_set_led_netdev "wifi_led" "wifi" "rt2800pci-phy0::radio" "wlan0"
;;
esac
board_config_flush
exit 0