summaryrefslogtreecommitdiffstats
path: root/target/linux/ipq806x/base-files/etc
diff options
context:
space:
mode:
authorChristian Marangi <ansuelsmth@gmail.com>2023-12-12 01:25:01 +0100
committerChristian Marangi <ansuelsmth@gmail.com>2023-12-12 01:28:22 +0100
commit3eca9ba53f38b60cf7994606072023b0af49b357 (patch)
treec8be5d08a94866e8465e72c1516907c5cda083ed /target/linux/ipq806x/base-files/etc
parentdb3afed6ce25fc4a078883419d5798e74b5bb09c (diff)
downloadopenwrt-3eca9ba53f38b60cf7994606072023b0af49b357.tar.gz
openwrt-3eca9ba53f38b60cf7994606072023b0af49b357.tar.bz2
openwrt-3eca9ba53f38b60cf7994606072023b0af49b357.zip
ipq806x: drop useless uci-defaults compat version script
Drop useless uci-defaults compat version script as it's not needed anymore and should have been dropped on DSA conversion. The script was needed for Linksys EA7500 and EA8500 for the kernel space migration. We now handle compat version setting in board.d scripts. Having this script with actually the wrong value (2.0) cause upgrade problem and conflicts with board.d script. Fixes: 337e36e0ef98 ("ipq806x: convert each device to DSA implementation") Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'target/linux/ipq806x/base-files/etc')
-rw-r--r--target/linux/ipq806x/base-files/etc/uci-defaults/05_fix-compat-version11
1 files changed, 0 insertions, 11 deletions
diff --git a/target/linux/ipq806x/base-files/etc/uci-defaults/05_fix-compat-version b/target/linux/ipq806x/base-files/etc/uci-defaults/05_fix-compat-version
deleted file mode 100644
index 3b9dd4e028..0000000000
--- a/target/linux/ipq806x/base-files/etc/uci-defaults/05_fix-compat-version
+++ /dev/null
@@ -1,11 +0,0 @@
-. /lib/functions.sh
-
-case "$(board_name)" in
- linksys,ea7500-v1|\
- linksys,ea8500)
- uci set system.@system[0].compat_version="2.0"
- uci commit system
- ;;
-esac
-
-exit 0