diff options
author | Daniel Golle <daniel@makrotopia.org> | 2024-02-16 05:38:07 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2024-02-16 05:40:14 +0000 |
commit | ae1c0f1b158a881043af460ed7a94e2177cdea2a (patch) | |
tree | ec0b6809af453d62c87dd9fa999aca5930a557ed /package | |
parent | 67beab2b2b39c4fe3e48a021aefbfac15ffa70ce (diff) |
mediatek: filogic: bpi-r3-mini: fix NAND flash layout
Fix NAND flash layout which was out-of-sync with the definition in
ARM TrustedFirmware-A which expects UBI to start at 0x200000.
Fixes: b03d3644cf ("mediatek: filogic: add BananaPi BPi-R3 mini")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package')
-rw-r--r-- | package/boot/uboot-mediatek/patches/442-add-bpi-r3-mini.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/boot/uboot-mediatek/patches/442-add-bpi-r3-mini.patch b/package/boot/uboot-mediatek/patches/442-add-bpi-r3-mini.patch index 5df81ae7a1..5a7e0c4daf 100644 --- a/package/boot/uboot-mediatek/patches/442-add-bpi-r3-mini.patch +++ b/package/boot/uboot-mediatek/patches/442-add-bpi-r3-mini.patch @@ -758,12 +758,12 @@ + + partition@0 { + label = "bl2"; -+ reg = <0x0 0x80000>; ++ reg = <0x0 0x200000>; + }; + -+ partition@80000 { ++ partition@200000 { + label = "ubi"; -+ reg = <0x80000 0x7f80000>; ++ reg = <0x200000 0x7e00000>; + }; + }; + }; |