diff options
author | Tom Rini <trini@konsulko.com> | 2016-08-12 08:31:17 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-20 11:35:08 -0400 |
commit | a391d5004ea381c3496c8dc3498031aeebdabc9a (patch) | |
tree | 480212daa04776130300052971e00bfa102df3a1 /Kconfig | |
parent | 269592719860245f3b3ba3fe48c6cb6c3cabdbb6 (diff) | |
download | u-boot-a391d5004ea381c3496c8dc3498031aeebdabc9a.tar.gz |
Kconfig: DISTRO_DEFAULTS: Only enable CMD_BOOTZ for ARM
The 'bootz' command is really only for ARM32 Linux Kernel 'zImage' files
but has also been adapted for testing with sandbox. Given that sandbox
is a test platform, don't add that logic under DISTRO_DEFAULTS.
Cc: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ config DISTRO_DEFAULTS bool "Select defaults suitable for booting general purpose Linux distributions" default y if ARCH_SUNXI default n - select CMD_BOOTZ + select CMD_BOOTZ if ARM && !ARM64 select CMD_BOOTI if ARM64 select CMD_DHCP select CMD_EXT2 |