3e4e303858
coreboot tables are, unlike general system tables, a platform independent concept. Hence, use the same code for coreboot table generation on all platforms. lib/coreboot_tables.c is based on the x86 version of the file, because some important fixes were missed on the ARMv7 version lately. Change-Id: Icc38baf609f10536a320d21ac64408bef44bb77d Signed-off-by: Stefan Reinauer <reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/2863 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Aaron Durbin <adurbin@google.com> Tested-by: build bot (Jenkins)
15 lines
611 B
Makefile
15 lines
611 B
Makefile
ramstage-y += boot.c
|
|
ramstage-$(CONFIG_MULTIBOOT) += multiboot.c
|
|
ramstage-y += gdt.c
|
|
ramstage-y += tables.c
|
|
ramstage-$(CONFIG_GENERATE_MP_TABLE) += mpspec.c
|
|
ramstage-$(CONFIG_GENERATE_PIRQ_TABLE) += pirq_routing.c
|
|
ramstage-$(CONFIG_GENERATE_ACPI_TABLES) += acpi.c
|
|
ramstage-$(CONFIG_GENERATE_SMBIOS_TABLES) += smbios.c
|
|
ramstage-$(CONFIG_GENERATE_ACPI_TABLES) += acpigen.c
|
|
ramstage-$(CONFIG_HAVE_ACPI_RESUME) += wakeup.S
|
|
ramstage-$(CONFIG_RELOCATABLE_RAMSTAGE) += ramstage_module_header.c
|
|
|
|
$(obj)/arch/x86/boot/coreboot_table.ramstage.o : $(OPTION_TABLE_H)
|
|
$(obj)/arch/x86/boot/smbios.ramstage.o: $(obj)/build.h
|
|
|