From eb4a4cfc7b6feaf73eefbec12a04a52326584df4 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Mon, 21 Jul 2014 13:28:12 +0200 Subject: [PATCH] zynqmp: Use Image format instead of image.ub Using Image instead of image.ub is better for now because handling around image.ub is not 100% fixed in mainline u-boot and also it takes ages to boot it on ep108. Moving netboot internals to jtagboot for experimental use. Signed-off-by: Michal Simek --- include/configs/xilinx_zynqmp.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index 9f735108b57..729f8c6d75b 100644 --- a/include/configs/xilinx_zynqmp.h +++ b/include/configs/xilinx_zynqmp.h @@ -130,12 +130,10 @@ "initrd_size=0x2000000\0" \ "fdt_addr=0x100000\0" \ "fdt_high=0x10000000\0" \ - "netboot=tftpboot 10000000 image.ub && bootm\0" \ + "netboot=tftpboot 80000 Image && tftpboot f000000 system.dtb && booti 80000 - f000000\0" \ "qspiboot=sf probe 0; sf read 10000000 0 1000000; bootm 10080000\0" \ "sdboot=mmcinfo && fatload mmc 0:0 10000000 image.ub && bootm 10000000\0" \ - "jtagboot=tftpboot 1000000 uImage && " \ - "tftpboot 20000000 system.dtb && " \ - "bootm 1000000 - 20000000\0" + "jtagboot=tftpboot 10000000 image.ub && bootm\0" #define CONFIG_BOOTARGS "console=ttyPS0,115200 earlyprintk=cdns,uart,0xFF000000" #define CONFIG_BOOTCOMMAND "echo Hello Xilinx ZynqMP; run $modeboot" @@ -179,4 +177,7 @@ #define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) +#define CONFIG_CMD_BOOTI +#define CONFIG_CMD_UNZIP + #endif /* __XILINX_ZYNQMP_H */ -- 2.47.3