diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2011-01-14 08:36:34 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2011-01-14 08:36:34 +0000 |
commit | c3dc8f8ebc57f35132687a1a1a201ef08063c195 (patch) | |
tree | 387a7da75d233770821b0955168360912991c994 /src/arch/x86 | |
parent | ef3296542a1a1883e8a0f5a05992b2db5b507f2c (diff) |
Disable CMOS recovery code for ROMCC boards as the CBFS code used for
that feature is not ROMCC compatible.
Fixes build errors introduced in r6253.
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Patrick Georgi <patrick.georgi@secunet.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6255 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index aacc0982a6..3684c69e27 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -91,8 +91,14 @@ config PC80_SYSTEM config BOOTBLOCK_NORTHBRIDGE_INIT string +config USE_CMOS_RECOVERY + bool + default n if ROMCC + default y + config HAVE_CMOS_DEFAULT def_bool n + depends on USE_CMOS_RECOVERY config CMOS_DEFAULT_FILE string |