Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3057
-gerrit
commit 1d7455b3f6de516f598c314eda7559126d5482f6 Author: Stefan Reinauer reinauer@chromium.org Date: Mon Apr 8 16:43:25 2013 -0700
ChromeEC: Drop unneeded Kconfig variable EC_GOOGLE_API_ROOT
This used to contain the path for the EC include files, but those files are included in coreboot now.
Signed-off-by: Stefan Reinauer reinauer@google.com BUG=none TEST=emerge-link chromeos-coreboot-link still works BRANCH=none
Change-Id: I4fce9831c5e21b0a69a6295dbda2580e1ca83369 Reviewed-on: https://gerrit.chromium.org/gerrit/47606 Reviewed-by: Randall Spangler rspangler@chromium.org Commit-Queue: Stefan Reinauer reinauer@google.com Tested-by: Stefan Reinauer reinauer@google.com --- src/ec/google/chromeec/Kconfig | 7 ------- src/ec/google/chromeec/Makefile.inc | 2 -- 2 files changed, 9 deletions(-)
diff --git a/src/ec/google/chromeec/Kconfig b/src/ec/google/chromeec/Kconfig index b8d3444..af9dcbc 100644 --- a/src/ec/google/chromeec/Kconfig +++ b/src/ec/google/chromeec/Kconfig @@ -2,10 +2,3 @@ config EC_GOOGLE_CHROMEEC bool help Google's Chrome EC - -config EC_GOOGLE_API_ROOT - depends on EC_GOOGLE_CHROMEEC - string "Path to the EC API include file" - default "/usr/include" - help - Path to the ec API file (ec/ec_commands.h). diff --git a/src/ec/google/chromeec/Makefile.inc b/src/ec/google/chromeec/Makefile.inc index 93ad333..78f3fb5 100644 --- a/src/ec/google/chromeec/Makefile.inc +++ b/src/ec/google/chromeec/Makefile.inc @@ -1,5 +1,3 @@ ramstage-y += ec.c smm-y += ec.c romstage-y += ec.c - -CFLAGS += -I $(call strip_quotes,$(CONFIG_EC_GOOGLE_API_ROOT))