[coreboot-gerrit] New patch to review for coreboot: 7279d02 sandybridge: Allow skipping mrc.cache

Vladimir Serbinenko (phcoder@gmail.com) gerrit at coreboot.org
Sun Jan 12 19:27:58 CET 2014


Vladimir Serbinenko (phcoder at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4680

-gerrit

commit 7279d025d078da50dc99d1cf990fc37fdf99ae50
Author: Vladimir Serbinenko <phcoder at gmail.com>
Date:   Sun Jan 12 19:25:00 2014 +0100

    sandybridge: Allow skipping mrc.cache
    
    On X230 MRC fails if cache is passed to it. Until better solution is found
    do not create mrc.cache
    
    Change-Id: I7e70ebe3c4879e7ab33a9c95a0c9e40408ff5ca4
    Signed-off-by: Vladimir Serbinenko <phcoder at gmail.com>
---
 src/northbridge/intel/sandybridge/Kconfig      | 4 ++++
 src/northbridge/intel/sandybridge/Makefile.inc | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/northbridge/intel/sandybridge/Kconfig b/src/northbridge/intel/sandybridge/Kconfig
index 5b6285f..83da527 100644
--- a/src/northbridge/intel/sandybridge/Kconfig
+++ b/src/northbridge/intel/sandybridge/Kconfig
@@ -70,6 +70,10 @@ config HAVE_MRC
 
 	  Note: Without this binary coreboot will not work
 
+config HAVE_MRC_CACHE
+       bool
+       default HAVE_MRC
+
 config MRC_FILE
 	string "Intel System Agent path and filename"
 	depends on HAVE_MRC
diff --git a/src/northbridge/intel/sandybridge/Makefile.inc b/src/northbridge/intel/sandybridge/Makefile.inc
index be07e93..aa1739a 100644
--- a/src/northbridge/intel/sandybridge/Makefile.inc
+++ b/src/northbridge/intel/sandybridge/Makefile.inc
@@ -43,7 +43,7 @@ $(obj)/mrc.cache:
 	bs=$(shell printf "%d" $(CONFIG_MRC_CACHE_SIZE) ) | \
 	tr '\000' '\377' > $@
 
-cbfs-files-$(CONFIG_HAVE_MRC) += mrc.cache
+cbfs-files-$(CONFIG_HAVE_MRC_CACHE) += mrc.cache
 mrc.cache-file := $(obj)/mrc.cache
 mrc.cache-position := 0xfff80000
 mrc.cache-type := 0xac



More information about the coreboot-gerrit mailing list