From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Kocialkowski Date: Sat, 26 Mar 2016 12:20:00 +0100 Subject: [U-Boot] [PATCH 2/6] kc1: Move PXE file address to a viable location In-Reply-To: <1458991204-22798-1-git-send-email-contact@paulk.fr> References: <1458991204-22798-1-git-send-email-contact@paulk.fr> Message-ID: <1458991204-22798-2-git-send-email-contact@paulk.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- 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" \ -- 2.7.4