diff options
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 865f7f5c5b..35628877f7 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -248,6 +248,7 @@ config FLASHMAP_OFFSET help Offset of flash map in firmware image +# TODO: This doesn't belong here, move to src/arch/x86/Kconfig choice prompt "Bootblock behaviour" default BOOTBLOCK_SIMPLE @@ -260,6 +261,12 @@ config BOOTBLOCK_NORMAL endchoice +# To be selected by arch, SoC or mainboard if it does not want use the normal +# src/lib/bootblock.c#main() C entry point. +config BOOTBLOCK_CUSTOM + bool + default n + config BOOTBLOCK_SOURCE string default "bootblock_simple.c" if BOOTBLOCK_SIMPLE |