Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/74144 )
Change subject: soc/amd/stoneyridge/Makefile: use all target for more compilation units ......................................................................
soc/amd/stoneyridge/Makefile: use all target for more compilation units
monotonic_timer.c, tsc_freq.c and uart.c get added to all stage targets, so just add those to the all stage targets. They still need to be added to the smm stage target, since the all target doesn't add things to the smm stage.
TEST=Timeless build results in identical image for Gardenia.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I16c02bc0ff54553f212b94d110abef6a7bdedbb4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74144 Reviewed-by: Martin Roth martin.roth@amd.corp-partner.google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/amd/stoneyridge/Makefile.inc 1 file changed, 23 insertions(+), 15 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved
diff --git a/src/soc/amd/stoneyridge/Makefile.inc b/src/soc/amd/stoneyridge/Makefile.inc index 656fa2e..1e8e794 100644 --- a/src/soc/amd/stoneyridge/Makefile.inc +++ b/src/soc/amd/stoneyridge/Makefile.inc @@ -5,15 +5,12 @@ subdirs-y += ../../../cpu/amd/mtrr/
bootblock-y += aoac.c -bootblock-y += uart.c bootblock-y += BiosCallOuts.c bootblock-y += bootblock.c bootblock-y += early_fch.c bootblock-y += gpio.c bootblock-y += i2c.c bootblock-y += enable_usbdebug.c -bootblock-y += monotonic_timer.c -bootblock-y += tsc_freq.c
romstage-y += BiosCallOuts.c romstage-y += i2c.c @@ -21,24 +18,15 @@ romstage-y += enable_usbdebug.c romstage-y += fch_agesa.c romstage-y += gpio.c -romstage-y += monotonic_timer.c romstage-y += smbus_spd.c romstage-y += memmap.c -romstage-y += uart.c -romstage-y += tsc_freq.c romstage-y += psp.c
verstage-y += gpio.c verstage-y += i2c.c -verstage-y += monotonic_timer.c -verstage-y += uart.c -verstage-y += tsc_freq.c
-postcar-y += monotonic_timer.c -postcar-y += uart.c postcar-y += memmap.c postcar-$(CONFIG_VBOOT_MEASURED_BOOT) += i2c.c -postcar-y += tsc_freq.c
ramstage-y += BiosCallOuts.c ramstage-y += i2c.c @@ -51,16 +39,16 @@ ramstage-y += fch_agesa.c ramstage-y += gpio.c ramstage-y += graphics.c -ramstage-y += monotonic_timer.c ramstage-y += northbridge.c ramstage-y += sata.c ramstage-y += memmap.c -ramstage-y += uart.c ramstage-y += usb.c -ramstage-y += tsc_freq.c ramstage-y += psp.c
+all-y += monotonic_timer.c all-y += reset.c +all-y += tsc_freq.c +all-y += uart.c
smm-y += monotonic_timer.c smm-y += smihandler.c