[openwrt/openwrt] mediatek: Update mt7622-reyee-ax3200-e5.dts
LEDE Commits
lede-commits at lists.infradead.org
Sat Mar 15 05:49:14 PDT 2025
hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/f4ba980f154fabc63a7164309543312b320cbfd7
commit f4ba980f154fabc63a7164309543312b320cbfd7
Author: Boyang Sun <boyinthesun at 163.com>
AuthorDate: Sun Feb 23 00:27:50 2025 +0800
mediatek: Update mt7622-reyee-ax3200-e5.dts
fixed wrong reg.
The original commit assumed the size part was the end of the reg.
Fixes: 7dbac3433fef ("mediatek: add support for reyee AX3200-E5")
Signed-off-by: Boyang Sun <boyinthesun at 163.com>
Link: https://github.com/openwrt/openwrt/pull/18074
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
target/linux/mediatek/dts/mt7622-reyee-ax3200-e5.dts | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/target/linux/mediatek/dts/mt7622-reyee-ax3200-e5.dts b/target/linux/mediatek/dts/mt7622-reyee-ax3200-e5.dts
index d86ea52fcf..5d0115a221 100644
--- a/target/linux/mediatek/dts/mt7622-reyee-ax3200-e5.dts
+++ b/target/linux/mediatek/dts/mt7622-reyee-ax3200-e5.dts
@@ -35,43 +35,43 @@
partition at 20000 {
label = "ATF";
- reg = <0x20000 0x30000>;
+ reg = <0x20000 0x10000>;
read-only;
};
partition at 30000 {
label = "u-boot";
- reg = <0x30000 0x80000>;
+ reg = <0x30000 0x50000>;
read-only;
};
partition at 80000 {
label = "u-boot-env";
- reg = <0x80000 0x90000>;
+ reg = <0x80000 0x10000>;
};
factory: partition at 90000 {
label = "Factory";
- reg = <0x90000 0xd0000>;
+ reg = <0x90000 0x40000>;
read-only;
};
partition at d0000 {
label = "product_info";
- reg = <0xd0000 0xe0000>;
+ reg = <0xd0000 0x10000>;
read-only;
};
partition at e0000 {
label = "kdump";
- reg = <0xe0000 0xf0000>;
+ reg = <0xe0000 0x10000>;
read-only;
};
partition at f0000 {
compatible = "denx,fit";
label = "firmware";
- reg = <0xf0000 0x1000000>;
+ reg = <0xf0000 0xf10000>;
};
};
};
More information about the lede-commits
mailing list