[coreboot-gerrit] New patch to review for coreboot: fsp_baytrail: Fix missing "$" when using Kconfig switch

Werner Zeh (werner.zeh@siemens.com) gerrit at coreboot.org
Thu Apr 28 09:47:50 CEST 2016


Werner Zeh (werner.zeh at siemens.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14532

-gerrit

commit 7f0fa67ad09b043832829a6fbf5918117f4a971c
Author: Werner Zeh <werner.zeh at siemens.com>
Date:   Thu Apr 28 09:39:34 2016 +0200

    fsp_baytrail: Fix missing "$" when using Kconfig switch
    
    To include gfx.c in ramstage, there is a Kconfig option
    (FSP_BAYTRAIL_GFX_INIT) which can be activated on demand.
    Unfortunately, the "$"-character is missing so that this switch is
    never active.
    
    Change-Id: I0c3c562b3caca53ac6510c2c5dc30e7f606f5ad0
    Signed-off-by: Werner Zeh <werner.zeh at siemens.com>
---
 src/soc/intel/fsp_baytrail/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/soc/intel/fsp_baytrail/Makefile.inc b/src/soc/intel/fsp_baytrail/Makefile.inc
index 92b5f98..6e16b42 100644
--- a/src/soc/intel/fsp_baytrail/Makefile.inc
+++ b/src/soc/intel/fsp_baytrail/Makefile.inc
@@ -57,7 +57,7 @@ ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smm.c
 
 ramstage-y += placeholders.c
 ramstage-y += i2c.c
-ramstage-(CONFIG_FSP_BAYTRAIL_GFX_INIT) += gfx.c
+ramstage-$(CONFIG_FSP_BAYTRAIL_GFX_INIT) += gfx.c
 
 CPPFLAGS_common += -I$(src)/soc/intel/fsp_baytrail/include
 CPPFLAGS_common += -I$(src)/soc/intel/fsp_baytrail/fsp



More information about the coreboot-gerrit mailing list