[coreboot-gerrit] Patch set updated for coreboot: cpu/amd/model_fxx: Enable FIDVID code on Socket F K8

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Fri Oct 30 17:29:09 CET 2015


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12224

-gerrit

commit f851be5dba717b3f77367064dfb098684d2ab50b
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Wed Oct 28 14:41:04 2015 -0500

    cpu/amd/model_fxx: Enable FIDVID code on Socket F K8
    
    The existing Kconfig option for FIDVID was permanently
    set to "no" due to Kconfig stopping at the first matching
    value set when parsing the file.  This patch moves the
    conditional set above the unconditional set, resolving
    the issue.
    
    Change-Id: Ic19f68f6b17943f9133ff32a9b6538f0bf942eca
    Signed-off-by: Timothy Pearson <tpearson at raptorengineeringinc.com>
---
 src/cpu/amd/model_fxx/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cpu/amd/model_fxx/Kconfig b/src/cpu/amd/model_fxx/Kconfig
index 1172d29..ed5020f 100644
--- a/src/cpu/amd/model_fxx/Kconfig
+++ b/src/cpu/amd/model_fxx/Kconfig
@@ -30,8 +30,8 @@ config LIFT_BSP_APIC_ID
 
 config SET_FIDVID
 	bool
-	default n
 	default y if K8_REV_F_SUPPORT
+	default n
 
 config HW_SCRUBBER
 	bool



More information about the coreboot-gerrit mailing list