[openwrt/openwrt] uboot-envtools: fix meraki mr24 definition
LEDE Commits
lede-commits at lists.infradead.org
Sun Feb 8 09:38:01 PST 2026
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/387e5d57ccdb18f7e3d89b93818e22deed2c302c
commit 387e5d57ccdb18f7e3d89b93818e22deed2c302c
Author: Rosen Penev <rosenp at gmail.com>
AuthorDate: Sun Jul 13 11:11:28 2025 -0700
uboot-envtools: fix meraki mr24 definition
These two are redundant definitions according to dts. A value of 4 (CRC
no redundancy) makes no sense.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16618
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
package/boot/uboot-tools/uboot-envtools/files/apm821xx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/boot/uboot-tools/uboot-envtools/files/apm821xx b/package/boot/uboot-tools/uboot-envtools/files/apm821xx
index c3642bda91..8f4fbe918f 100644
--- a/package/boot/uboot-tools/uboot-envtools/files/apm821xx
+++ b/package/boot/uboot-tools/uboot-envtools/files/apm821xx
@@ -9,8 +9,8 @@ board=$(board_name)
case "$board" in
meraki,mr24)
- ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x4000" "0x4000" "4"
- ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x4000" "0x4000" "4"
+ ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x4000" "0x4000" "1"
+ ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x4000" "0x4000" "1"
;;
meraki,mx60)
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000" "1"
More information about the lede-commits
mailing list