[openwrt/openwrt] ipq807x: prpl haze & qnap 301w: use the standard eMMC sysupgrade code
LEDE Commits
lede-commits at lists.infradead.org
Thu Nov 28 10:57:54 PST 2024
ynezz pushed a commit to openwrt/openwrt.git, branch openwrt-24.10:
https://git.openwrt.org/16eb043062f16986879d7ff8f6f9b1f773a4a2fd
commit 16eb043062f16986879d7ff8f6f9b1f773a4a2fd
Author: Rodrigo Balerdi <lanchon at gmail.com>
AuthorDate: Fri Nov 8 17:40:03 2024 -0300
ipq807x: prpl haze & qnap 301w: use the standard eMMC sysupgrade code
Note that the old ad-hoc method did not explicitly align backup data
to 64 KiB boundaries.
Also note that the qnap 301w has a 'rootfs_data' partition in the eMMC
that is being ignored by fstools during boot, presumably due to a bug.
This is why the partition is also ignored in the sysupgrade code and
there is no definition of CI_DATAPART="rootfs_data".
Signed-off-by: Rodrigo Balerdi <lanchon at gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16505
Signed-off-by: Robert Marko <robimarko at gmail.com>
(cherry picked from commit fe481c9c47d97ebde1bc3c959924f4f9227c6c16)
Link: https://github.com/openwrt/openwrt/pull/17097
Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
target/linux/qualcommax/image/ipq807x.mk | 4 ++--
.../linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh | 8 +++++---
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/target/linux/qualcommax/image/ipq807x.mk b/target/linux/qualcommax/image/ipq807x.mk
index 401f455585..60af865459 100644
--- a/target/linux/qualcommax/image/ipq807x.mk
+++ b/target/linux/qualcommax/image/ipq807x.mk
@@ -308,7 +308,7 @@ define Device/prpl_haze
DEVICE_DTS_CONFIG := config at hk09
SOC := ipq8072
DEVICE_PACKAGES := ath11k-firmware-qcn9074 ipq-wifi-prpl_haze kmod-ath11k-pci \
- mkf2fs f2fsck kmod-fs-f2fs kmod-leds-lp5562
+ kmod-fs-f2fs f2fs-tools kmod-leds-lp5562
endef
TARGET_DEVICES += prpl_haze
@@ -320,7 +320,7 @@ define Device/qnap_301w
DEVICE_DTS_CONFIG := config at hk01
KERNEL_SIZE := 16384k
SOC := ipq8072
- DEVICE_PACKAGES := ipq-wifi-qnap_301w
+ DEVICE_PACKAGES := kmod-fs-f2fs f2fs-tools ipq-wifi-qnap_301w
endef
TARGET_DEVICES += qnap_301w
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 f822f6291d..00289dcfe6 100644
--- a/target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh
+++ b/target/linux/qualcommax/ipq807x/base-files/lib/upgrade/platform.sh
@@ -185,9 +185,9 @@ platform_do_upgrade() {
;;
prpl,haze|\
qnap,301w)
- kernelname="0:HLOS"
- rootfsname="rootfs"
- mmc_do_upgrade "$1"
+ CI_KERNPART="0:HLOS"
+ CI_ROOTPART="rootfs"
+ emmc_do_upgrade "$1"
;;
tplink,eap660hd-v1)
tplink_do_upgrade "$1"
@@ -267,6 +267,8 @@ platform_do_upgrade() {
platform_copy_config() {
case "$(board_name)" in
+ prpl,haze|\
+ qnap,301w|\
spectrum,sax1v1k|\
zyxel,nbg7815)
emmc_copy_config
More information about the lede-commits
mailing list