Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2936
-gerrit
commit dcc62724982320ec38b36f5283ccf3215b862dda Author: Paul Menzel paulepanter@users.sourceforge.net Date: Thu Mar 28 13:03:38 2013 +0100
AMD CIMx SB800: Update Kconfig help texts to new SATA mode default
In the following commit
commit ee5c111755ac4acc6dfb6e10a4e271211e149a39 Author: Paul Menzel paulepanter@users.sourceforge.net Date: Tue Mar 12 12:41:40 2013 +0100
AMD CIMx SB800: Enable AHCI mode for SATA controller by default
Reviewed-on: http://review.coreboot.org/2661
I forgot to update the help texts to the new SATA mode default. Do so now.
Additionally note that help texts for `choice` do not seem to be shown.
Change-Id: I17f401633a2136efca2b21a621482e0724ff9f04 Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/southbridge/amd/cimx/sb800/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/southbridge/amd/cimx/sb800/Kconfig b/src/southbridge/amd/cimx/sb800/Kconfig index 53fad3c..554d8c7 100644 --- a/src/southbridge/amd/cimx/sb800/Kconfig +++ b/src/southbridge/amd/cimx/sb800/Kconfig @@ -49,17 +49,17 @@ choice default SB800_SATA_AHCI help Select the mode in which SATA should be driven. NATIVE AHCI, or RAID. - The default is NATIVE. + The default is AHCI.
config SB800_SATA_IDE bool "NATIVE" help - NATIVE is the default mode and does not require a ROM. + NATIVE does not require a ROM.
config SB800_SATA_AHCI bool "AHCI" help - AHCI may work with or without AHCI ROM. It depends on the payload support. + AHCI is the default and may work with or without AHCI ROM. It depends on the payload support. For example, seabios does not require the AHCI ROM.
config SB800_SATA_RAID