[openwrt/openwrt] uboot-tools: update ubootenv_add_* functions

LEDE Commits lede-commits at lists.infradead.org
Thu Jun 26 14:13:38 PDT 2025


hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/40e4dd5d31b482f4f53fafe8fdf74b70a03df066

commit 40e4dd5d31b482f4f53fafe8fdf74b70a03df066
Author: Paweł Owoc <frut3k7 at gmail.com>
AuthorDate: Fri May 16 16:06:57 2025 +0200

    uboot-tools: update ubootenv_add_* functions
    
    Add posibility to specify:
    - ROOTDEV (mmc)
    - number of blocks (mtd)
    
    Signed-off-by: Paweł Owoc <frut3k7 at gmail.com>
    Link: https://github.com/openwrt/openwrt/pull/18818
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 package/boot/uboot-tools/uboot-envtools/files/qualcommax_ipq807x | 4 ++--
 package/boot/uboot-tools/uboot-envtools/files/uboot-envtools.sh  | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/package/boot/uboot-tools/uboot-envtools/files/qualcommax_ipq807x b/package/boot/uboot-tools/uboot-envtools/files/qualcommax_ipq807x
index ae0946190d..3b4ae59fc6 100644
--- a/package/boot/uboot-tools/uboot-envtools/files/qualcommax_ipq807x
+++ b/package/boot/uboot-tools/uboot-envtools/files/qualcommax_ipq807x
@@ -48,14 +48,14 @@ xiaomi,ax9000)
 	ubootenv_add_sys_mtd "bdata" "0x0" "0x10000" "0x20000"
 	;;
 prpl,haze)
-	ubootenv_add_mmc "0:APPSBLENV" "0x0" "0x40000" "0x400" "0x100"
+	ubootenv_add_mmc "0:APPSBLENV" "" "0x0" "0x40000" "0x400" "0x100"
 	;;
 asus,rt-ax89x|\
 qnap,301w)
 	ubootenv_add_mtd "0:appsblenv" "0x0" "0x20000" "0x20000"
 	;;
 spectrum,sax1v1k)
-	ubootenv_add_mmc "0:APPSBLENV" "0x0" "0x40000" "0x40000" "1"
+	ubootenv_add_mmc "0:APPSBLENV" "" "0x0" "0x40000" "0x40000" "1"
 	;;
 esac
 
diff --git a/package/boot/uboot-tools/uboot-envtools/files/uboot-envtools.sh b/package/boot/uboot-tools/uboot-envtools/files/uboot-envtools.sh
index 23687d9826..71ec8e8e71 100644
--- a/package/boot/uboot-tools/uboot-envtools/files/uboot-envtools.sh
+++ b/package/boot/uboot-tools/uboot-envtools/files/uboot-envtools.sh
@@ -48,17 +48,17 @@ ubootenv_add_app_config() {
 ubootenv_add_mtd() {
 	local idx="$(find_mtd_index "${1}")"
 	[ -n "$idx" ] && \
-		ubootenv_add_uci_config "/dev/mtd$idx" "${2}" "${3}" "${4}"
+		ubootenv_add_uci_config "/dev/mtd$idx" "${2}" "${3}" "${4}" "${5}"
 }
 
 ubootenv_add_sys_mtd() {
 	local idx="$(find_mtd_index "${1}")"
 	[ -n "$idx" ] && \
-		ubootenv_add_uci_sys_config "/dev/mtd$idx" "${2}" "${3}" "${4}"
+		ubootenv_add_uci_sys_config "/dev/mtd$idx" "${2}" "${3}" "${4}" "${5}"
 }
 
 ubootenv_add_mmc() {
-	local mmcpart="$(find_mmc_part "${1}")"
+	local mmcpart="$(find_mmc_part "${1}" "${2}")"
 	[ -n "$mmcpart" ] && \
-		ubootenv_add_uci_config "$mmcpart" "${2}" "${3}" "${4}" "${5}"
+		ubootenv_add_uci_config "$mmcpart" "${3}" "${4}" "${5}" "${6}"
 }




More information about the lede-commits mailing list