diff options
author | Martin Roth <martinroth@google.com> | 2016-08-01 19:25:33 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-03 18:12:06 +0200 |
commit | 47ca65a791e7fd5b1c618240b5bac1f5a482ccfb (patch) | |
tree | 053acae2631acd2428ae61f420ca9aa98082a58d /payloads/coreinfo | |
parent | 5fafc6ad540c12776d2cafa5bef0f5fca5b1e977 (diff) |
payloads/coreinfo: Set KCONFIG_CONFIG value
The KCONFIG_CONFIG value was previously keeping the value set by
coreboot's makefile. That caused it to overwrite coreboot's .config,
making the current coreinfo build and the next coreboot build fail
with the curious error that you were building without the correct
toolchain.
Change-Id: I973b0c36e7227135a5c2d6d261e08889857aaaf1
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/16023
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Omar Pakker
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/coreinfo')
-rw-r--r-- | payloads/coreinfo/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index 2fe2398f19..486c96cf1d 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -26,6 +26,7 @@ export KCONFIG_AUTOCONFIG := $(coreinfo_obj)/auto.conf export KCONFIG_DEPENDENCIES := $(coreinfo_obj)/auto.conf.cmd export KCONFIG_SPLITCONFIG := $(coreinfo_obj)/config export KCONFIG_TRISTATE := $(coreinfo_obj)/tristate.conf +export KCONFIG_CONFIG := $(CURDIR)/.config export KCONFIG_NEGATIVES := 1 export Kconfig := Kconfig |