diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-08-12 08:31:16 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-20 11:35:08 -0400 |
commit | 269592719860245f3b3ba3fe48c6cb6c3cabdbb6 (patch) | |
tree | 6d8416fda3adfba768656e500c52780be0b2dc4b /cmd | |
parent | 5db28905c952560843212236963e9f711341cad5 (diff) |
cmd: booti: move CONFIG_CMD_BOOTI to Kconfig
This command is used to boot ARM64 Linux.
I made DISTRO_DEFAULTS select this option for ARM64 to respect
include/config_distro_defaults.h.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index d69b817c827..e21924639fa 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -165,6 +165,13 @@ config CMD_BOOTZ help Boot the Linux zImage +config CMD_BOOTI + bool "booti" + depends on ARM64 + default y + help + Boot an AArch64 Linux Kernel image from memory. + config CMD_BOOTEFI bool "bootefi" depends on EFI_LOADER |