Nico Huber (nico.h@gmx.de) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17123
-gerrit
commit 1727128d6bb3a1d7aa380f044ec981fefb0737e6 Author: Nico Huber nico.huber@secunet.com Date: Tue Oct 25 15:38:55 2016 +0200
ec/acpi: Include ec.c unconditionally in romstage
Dependencies on EC code should be specified at board level and not here. We can include the file unconditionally in romstage and let the linker decide if it's needed.
Change-Id: Ie2d1970ac1dd175a9d42651573a88cd866f19cb9 Signed-off-by: Nico Huber nico.huber@secunet.com --- src/ec/acpi/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ec/acpi/Makefile.inc b/src/ec/acpi/Makefile.inc index efdd4b1..34fc307 100644 --- a/src/ec/acpi/Makefile.inc +++ b/src/ec/acpi/Makefile.inc @@ -1,7 +1,7 @@ ifeq ($(CONFIG_EC_ACPI),y)
ramstage-y += ec.c +romstage-y += ec.c smm-$(CONFIG_HAVE_SMI_HANDLER) += ec.c -romstage-$(CONFIG_BOARD_LENOVO_X201) += ec.c
endif