diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-09 19:35:16 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-09 19:35:16 +0000 |
commit | 4b8a24193512c8889c532e56df7e706c79dec447 (patch) | |
tree | 590433bd432d309846be622787fe79f18aa3b881 /src/Kconfig | |
parent | f64b42ed7a0ec95e275b78e6a6c453aa523d9ee0 (diff) | |
download | coreboot-4b8a24193512c8889c532e56df7e706c79dec447.tar.xz |
Allow building images with different prefixes (ie. normal/romstage,
helloWorld/romstage, ...).
It defaults to fallback/, so there's no user visible change now.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5102 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
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 a9d8ce1a71..675446ba6e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -39,6 +39,13 @@ config LOCALVERSION the coreboot version number, so that you can easily distinguish boot logs of different boards from each other. +config CBFS_PREFIX + string "CBFS prefix to use" + default "fallback" + help + Select the prefix to all files put into the image. It's "fallback" + by default, "normal" is a common alternative. + endmenu source src/mainboard/Kconfig |