From 3eca9ba53f38b60cf7994606072023b0af49b357 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Tue, 12 Dec 2023 01:25:01 +0100 Subject: [PATCH] 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 --- .../base-files/etc/uci-defaults/05_fix-compat-version | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 target/linux/ipq806x/base-files/etc/uci-defaults/05_fix-compat-version 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 -- 2.30.2