Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/42572 )
Change subject: [TEST] arch/x86: fail on selected GENERATE_MP_TABLE without mptable.c ......................................................................
[TEST] arch/x86: fail on selected GENERATE_MP_TABLE without mptable.c
Always add mptable.c to ramstage if GENERATE_MP_TABLE is selected in Kconfig.
This is a test to see which boards fail. If some fail, I'll fix those and rebase this patch on top of the fix.
Change-Id: I8d19a6db09881989d7b1e0249f44eb7e9c3f1df6 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/arch/x86/Makefile.inc 1 file changed, 0 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/42572/1
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc index 6297384..1674b76 100644 --- a/src/arch/x86/Makefile.inc +++ b/src/arch/x86/Makefile.inc @@ -281,10 +281,8 @@
ramstage-srcs += $(wildcard src/mainboard/$(MAINBOARDDIR)/mainboard.c) ifeq ($(CONFIG_GENERATE_MP_TABLE),y) -ifneq ($(wildcard src/mainboard/$(MAINBOARDDIR)/mptable.c),) ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/mptable.c endif -endif ifeq ($(CONFIG_GENERATE_PIRQ_TABLE),y) ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/irq_tables.c endif