diff options
author | Naresh G Solanki <naresh.solanki@intel.com> | 2017-04-12 20:15:53 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-16 15:56:04 +0200 |
commit | 95d6dd21c95ca1729024b79357b583aebd28f9cc (patch) | |
tree | 593a13bce3ad82ad454568521d47a560f6e1a383 | |
parent | 1d3661be0a18b679d993818b5d3acc43eb21f245 (diff) | |
download | coreboot-95d6dd21c95ca1729024b79357b583aebd28f9cc.tar.xz |
sb/intel/common/firmware: Keep CHECK_ME disabled by default
While building poppy board, build failed with following error message:
Writing new image to build/coreboot.pre.new
mv build/coreboot.pre.new build/coreboot.pre
util/me_cleaner/me_cleaner.py -c build/coreboot.pre > /dev/null
This image does not contains a ME/TXE firmware NR = 0)
make: *** [src/southbridge/intel/common/firmware/Makefile.inc:55:
add_intel_firmware] Error 1
Hence keeping CHECK_ME unset by default.
TEST=Succesfully built coreboot for Poppy & booted to OS.
Change-Id: Ib3186498c8da307b686c06c3828e24acbc7f2d17
Signed-off-by: Naresh G Solanki <naresh.solanki@intel.com>
Reviewed-on: https://review.coreboot.org/19257
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nicola Corna <nicola@corna.info>
Reviewed-by: Furquan Shaikh <furquan@google.com>
-rw-r--r-- | src/southbridge/intel/common/firmware/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/common/firmware/Kconfig b/src/southbridge/intel/common/firmware/Kconfig index ed7dd29507..9d22b1b04e 100644 --- a/src/southbridge/intel/common/firmware/Kconfig +++ b/src/southbridge/intel/common/firmware/Kconfig @@ -60,7 +60,7 @@ config ME_BIN_PATH config CHECK_ME bool "Verify the integrity of the supplied ME/TXE firmware" - default y + default n depends on HAVE_ME_BIN && (NORTHBRIDGE_INTEL_NEHALEM || \ NORTHBRIDGE_INTEL_SANDYBRIDGE || \ NORTHBRIDGE_INTEL_IVYBRIDGE || NORTHBRIDGE_INTEL_HASWELL || \ |