
This moves the PXE file address out of the bounds of the U-Boot image (which is loaded at 0x80100000).
This also moves the ramdisk address to a better-looking aligned location.
Signed-off-by: Paul Kocialkowski contact@paulk.fr --- include/configs/kc1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/configs/kc1.h b/include/configs/kc1.h index c2ac148..4eb6f85 100644 --- a/include/configs/kc1.h +++ b/include/configs/kc1.h @@ -226,8 +226,8 @@ "loadaddr=0x82000000\0" \ "fdt_addr_r=0x88000000\0" \ "fdtaddr=0x88000000\0" \ - "ramdisk_addr_r=0x88080000\0" \ - "pxefile_addr_r=0x80100000\0" \ + "ramdisk_addr_r=0x84000000\0" \ + "pxefile_addr_r=0x86000000\0" \ "scriptaddr=0x80000000\0" \ "bootm_size=0x10000000\0" \ "boot_mmc_dev=0\0" \