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/mikrotik/base-files/etc/uci-defaults/04_led_migration

18 lines
211 B
Bash

#!/bin/sh
. /lib/functions.sh
. /lib/functions/migrations.sh
board=$(board_name)
boardonly="${board##*,}"
case "$board" in
mikrotik,*)
migrate_leds "^rb:=mikrotik:"
;;
esac
migrations_apply system
exit 0