Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/74153 )
Change subject: drivers/pc80/pc/Makefile: use all_x86 make target ......................................................................
drivers/pc80/pc/Makefile: use all_x86 make target
Use the newly introduced 'all_x86' make target to add the compilation unit to all stages that run on the x86 cores, but not to verstage on PSP.
TEST=Timeless build for Mandolin results in identical image.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I23c6977ae8acebb8dcd546f86f7f7b677272a6cb Reviewed-on: https://review.coreboot.org/c/coreboot/+/74153 Reviewed-by: Matt DeVillier matt.devillier@amd.corp-partner.google.com Reviewed-by: Fred Reitberger reitbergerfred@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/drivers/pc80/pc/Makefile.inc 1 file changed, 21 insertions(+), 5 deletions(-)
Approvals: build bot (Jenkins): Verified Fred Reitberger: Looks good to me, approved Matt DeVillier: Looks good to me, approved
diff --git a/src/drivers/pc80/pc/Makefile.inc b/src/drivers/pc80/pc/Makefile.inc index 63ed998..7cf2957 100644 --- a/src/drivers/pc80/pc/Makefile.inc +++ b/src/drivers/pc80/pc/Makefile.inc @@ -6,11 +6,7 @@ ramstage-$(CONFIG_SPKMODEM) += spkmodem.c romstage-$(CONFIG_SPKMODEM) += spkmodem.c
-bootblock-y += i8254.c -verstage_x86-y += i8254.c -romstage-y += i8254.c -ramstage-y += i8254.c -postcar-y += i8254.c +all_x86-y += i8254.c smm-y += i8254.c
endif