diff options
| author | Rosen Penev | 2025-07-13 18:11:28 +0000 |
|---|---|---|
| committer | Robert Marko | 2026-02-08 17:37:43 +0000 |
| commit | 387e5d57ccdb18f7e3d89b93818e22deed2c302c (patch) | |
| tree | e8d3203abce9a9ddb8dc24098a4a7baf84fcd667 | |
| parent | 6e3c8d95f452e9b3eaed6588251e18374bf697b8 (diff) | |
| download | openwrt-387e5d57ccdb18f7e3d89b93818e22deed2c302c.tar.gz | |
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@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16618
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/boot/uboot-tools/uboot-envtools/files/apm821xx | 4 |
1 files 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" |