You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/ath79/base-files/etc/uci-defaults/04_led_migration

20 lines
277 B
Bash

#!/bin/sh
. /lib/functions.sh
. /lib/functions/migrations.sh
board=$(board_name)
case "$board" in
engenius,epg5000)
migrate_leds ":wlan-2g=:wlan2g" ":wlan-5g=:wlan5g"
;;
tplink,archer-c7-v5)
migrate_leds "archer-c7-v5:=tp-link:"
;;
esac
migrations_apply system
exit 0