diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-09 19:41:11 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-09 19:41:11 +0000 |
commit | 967952a102f13825085fdab6e37738d437eca655 (patch) | |
tree | a39106df69dabe569249afefd99c8f92894965f3 /src/arch/i386/Kconfig | |
parent | 4b8a24193512c8889c532e56df7e706c79dec447 (diff) |
Add image updating support. When selecting it, it
expects a coreboot.rom to be available, and adds the files to it.
It has no idea how to replace files, it merely adds them. It only works
with Tinybootblock and the bootblock is immutable.
The "clean" rules allow "make clean-for-update", which
removes everything but coreboot.rom
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@5103 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/Kconfig')
-rw-r--r-- | src/arch/i386/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/i386/Kconfig b/src/arch/i386/Kconfig index d64eb7f28e..bf60039f8f 100644 --- a/src/arch/i386/Kconfig +++ b/src/arch/i386/Kconfig @@ -49,6 +49,16 @@ config BIG_BOOTBLOCK default n if TINY_BOOTBLOCK default y +config UPDATE_IMAGE + bool "Update existing coreboot.rom image" + default n + depends on TINY_BOOTBLOCK + help + If this option is activate, 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. + config ROMCC bool default n |