Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10712
-gerrit
commit 92879d378cb5f1cdbbf1ac99fcac772bfb027925
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 14:28:25 2015 -0700
libpayload: Makefile: Use variables defined for Kconfig
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Change-Id: Ia451e8250307ad1944cb0429bdfee4bdf18c706b
---
payloads/libpayload/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile
index dd538dd..1c3cd8d 100644
--- a/payloads/libpayload/Makefile
+++ b/payloads/libpayload/Makefile
@@ -45,7 +45,7 @@ endif
export top := $(CURDIR)
export src := src
-export srck := $(top)/../../util/kconfig
+export srck := $(abspath $(top)/../../util/kconfig)
export obj ?= build
export objutil ?= $(obj)/util
export objk := $(objutil)/lp_kconfig
@@ -92,7 +92,7 @@ all: real-all
# This include must come _before_ the pattern rules below!
# Order _does_ matter for pattern rules.
-include ../../util/kconfig/Makefile
+include $(srck)/Makefile
include $(HAVE_DOTCONFIG)
Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10716
-gerrit
commit 6d6168b90953761a35157f87cf36ac0befb011bd
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 16:45:57 2015 -0700
kconfig: Fix defconfig targets
The syntax of "conf" has changed, but we never adapted
our Kconfig Makefile since we are not typically using those
targets (except for coreinfo)
Change-Id: Ib95b53d255d7456cc6d6bcc7048fcaa0db1ce142
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
---
util/kconfig/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile
index eb9e38c..ab74113 100644
--- a/util/kconfig/Makefile
+++ b/util/kconfig/Makefile
@@ -91,14 +91,14 @@ savedefconfig: $(objk)/conf
defconfig: $(objk)/conf
ifeq ($(KBUILD_DEFCONFIG),)
- $< -d $(Kconfig)
+ $< --defconfig $(Kconfig)
else
@echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
- $< -D $(KBUILD_DEFCONFIG) $(Kconfig)
+ $< --defconfig=$(KBUILD_DEFCONFIG) $(Kconfig)
endif
%_defconfig: $(objk)/conf
- $< -D configs/$@ $(Kconfig)
+ $< --defconfig=configs/$@ $(Kconfig)
# Help text used by make help
help:
Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10716
-gerrit
commit 77ccd709ef5027c24c50c168471e0f02bab37ce5
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 16:45:57 2015 -0700
kconfig: Fix defconfig targets
The syntax of "conf" has changed, but we never adapted
our Kconfig Makefile since we are not typically using those
targets (except for coreinfo)
Change-Id: Ib95b53d255d7456cc6d6bcc7048fcaa0db1ce142
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
---
util/kconfig/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile
index eb9e38c..ab74113 100644
--- a/util/kconfig/Makefile
+++ b/util/kconfig/Makefile
@@ -91,14 +91,14 @@ savedefconfig: $(objk)/conf
defconfig: $(objk)/conf
ifeq ($(KBUILD_DEFCONFIG),)
- $< -d $(Kconfig)
+ $< --defconfig $(Kconfig)
else
@echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
- $< -D $(KBUILD_DEFCONFIG) $(Kconfig)
+ $< --defconfig=$(KBUILD_DEFCONFIG) $(Kconfig)
endif
%_defconfig: $(objk)/conf
- $< -D configs/$@ $(Kconfig)
+ $< --defconfig=configs/$@ $(Kconfig)
# Help text used by make help
help: