From: Wendy Liang Date: Fri, 18 Mar 2016 00:15:15 +0000 (-0700) Subject: ARM64: zynqmp: Change the netboot load address X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=269c3548779d0343574609e8b64d7ef31d38da63;p=thirdparty%2Fu-boot.git ARM64: zynqmp: Change the netboot load address The netboot address to load the FIT image needs to be higher than the address where the kernel is loaded. For ZynqMP, kernel is loaded to 0x80000, the netboot address for the image.ub which is supposed to be the FIT image needs to be higher. Set it to 10000000. Signed-off-by: Wendy Liang Signed-off-by: Michal Simek --- diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index 7a3c12fa8e7..e5d8e634297 100644 --- a/include/configs/xilinx_zynqmp.h +++ b/include/configs/xilinx_zynqmp.h @@ -195,7 +195,7 @@ "fdt set /timer clock-frequency <240000> && " \ "fdt set /amba/i2c_clk clock-frequency <240000> && " \ "booti 80000 - f000000\0" \ - "netboot=tftpboot 80000 image.ub && bootm\0" \ + "netboot=tftpboot 10000000 image.ub && bootm\0" \ "qspiboot=sf probe 0 0 0 && sf read $fdt_addr $fdt_offset $fdt_size && " \ "sf read $kernel_addr $kernel_offset $kernel_size && " \ "booti $kernel_addr - $fdt_addr\0" \