]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
vexpress64: use uncompressed kernel by default
authorLinus Walleij <linus.walleij@linaro.org>
Wed, 27 May 2015 07:45:39 +0000 (09:45 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 28 May 2015 12:18:22 +0000 (08:18 -0400)
The foundation model (FVP) emulator nominally boots using
a clean, uncompressed kernel and the "booti" command. Augment
the default U-Boot script to do this.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
include/configs/vexpress_aemv8a.h

index 2b41fc5e361e0640405ae0815341a29db5656b7b..f7bb7236b73d072b29c4032ec006244aab70bb26 100644 (file)
 
 #elif CONFIG_TARGET_VEXPRESS64_BASE_FVP
 #define CONFIG_EXTRA_ENV_SETTINGS      \
-                               "kernel_name=uImage\0"          \
+                               "kernel_name=Image\0"           \
                                "kernel_addr=0x80000000\0"      \
                                "initrd_name=ramdisk.img\0"     \
                                "initrd_addr=0x88000000\0"      \
                                "loglevel=9"
 
 #define CONFIG_BOOTCOMMAND     "smhload ${kernel_name} ${kernel_addr}; " \
-                               "smhload ${fdt_name} $fdt_addr; " \
-                               "smhload ${initrd_name} $initrd_addr initrd_end; " \
-                               "fdt addr $fdt_addr; fdt resize; " \
-                               "fdt chosen $initrd_addr $initrd_end; " \
-                               "bootm $kernel_addr - $fdt_addr"
+                               "smhload ${fdt_name} ${fdt_addr}; " \
+                               "smhload ${initrd_name} ${initrd_addr} initrd_end; " \
+                               "fdt addr ${fdt_addr}; fdt resize; " \
+                               "fdt chosen ${initrd_addr} ${initrd_end}; " \
+                               "booti $kernel_addr - $fdt_addr"
 
 #define CONFIG_BOOTDELAY               1