diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-10-06 13:34:20 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-10-08 11:40:25 +0000 |
commit | 6010eb27c9075549c84020c7f50a6b0ded19dc2d (patch) | |
tree | df8e06bc29d4e789552b43918a3e2387eb035155 /src/Kconfig | |
parent | 2a0fbe34ba037a5064b3becea2b6c6e1005926ff (diff) |
arch/x86: Add a choice for selecting normal/fallback cbfs prefix
Setting the cbfs prefix is prone to error. Therefore add a Kconfig
choice for 2 common values, fallback and normal, while still keeping
the ability to specify an arbitrary value.
Change-Id: I04222120bd1241c3b0996afa27dcc35ac42fbbc8
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35822
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/src/Kconfig b/src/Kconfig index 8fcb3ae8a3..4c71f285eb 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -37,9 +37,26 @@ config CONFIGURABLE_CBFS_PREFIX help Select this to prompt to use to configure the prefix for cbfs files. +choice + prompt "CBFS prefix to use" + depends on CONFIGURABLE_CBFS_PREFIX + default CBFS_PREFIX_FALLBACK + +config CBFS_PREFIX_FALLBACK + bool "fallback" + +config CBFS_PREFIX_NORMAL + bool "normal" + +config CBFS_PREFIX_DIY + bool "Define your own cbfs prefix" + +endchoice + config CBFS_PREFIX - string "CBFS prefix to use" if CONFIGURABLE_CBFS_PREFIX - default "fallback" + string "CBFS prefix to use" if CBFS_PREFIX_DIY + default "fallback" if !CONFIGURABLE_CBFS_PREFIX || CBFS_PREFIX_FALLBACK + default "normal" if CBFS_PREFIX_NORMAL help Select the prefix to all files put into the image. It's "fallback" by default, "normal" is a common alternative. |