drivers/pc80/rtc: Fix linking verstage (and use `all` target)
`option.c` was already linked into verstage but needs `mc146818rtc.c` to work. While we are at it, also make use of the `all` target. Change-Id: I8f545e036962ed0716bcd3b9a5b5d06e18a367f6 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45802 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
1a43de16bb
commit
d09064e432
|
@ -1,29 +1,14 @@
|
||||||
ifeq ($(CONFIG_ARCH_X86),y)
|
ifeq ($(CONFIG_ARCH_X86),y)
|
||||||
|
|
||||||
bootblock-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c
|
all-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c
|
||||||
verstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c
|
|
||||||
postcar-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c
|
|
||||||
romstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c
|
|
||||||
ramstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc_boot.c
|
|
||||||
|
|
||||||
bootblock-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
all-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
||||||
postcar-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
smm-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
||||||
romstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
|
||||||
ramstage-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
|
||||||
smm-$(CONFIG_DRIVERS_MC146818) += mc146818rtc.c
|
|
||||||
|
|
||||||
bootblock-$(CONFIG_USE_OPTION_TABLE) += option.c
|
all-$(CONFIG_USE_OPTION_TABLE) += option.c
|
||||||
verstage-$(CONFIG_USE_OPTION_TABLE) += option.c
|
smm-$(CONFIG_USE_OPTION_TABLE) += option.c
|
||||||
postcar-$(CONFIG_USE_OPTION_TABLE) += option.c
|
|
||||||
romstage-$(CONFIG_USE_OPTION_TABLE) += option.c
|
|
||||||
ramstage-$(CONFIG_USE_OPTION_TABLE) += option.c
|
|
||||||
smm-$(CONFIG_USE_OPTION_TABLE) += option.c
|
|
||||||
|
|
||||||
bootblock-$(CONFIG_CMOS_POST) += post.c
|
all-$(CONFIG_CMOS_POST) += post.c
|
||||||
verstage-$(CONFIG_CMOS_POST) += post.c
|
|
||||||
postcar-$(CONFIG_CMOS_POST) += post.c
|
|
||||||
romstage-$(CONFIG_CMOS_POST) += post.c
|
|
||||||
ramstage-$(CONFIG_CMOS_POST) += post.c
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_USE_OPTION_TABLE),y)
|
ifeq ($(CONFIG_USE_OPTION_TABLE),y)
|
||||||
cbfs-files-$(CONFIG_HAVE_CMOS_DEFAULT) += cmos.default
|
cbfs-files-$(CONFIG_HAVE_CMOS_DEFAULT) += cmos.default
|
||||||
|
|
Loading…
Reference in New Issue