Angel Pons has uploaded this change for review. ( https://review.coreboot.org/27218
Change subject: southbridge/intel/bd82x6x/Kconfig: Do not include any IFD by default ......................................................................
southbridge/intel/bd82x6x/Kconfig: Do not include any IFD by default
Since only a handful of boards have descriptor blobs in the tree, it makes little sense to leave it enabled by default. This would require less mainboard-specific Kconfig overrides.
If this receives positive feedback, every affected motherboard will be updated in a later patch set.
Change-Id: I330c4886f8bea4b1a8ecad6505a0e5cc381654d1 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/southbridge/intel/bd82x6x/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/18/27218/1
diff --git a/src/southbridge/intel/bd82x6x/Kconfig b/src/southbridge/intel/bd82x6x/Kconfig index 9a70bf2..53ad840 100644 --- a/src/southbridge/intel/bd82x6x/Kconfig +++ b/src/southbridge/intel/bd82x6x/Kconfig @@ -67,10 +67,10 @@ default 0x80
config HAVE_IFD_BIN - def_bool y + def_bool n
config BUILD_WITH_FAKE_IFD - def_bool !HAVE_IFD_BIN + def_bool n
endif