mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-10 07:34:40 +01:00
mpc85xx: p1010: Fix Sophos RED 15w NAND partitions
Some checks are pending
Build Kernel / Build all affected Kernels (push) Waiting to run
Some checks are pending
Build Kernel / Build all affected Kernels (push) Waiting to run
This partially reverts78d259e7d2. That commit broke mounting the root fs on Sophos RED 15w due to partition size mismatch, and changed the partition sequence, causing the OpenWrt partition numbers to change from mtd3:kernel/mtd4:ubi to mtd4:kernel/mtd5:ubi. Fixes:78d259e7d2("mpc85xx: fix some dtc warnings") (cherry-picked from commit09e7b24ceb) Signed-off-by: Shine <4c.fce2@proton.me> Link: https://github.com/openwrt/openwrt/pull/21062 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
d0c2c30e50
commit
0ed59099ee
1 changed files with 10 additions and 14 deletions
|
|
@ -165,23 +165,19 @@
|
|||
read-only;
|
||||
};
|
||||
|
||||
partition@300000 {
|
||||
reg = <0x300000 0x800000>;
|
||||
label = "kernel";
|
||||
};
|
||||
|
||||
partition@b00000 {
|
||||
reg = <0xb00000 0x7500000>;
|
||||
label = "ubi";
|
||||
};
|
||||
|
||||
oem-partition@300000 {
|
||||
reg = <0x300000 0x1900000>;
|
||||
label = "sophos-os1";
|
||||
|
||||
compatible = "fixed-partitions";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
partition@0 {
|
||||
reg = <0x0 0x800000>;
|
||||
label = "kernel";
|
||||
};
|
||||
|
||||
partition@800000 {
|
||||
reg = <0x800000 0x7500000>;
|
||||
label = "ubi";
|
||||
};
|
||||
};
|
||||
|
||||
oem-partition@1c00000 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue