From: Michal Simek Date: Thu, 12 Feb 2015 11:55:18 +0000 (+0100) Subject: zynqmp: Fix xen command which contains too many blank chars X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=79246ca65d42910c172ba8656224426e4d001186;p=thirdparty%2Fu-boot.git zynqmp: Fix xen command which contains too many blank chars Just consmetical change. Wrong output: xen=tftpb $fdt_addr system.dtb && fdt addr $fdt_addr && fdt resize && tftpb 0x80000 Image && fdt set /chosen/dom0 reg <0x80000 0x$filesize> && tftpb 6000000 xen.ub && bootm 6000000 - $fdt_addr Correct one: xen=tftpb $fdt_addr system.dtb && fdt addr $fdt_addr && fdt resize && tftpb 0x80000 Image && fdt set /chosen/dom0 reg <0x80000 0x$filesize> && tftpb 6000000 xen.ub && bootm 6000000 - $fdt_addr Signed-off-by: Michal Simek --- diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index 6280a1d6fa9..9fdc99beafe 100644 --- a/include/configs/xilinx_zynqmp.h +++ b/include/configs/xilinx_zynqmp.h @@ -132,10 +132,10 @@ "sf read 80000 140000 1800000 && booti 80000 - $fdt_addr\0" \ "sdboot=mmcinfo && fatload mmc 0:0 $fdt_addr system.dtb && " \ "fatload mmc 0:0 f000000 Image && booti 80000 - $fdt_addr\0" \ - "xen=tftpb $fdt_addr system.dtb && fdt addr $fdt_addr && fdt resize && \ - tftpb 0x80000 Image && \ - fdt set /chosen/dom0 reg <0x80000 0x$filesize> && \ - tftpb 6000000 xen.ub && bootm 6000000 - $fdt_addr\0" \ + "xen=tftpb $fdt_addr system.dtb && fdt addr $fdt_addr && fdt resize && " \ + "tftpb 0x80000 Image && " \ + "fdt set /chosen/dom0 reg <0x80000 0x$filesize> && "\ + "tftpb 6000000 xen.ub && bootm 6000000 - $fdt_addr\0" \ "jtagboot=tftpboot 10000000 image.ub && bootm\0" #define CONFIG_BOOTARGS "setenv bootargs console=ttyPS0,${baudrate} " \