[coreboot-gerrit] Patch set updated for coreboot: 4a8b447 mainboard/amd/Kconfig: Blacklist AMD blob board

Edward O'Callaghan (eocallaghan@alterapraxis.com) gerrit at coreboot.org
Wed Dec 10 12:46:12 CET 2014


Edward O'Callaghan (eocallaghan at alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7780

-gerrit

commit 4a8b447e4f751b9dbaa48fb9a048dc7136efcd19
Author: Edward O'Callaghan <eocallaghan at alterapraxis.com>
Date:   Wed Dec 10 21:27:04 2014 +1100

    mainboard/amd/Kconfig: Blacklist AMD blob board
    
    3rdparty is beyond our control for making these AMD boards
    buildable under clang.
    
    Change-Id: I88e9344fe364d62145060e3d6e9fdbfc14cee023
    Signed-off-by: Edward O'Callaghan <eocallaghan at alterapraxis.com>
---
 src/mainboard/amd/Kconfig | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/mainboard/amd/Kconfig b/src/mainboard/amd/Kconfig
index cc5679a..7cf3a45 100644
--- a/src/mainboard/amd/Kconfig
+++ b/src/mainboard/amd/Kconfig
@@ -43,8 +43,12 @@ config BOARD_AMD_THATCHER
 	bool "Thatcher"
 config BOARD_AMD_OLIVEHILL
 	bool "Olive Hill"
+# blob boards require GCC's optimiser to 'fix' things at
+# compile time.
+if !COMPILER_LLVM_CLANG
 config BOARD_AMD_OLIVEHILLPLUS
 	bool "Olive Hill Plus"
+endif
 endchoice
 
 source "src/mainboard/amd/db800/Kconfig"
@@ -67,7 +71,11 @@ source "src/mainboard/amd/union_station/Kconfig"
 source "src/mainboard/amd/parmer/Kconfig"
 source "src/mainboard/amd/thatcher/Kconfig"
 source "src/mainboard/amd/olivehill/Kconfig"
+# blob boards require GCC's optimiser to 'fix' things at
+# compile time.
+if !COMPILER_LLVM_CLANG
 source "src/mainboard/amd/olivehillplus/Kconfig"
+endif
 
 config MAINBOARD_VENDOR
 	string



More information about the coreboot-gerrit mailing list