diff options
-rw-r--r-- | src/arch/x86/Kconfig | 1 | ||||
-rw-r--r-- | src/drivers/pc80/rtc/Makefile.inc | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index e117deb924..cd5f8e5180 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -149,6 +149,7 @@ config BOOTBLOCK_SAVE_BIST_AND_TIMESTAMP config HAVE_CMOS_DEFAULT def_bool n + depends on HAVE_OPTION_TABLE config CMOS_DEFAULT_FILE string diff --git a/src/drivers/pc80/rtc/Makefile.inc b/src/drivers/pc80/rtc/Makefile.inc index 7d8ed50589..5edb59bb1a 100644 --- a/src/drivers/pc80/rtc/Makefile.inc +++ b/src/drivers/pc80/rtc/Makefile.inc @@ -6,9 +6,11 @@ romstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c ramstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_early.c ramstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c +ifeq ($(CONFIG_USE_OPTION_TABLE),y) cbfs-files-$(CONFIG_HAVE_CMOS_DEFAULT) += cmos.default cmos.default-file = $(CONFIG_CMOS_DEFAULT_FILE):nvramtool cmos.default-type = cmos_default +endif smm-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c |