[coreboot] New patch to review for coreboot: cb4b944 Fix AMD 8132 and 8151 southbridge builds

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Sat Dec 3 10:34:14 CET 2011


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/471

-gerrit

commit cb4b9445f0cfa3089357b4ae7393352e962ddc31
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Sat Dec 3 11:30:26 2011 +0200

    Fix AMD 8132 and 8151 southbridge builds
    
    Untested, changes ramstage build for boards:
      supermicro/h8qme_fam10
      amd/serengeti_cheetah
      amd/serengeti_cheetah_fam10
    
    AMD 8132 was not built for any mainboard due to a typo.
    
    AMD Serengeti Cheetah:
      Chip 8151 is referenced in devicetree.cb but was not built.
    
    AMD Serengeti Cheetah Family10:
      There are indications the board has 8151, but it is not listed
      in the devicetree.cb. The 8151 chip is not added in the build.
    
    Change-Id: I03acdfcc3f3440bd32e81a9a696159903bbbcb50
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 src/mainboard/amd/serengeti_cheetah/Kconfig |    2 ++
 src/southbridge/amd/Makefile.inc            |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/mainboard/amd/serengeti_cheetah/Kconfig b/src/mainboard/amd/serengeti_cheetah/Kconfig
index f08fd6e..fcdeb49 100644
--- a/src/mainboard/amd/serengeti_cheetah/Kconfig
+++ b/src/mainboard/amd/serengeti_cheetah/Kconfig
@@ -3,6 +3,8 @@ if BOARD_AMD_SERENGETI_CHEETAH
 config BOARD_SPECIFIC_OPTIONS # dummy
 	def_bool y
 	select ARCH_X86
+ 	select SOUTHBRIDGE_AMD_AMD8132
+ 	select SOUTHBRIDGE_AMD_AMD8151
 	select CPU_AMD_SOCKET_F
 	select DIMM_DDR2
 	select DIMM_REGISTERED
diff --git a/src/southbridge/amd/Makefile.inc b/src/southbridge/amd/Makefile.inc
index 7ec61f4..406a0b3 100644
--- a/src/southbridge/amd/Makefile.inc
+++ b/src/southbridge/amd/Makefile.inc
@@ -1,6 +1,6 @@
 subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8111) += amd8111
 subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8131) += amd8131
-subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8112) += amd8132
+subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8132) += amd8132
 subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8151) += amd8151
 subdirs-$(CONFIG_SOUTHBRIDGE_AMD_RS690) += rs690
 subdirs-$(CONFIG_SOUTHBRIDGE_AMD_SB600) += sb600




More information about the coreboot mailing list