Change-Id: I3ab62d9b1caa23305ad3b859e3c1949784ae0464 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36533 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
17 lines
319 B
Makefile
17 lines
319 B
Makefile
ifeq ($(CONFIG_ARCH_X86),y)
|
|
|
|
ramstage-y += isa-dma.c
|
|
ramstage-y += i8259.c
|
|
ramstage-y += keyboard.c
|
|
ramstage-$(CONFIG_SPKMODEM) += spkmodem.c
|
|
romstage-$(CONFIG_SPKMODEM) += spkmodem.c
|
|
|
|
bootblock-y += i8254.c
|
|
verstage-y += i8254.c
|
|
romstage-y += i8254.c
|
|
ramstage-y += i8254.c
|
|
postcar-y += i8254.c
|
|
smm-y += i8254.c
|
|
|
|
endif
|