public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] config: Use booti instead of bootz on 64-bit ARM
@ 2015-03-20 11:56 Thierry Reding
  2015-03-20 16:17 ` Stephen Warren
  2015-03-28 18:09 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: Thierry Reding @ 2015-03-20 11:56 UTC (permalink / raw)
  To: u-boot

From: Thierry Reding <treding@nvidia.com>

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 <dennis@ausil.us>
Cc: Tom Rini <trini@konsulko.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
 include/config_distro_defaults.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/config_distro_defaults.h b/include/config_distro_defaults.h
index 1ecc0bb0a99d..f4a01ba80642 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
-- 
2.3.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-03-28 18:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-20 11:56 [U-Boot] [PATCH] config: Use booti instead of bootz on 64-bit ARM Thierry Reding
2015-03-20 16:17 ` Stephen Warren
2015-03-20 17:07   ` Tom Rini
2015-03-23 19:44     ` Stephen Warren
2015-03-28 18:09 ` [U-Boot] " Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox