From: Thierry Reding Date: Fri, 20 Mar 2015 11:56:17 +0000 (+0100) Subject: config: Use booti instead of bootz on 64-bit ARM X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fu-boot.git;a=commitdiff_plain;h=e2a5d55642712f3c5a95b148cd1c94be801c4c4f config: Use booti instead of bootz on 64-bit ARM The bootz command doesn't work with Linux kernel images on 64-bit ARM. The replacement command with the same interface and functionality is booti. Cc: Dennis Gilmore Cc: Tom Rini Signed-off-by: Thierry Reding --- diff --git a/include/config_distro_defaults.h b/include/config_distro_defaults.h index 1ecc0bb0a9..f4a01ba806 100644 --- a/include/config_distro_defaults.h +++ b/include/config_distro_defaults.h @@ -31,7 +31,11 @@ #define CONFIG_OF_LIBFDT +#ifdef CONFIG_ARM64 +#define CONFIG_CMD_BOOTI +#else #define CONFIG_CMD_BOOTZ +#endif #define CONFIG_CMD_DHCP #define CONFIG_CMD_ELF #define CONFIG_CMD_EXT2