Nico Huber has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/33324 )
Change subject: arch/x86/Kconfig: Hide the prefix option on all but BOOTBLOCK_NORMAL ......................................................................
arch/x86/Kconfig: Hide the prefix option on all but BOOTBLOCK_NORMAL
Change-Id: Icf5e8fa18bea1cdfb85b8a4999d8fccea94d16b9 Signed-off-by: Arthur Heymans arthur@aheymans.xyz Reviewed-on: https://review.coreboot.org/c/coreboot/+/33324 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nico Huber nico.h@gmx.de --- M src/Kconfig M src/arch/x86/Kconfig 2 files changed, 7 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved
diff --git a/src/Kconfig b/src/Kconfig index 5d74d67..72d826f 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -32,8 +32,13 @@ the coreboot version number, so that you can easily distinguish boot logs of different boards from each other.
+config CONFIGURABLE_CBFS_PREFIX + bool + help + Select this to prompt to use to configure the prefix for cbfs files. + config CBFS_PREFIX - string "CBFS prefix to use" + string "CBFS prefix to use" if CONFIGURABLE_CBFS_PREFIX default "fallback" help Select the prefix to all files put into the image. It's "fallback" diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index 827c1cb..5b1304f 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -247,6 +247,7 @@ bool "Always load fallback"
config BOOTBLOCK_NORMAL + select CONFIGURABLE_CBFS_PREFIX bool "Switch to normal if CMOS says so"
endchoice