mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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 <dennis@ausil.us> Cc: Tom Rini <trini@konsulko.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
750461887e
commit
e2a5d55642
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue