[openwrt/openwrt] mvebu: udpu: fix initramfs booting

LEDE Commits lede-commits at lists.infradead.org
Mon Mar 21 06:00:53 PDT 2022


ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/80f21e53360d52d493c51a4a263d9b7607b7494e

commit 80f21e53360d52d493c51a4a263d9b7607b7494e
Author: Robert Marko <robert.marko at sartura.hr>
AuthorDate: Mon Mar 21 11:47:27 2022 +0100

    mvebu: udpu: fix initramfs booting
    
    uDPU provides a FIT based initramfs, but currently gets stuck after U-boot
    starts the kernel at "Starting kernel..".
    
    It is due to the load address being too low, so increase it in order to get
    the initramfs booting again.
    
    Signed-off-by: Robert Marko <robert.marko at sartura.hr>
---
 target/linux/mvebu/image/cortexa53.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/linux/mvebu/image/cortexa53.mk b/target/linux/mvebu/image/cortexa53.mk
index ca3a53f992..46f04fe7cc 100644
--- a/target/linux/mvebu/image/cortexa53.mk
+++ b/target/linux/mvebu/image/cortexa53.mk
@@ -82,7 +82,7 @@ define Device/methode_udpu
   DEVICE_VENDOR := Methode
   DEVICE_MODEL := micro-DPU (uDPU)
   DEVICE_DTS := armada-3720-uDPU
-  KERNEL_LOADADDR := 0x00080000
+  KERNEL_LOADADDR := 0x00800000
   KERNEL_INITRAMFS := kernel-bin | gzip | fit gzip $$(KDIR)/image-$$(DEVICE_DTS).dtb
   KERNEL_INITRAMFS_SUFFIX := .itb
   DEVICE_PACKAGES += f2fs-tools fdisk kmod-i2c-pxa




More information about the lede-commits mailing list