summaryrefslogtreecommitdiff
path: root/payloads/external
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-04-22 12:18:02 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-04-23 10:21:46 +0000
commitd61c5ea7f5cc87a58db3d0d004b94dfab3897ac1 (patch)
tree1b1c263053d2aaeaba558ce1c327c3cea3d57e6c /payloads/external
parent00dbf449c929933d7cdb31140d609269c68d3671 (diff)
downloadcoreboot-d61c5ea7f5cc87a58db3d0d004b94dfab3897ac1.tar.xz
linuxboot/Kconfig: Remove symbol name of a `choice`
Kconfig somehow adds spurious booleans for each alternative when the choice itself has a name. That's fixed simply by removing the name. Change-Id: Ic35f0697f1f7bb92c12414c17a8790464b376012 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32390 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Diffstat (limited to 'payloads/external')
-rw-r--r--payloads/external/LinuxBoot/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/LinuxBoot/Kconfig b/payloads/external/LinuxBoot/Kconfig
index ccf62b8237..84af49ccc0 100644
--- a/payloads/external/LinuxBoot/Kconfig
+++ b/payloads/external/LinuxBoot/Kconfig
@@ -123,7 +123,7 @@ config LINUXBOOT_KERNEL_CONFIGFILE
Note: this can be a defconfig file or a complete .config file.
-choice LINUXBOOT_KERNEL_FORMAT
+choice
prompt "Kernel binary format"
default LINUXBOOT_KERNEL_BZIMAGE if LINUXBOOT_X86 || LINUXBOOT_X86_64
default LINUXBOOT_KERNEL_UIMAGE if LINUXBOOT_ARM64