diff options
author | Russell Senior <russell@personaltelco.net> | 2020-05-23 01:19:50 -0700 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-05-23 11:38:09 +0200 |
commit | fe9a2beecb484e067552dac396de2388188fbd49 (patch) | |
tree | f7f8786af4551f0e1f477daa303ad67c4e20bfa0 /target | |
parent | ebddc5f984a240980303aed68524eb615484eef8 (diff) | |
download | upstream-fe9a2beecb484e067552dac396de2388188fbd49.tar.gz upstream-fe9a2beecb484e067552dac396de2388188fbd49.tar.bz2 upstream-fe9a2beecb484e067552dac396de2388188fbd49.zip |
ramips: fix 04_led_migration case syntax for mt7621
Commit f761f4052c4 had bogus case syntax, the uci-defaults script threw
errors as a result and exited non-zero, probably didn't do what was
intended, but tried over and over since the non-zero exit prevents the
script from being deleted.
Fixes: f761f4052c41 ("ramips: mt7621: harmonize naming scheme for Mikrotik")
Signed-off-by: Russell Senior <russell@personaltelco.net>
[extend commit title, add Fixes]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/mt7621/base-files/etc/uci-defaults/04_led_migration | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/ramips/mt7621/base-files/etc/uci-defaults/04_led_migration b/target/linux/ramips/mt7621/base-files/etc/uci-defaults/04_led_migration index 73140fd7d5..1248dcec0f 100644 --- a/target/linux/ramips/mt7621/base-files/etc/uci-defaults/04_led_migration +++ b/target/linux/ramips/mt7621/base-files/etc/uci-defaults/04_led_migration @@ -9,14 +9,16 @@ boardonly="${board##*,}" case "$board" in mikrotik,routerboard-750gr3) migrate_leds "^rb750gr3:=$boardonly:" + ;; mikrotik,routerboard-m11g) migrate_leds "^rbm11g:=$boardonly:" + ;; mikrotik,routerboard-m33g) migrate_leds "^rbm33g:=$boardonly:" + ;; netgear,wndr3700-v5) migrate_leds "^wndr3700v5:=$boardonly:" ;; - esac migrations_apply system |