Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10663
-gerrit
commit 05e50c2521a98dbb8fbb6afcd3f97d0b75e3c279 Author: Martin Roth gaumless@gmail.com Date: Thu Jun 25 09:36:27 2015 -0600
IASL: Enable warnings as errors
Change-Id: If0da0ac709bd8c0e8e2dbd3a498fe6ecb5500a81 Signed-off-by: Martin Roth gaumless@gmail.com --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc index 65aa71c..f5dde5b 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -196,7 +196,7 @@ cbfs-files-$(if $(2),$(2),y) += $(call strip_quotes,$(CONFIG_CBFS_PREFIX))/$(1). $(obj)/$(1).aml: $(src)/mainboard/$(MAINBOARDDIR)/$(1).asl $(obj)/config.h @printf " IASL $$(subst $(top)/,,$$(@))\n" $(CC_ramstage) -x assembler-with-cpp -E -MMD -MT $$(@) $$(CPPFLAGS_ramstage) -D__ACPI__ -P -include $(src)/include/kconfig.h -I$(obj) -I$(src) -I$(src)/include -I$(src)/arch/$(ARCHDIR-$(ARCH-ramstage-y))/include -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$@ - cd $$(dir $$@); $(IASL) -p $$(notdir $$@) $$(notdir $$@) + cd $$(dir $$@); $(IASL) -we -p $$(notdir $$@) $$(notdir $$@) endef
#######################################################################