[openwrt/openwrt] mvebu: harmonize GL.iNet GL-MV1000 MTD partitions layout with vendor
LEDE Commits
lede-commits at lists.infradead.org
Fri Jan 6 11:03:36 PST 2023
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/d3e89e69c52115d1c02f5c16a4aa6b721e003578
commit d3e89e69c52115d1c02f5c16a4aa6b721e003578
Author: Enrico Mioso <mrkiko.rs at gmail.com>
AuthorDate: Sun Nov 20 05:19:06 2022 +0100
mvebu: harmonize GL.iNet GL-MV1000 MTD partitions layout with vendor
The GL-MV1000 ships with a 16MB spi-nor flash, containing a copy of the stock GL.iNet firmware.
Add the corresponding flash areas, so our view matches the one of the in-flash stock firmware.
Signed-off-by: Enrico Mioso <mrkiko.rs at gmail.com>
---
.../arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/target/linux/mvebu/files/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts b/target/linux/mvebu/files/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
index acf15e8ca9..72d7267ccd 100644
--- a/target/linux/mvebu/files/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
+++ b/target/linux/mvebu/files/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
@@ -96,7 +96,7 @@
partition at f0000 {
label = "u-boot-env";
- reg = <0Xf0000 0x8000>;
+ reg = <0xf0000 0x8000>;
read-only;
};
@@ -105,6 +105,24 @@
reg = <0xf8000 0x8000>;
read-only;
};
+
+ partition at 100000 {
+ label = "gl-firmware-dtb";
+ reg = <0x100000 0x10000>;
+ read-only;
+ };
+
+ partition at 110000 {
+ label = "gl-firmware";
+ reg = <0x110000 0xef0000>;
+ read-only;
+ };
+
+ partition at ef0000 {
+ label = "gl-firmware-jffs2";
+ reg = <0xef0000 0x110000>;
+ read-only;
+ };
};
};
};
More information about the lede-commits
mailing list