]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
zynqmp: Fix xen command which contains too many blank chars
authorMichal Simek <michal.simek@xilinx.com>
Thu, 12 Feb 2015 11:55:18 +0000 (12:55 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Thu, 12 Feb 2015 11:59:06 +0000 (12:59 +0100)
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 <michal.simek@xilinx.com>
include/configs/xilinx_zynqmp.h

index 6280a1d6fa9e8a88900c69eff99a476681ecaaf9..9fdc99beafe90d34d08d8a9348bbc82f7c4289f1 100644 (file)
                  "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} " \