diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-07-25 16:11:36 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-07-26 19:30:01 +0000 |
commit | 5ce0fe117626b10f327fe279f64856cde575946c (patch) | |
tree | 15cf66c456de8e82f19b1615aa11adf01e668ee6 /src/drivers/pc80/rtc/Makefile.inc | |
parent | a81f32192486952979d505e51ba6ae7a7d30e91d (diff) |
Port cmos.default handling to C environment bootblock
Gather related code in the new file drivers/pc80/rtc/mc146818rtc_boot.c,
call sanitize_cmos() from C environment bootblock.
Change-Id: Ia5c64de208a5986299c0508d0e11eeb8473deef1
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/20768
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/drivers/pc80/rtc/Makefile.inc')
-rw-r--r-- | src/drivers/pc80/rtc/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/pc80/rtc/Makefile.inc b/src/drivers/pc80/rtc/Makefile.inc index eb65bf5da4..998b7e7dbd 100644 --- a/src/drivers/pc80/rtc/Makefile.inc +++ b/src/drivers/pc80/rtc/Makefile.inc @@ -1,5 +1,6 @@ ifeq ($(CONFIG_ARCH_X86),y) +bootblock-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c bootblock-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c postcar-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c romstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c |