aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/xway
diff options
context:
space:
mode:
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-07-17 12:09:57 +0200
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-07-17 12:14:32 +0200
commitb78a266888aad6632ccc9eecb04e615f9ce43868 (patch)
tree86e13e0843a40edddb527f50d4b51c544bf0b7f6 /target/linux/lantiq/xway
parent6299c1760a15633a3b41f08044efd9cadd051db0 (diff)
downloadupstream-b78a266888aad6632ccc9eecb04e615f9ce43868.tar.gz
upstream-b78a266888aad6632ccc9eecb04e615f9ce43868.tar.bz2
upstream-b78a266888aad6632ccc9eecb04e615f9ce43868.zip
lantiq: move 01_led_migration script to subtargets
Split the /etc/uci-defaults/01_led_migration scripts into subtargets as already done for most of the other base-files. While this introduces a minor amount of code duplication, it still is considered an improvement, as device-specific settings are kept together in the subtargets' base-files and the script at hand can be removed entirely for two of the subtargets not needing it. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/lantiq/xway')
-rw-r--r--target/linux/lantiq/xway/base-files/etc/uci-defaults/01_led_migration36
1 files changed, 36 insertions, 0 deletions
diff --git a/target/linux/lantiq/xway/base-files/etc/uci-defaults/01_led_migration b/target/linux/lantiq/xway/base-files/etc/uci-defaults/01_led_migration
new file mode 100644
index 0000000000..0139ef28b5
--- /dev/null
+++ b/target/linux/lantiq/xway/base-files/etc/uci-defaults/01_led_migration
@@ -0,0 +1,36 @@
+#
+# Copyright (C) 2013 OpenWrt.org
+#
+
+. /lib/functions/migrations.sh
+
+do_internet_led_rename()
+{
+ config_load system
+
+ [ -n $(config_get led_internet name) ] || return
+ [ -z $(config_get led_dsl name) ] || return
+
+ uci rename system.led_internet=led_dsl
+ uci set system.led_dsl.name=dsl
+
+ logger -t led-migration "internet led renamed to dsl"
+}
+
+case "$(board_name)" in
+arcadyan,arv7510pw22|\
+arcadyan,arv752dpw|\
+arcadyan,arv752dpw22|\
+bt,homehub-v2b|\
+bt,homehub-v3a)
+ do_internet_led_rename
+ ;;
+netgear,dgn3500|\
+netgear,dgn3500b)
+ migrate_leds "dgn3500:blue:wireless=dgn3500:green:wireless"
+ ;;
+esac
+
+migrations_apply system
+
+exit 0