aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/layerscape/base-files/etc
diff options
context:
space:
mode:
authorPawel Dembicki <paweldembicki@gmail.com>2020-08-19 12:13:26 +0200
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-10-26 00:40:12 +0100
commit3605eff88190af9cc2905ba750252c1643a1bc7d (patch)
tree478a38f0a5e5e459131fa6cd9e360731c1e8a878 /target/linux/layerscape/base-files/etc
parent6180005debe3f2502e5c2e1839f05682338990b4 (diff)
downloadupstream-3605eff88190af9cc2905ba750252c1643a1bc7d.tar.gz
upstream-3605eff88190af9cc2905ba750252c1643a1bc7d.tar.bz2
upstream-3605eff88190af9cc2905ba750252c1643a1bc7d.zip
layerscape: add dtb to sysupgrade
At this moment sysupgrade replaces only kernel and rootfs. This patch add dtb part to sysupgrade images to avoid situation when old dtb make system broken. Is possible to sysupgrade older images for NOR devices: 1. Firmware partition in bootargs need to be updated to: "49m@0xf00000(firmware)". Env should be saved after changes. 2. After step one, "sysupgrade -F" will work. Run tested: LS1046A-RDB Reviewed-by: Yangbo Lu <yangbo.lu@nxp.com> Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com> [bump PKG_RELEASE for uboot-layerscape] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/layerscape/base-files/etc')
-rw-r--r--target/linux/layerscape/base-files/etc/uci-defaults/05_fix-compat-version19
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/layerscape/base-files/etc/uci-defaults/05_fix-compat-version b/target/linux/layerscape/base-files/etc/uci-defaults/05_fix-compat-version
new file mode 100644
index 0000000000..923f4ac273
--- /dev/null
+++ b/target/linux/layerscape/base-files/etc/uci-defaults/05_fix-compat-version
@@ -0,0 +1,19 @@
+#
+# Copyright (C) 2020 OpenWrt.org
+#
+
+. /lib/functions.sh
+
+case "$(board_name)" in
+ fsl,ls1012a-rdb | \
+ fsl,ls1021a-twr | \
+ fsl,ls1043a-rdb | \
+ fsl,ls1046a-rdb | \
+ fsl,ls1088a-rdb | \
+ fsl,ls2088a-rdb)
+ uci set system.@system[0].compat_version="2.0"
+ uci commit system
+ ;;
+esac
+
+exit 0