diff options
author | Furquan Shaikh <furquan@google.com> | 2014-05-06 18:00:19 -0700 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-10 14:32:26 +0200 |
commit | a3b06c99d066600c3462fe5fdebc5006cb9631ea (patch) | |
tree | a60d8f1b93e571cfbca4e8d1576b207c5e7d30e4 /src/Kconfig | |
parent | 5c3f384f064f5c05945d561784fd7e8ef002a295 (diff) |
Arch-level Kconfig menu cleanup
Remove arch-level Kconfig menu option as it shows all available architectures in
make menuconfig. Instead pull the bootblock options for choice and update image
to top-level Kconfig since it is already present for both x86 and arm.
Change-Id: Iab9c4539f05cd54a7f751565fefcaf7b6f0edc86
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: http://review.coreboot.org/5673
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 48e688f8ed..30f996d228 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -242,6 +242,32 @@ source src/arch/armv7/Kconfig source src/vendorcode/Kconfig +choice + prompt "Bootblock behaviour" + default BOOTBLOCK_SIMPLE + +config BOOTBLOCK_SIMPLE + bool "Always load fallback" + +config BOOTBLOCK_NORMAL + bool "Switch to normal if CMOS says so" + +endchoice + +config BOOTBLOCK_SOURCE + string + default "bootblock_simple.c" if BOOTBLOCK_SIMPLE + default "bootblock_normal.c" if BOOTBLOCK_NORMAL + +config UPDATE_IMAGE + bool "Update existing coreboot.rom image" + default n + help + If this option is enabled, no new coreboot.rom file + is created. Instead it is expected that there already + is a suitable file for further processing. + The bootblock will not be modified. + menu "Chipset" comment "CPU" |