]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
zynqmp: Use Image format instead of image.ub
authorMichal Simek <michal.simek@xilinx.com>
Mon, 21 Jul 2014 11:28:12 +0000 (13:28 +0200)
committerMichal Simek <michal.simek@xilinx.com>
Tue, 22 Jul 2014 09:48:15 +0000 (11:48 +0200)
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 <michal.simek@xilinx.com>
include/configs/xilinx_zynqmp.h

index 9f735108b577b70690b988dbf11e4e4a9ca45441..729f8c6d75be8940cec8025a934bd5fb4f95e8d0 100644 (file)
        "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"
 
 #define CONFIG_SYS_BOOTM_LEN   (60 * 1024 * 1024)
 
+#define CONFIG_CMD_BOOTI
+#define CONFIG_CMD_UNZIP
+
 #endif /* __XILINX_ZYNQMP_H */