diff options
author | Martin Roth <martinroth@google.com> | 2016-01-04 14:23:53 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-01-07 23:04:31 +0100 |
commit | 481a19cf99a9736c089320df33d3248522e0efc9 (patch) | |
tree | da591b609b6d53fbe1dff83d2396d7bc5734d645 /src | |
parent | 9dbdf520d8c3bc7bea3a4565206525f85ddc631f (diff) | |
download | coreboot-481a19cf99a9736c089320df33d3248522e0efc9.tar.xz |
intel/braswell: Disable IFD & ME by default so abuild can build
The Braswell IFD & ME blobs aren't published in the 3rdparty repo, so
disable them by default for now.
Change-Id: If68ff1f37fbf7afb2f9eb1e5d9942afcf40ab1e3
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12828
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/braswell/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/braswell/Kconfig b/src/soc/intel/braswell/Kconfig index 11d946aa27..c546e403a5 100644 --- a/src/soc/intel/braswell/Kconfig +++ b/src/soc/intel/braswell/Kconfig @@ -124,13 +124,13 @@ config ENABLE_BUILTIN_COM1 the debug console. config HAVE_IFD_BIN - def_bool y + def_bool n config BUILD_WITH_FAKE_IFD def_bool !HAVE_IFD_BIN config HAVE_ME_BIN - def_bool y + def_bool n config IED_REGION_SIZE hex |