[coreboot-gerrit] New patch to review for coreboot: Makefile.inc: Strip CONFIG_DEVICETREE quotes at top of makefile

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Tue Aug 9 00:20:38 CEST 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16116

-gerrit

commit 6ea4f4f2a99b65901348bccccc6705de7d995f49
Author: Martin Roth <martinroth at chromium.org>
Date:   Mon Aug 8 15:12:11 2016 -0600

    Makefile.inc: Strip CONFIG_DEVICETREE quotes at top of makefile
    
    Minor change - Instead of stripping the quotes from CONFIG_DEVICETREE
    inline, add it to the location where we normalize all the other Kconfig
    variables.
    
    Change-Id: Idbc58179c7b45160afef7d7e44f9b3b334f8c4a7
    Signed-off-by: Martin Roth <martinroth at chromium.org>
---
 Makefile.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.inc b/Makefile.inc
index 7252bcc..d578dd5 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -19,6 +19,7 @@ GIT:=$(shell [ -e "$(top)/.git" ] && command -v git)
 # normalize Kconfig variables in a central place
 CONFIG_CBFS_PREFIX:=$(call strip_quotes,$(CONFIG_CBFS_PREFIX))
 CONFIG_FMDFILE:=$(call strip_quotes,$(CONFIG_FMDFILE))
+CONFIG_DEVICETREE:=$(call strip_quotes, $(CONFIG_DEVICETREE))
 
 #######################################################################
 # misleadingly named, this is the coreboot version
@@ -451,7 +452,7 @@ $(obj)/config.h: $(objutil)/kconfig/conf
 #######################################################################
 # needed objects that every mainboard uses
 # Creation of these is architecture and mainboard independent
-DEVICETREE_FILE := $(src)/mainboard/$(MAINBOARDDIR)/$(call strip_quotes, $(CONFIG_DEVICETREE))
+DEVICETREE_FILE := $(src)/mainboard/$(MAINBOARDDIR)/$(CONFIG_DEVICETREE)
 DEVICETREE_STATIC_C := $(obj)/mainboard/$(MAINBOARDDIR)/static.c
 
 $(DEVICETREE_STATIC_C): $(DEVICETREE_FILE) $(objutil)/sconfig/sconfig



More information about the coreboot-gerrit mailing list