diff options
| author | Milan Krstic | 2026-01-28 20:23:17 +0000 |
|---|---|---|
| committer | Robert Marko | 2026-01-29 10:22:36 +0000 |
| commit | ea7d79dce08148790639eea8926e7521101069cf (patch) | |
| tree | e2a08dc0a0c9c64160ed05f1c6e135eb4461a9a4 | |
| parent | 37b13b6ea65f64154d4e97d3cb677f31aebf5ec3 (diff) | |
| download | openwrt-ea7d79dce08148790639eea8926e7521101069cf.tar.gz | |
qualcommax: ipq807x: fix bootconfig script sysupgrade problem
Make sure seq is copied to ramfs during sysupgrade.
Signed-off-by: Milan Krstic <milan.krstic@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21760
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh b/target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh index 30ff4fce47..7d0cd3e5bd 100644 --- a/target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh +++ b/target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh @@ -1,7 +1,7 @@ PART_NAME=firmware REQUIRE_IMAGE_METADATA=1 -RAMFS_COPY_BIN='fw_printenv fw_setenv head' +RAMFS_COPY_BIN='fw_printenv fw_setenv head seq' RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock' xiaomi_initramfs_prepare() { |