[coreboot-gerrit] Patch set updated for coreboot: 4894eab gpio: compile gpio.c at all stages

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Fri Apr 10 10:21:25 CEST 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9414

-gerrit

commit 4894eab6cde61ccf3f44b12e93d4491dacfe8aff
Author: David Hendricks <dhendrix at chromium.org>
Date:   Thu Nov 6 15:22:10 2014 -0800

    gpio: compile gpio.c at all stages
    
    Since gpio.c is more generic now and will be used in various
    stages (ie for board_id()), compile it for all stages.
    
    BUG=none
    BRANCH=none
    TEST=compiled for peppy and veyron_pinky
    
    Change-Id: Ib5c73f68db92791dd6b42369f681f9159b7e1c22
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: ef4e40ccf6510d63c4a54451bdfea8da695e387e
    Original-Change-Id: I77ec56a77e75e602e8b9406524d36a8f69ce9128
    Original-Signed-off-by: David Hendricks <dhendrix at chromium.org>
    Original-Reviewed-on: https://chromium-review.googlesource.com/228325
    Original-Reviewed-by: Julius Werner <jwerner at chromium.org>
---
 src/lib/Makefile.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index 54e0473..d4f0452 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -21,6 +21,7 @@ subdirs-y += loaders
 bootblock-y += prog_ops.c
 bootblock-y += cbfs.c cbfs_core.c
 bootblock-$(CONFIG_COMMON_CBFS_SPI_WRAPPER) += cbfs_spi.c
+bootblock-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
 
 bootblock-$(CONFIG_GENERIC_UDELAY) += timer.c
 
@@ -36,6 +37,7 @@ verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
 verstage-$(CONFIG_COMMON_CBFS_SPI_WRAPPER) += cbfs_spi.c
 verstage-y += tlcl.c
 verstage-$(CONFIG_GENERIC_UDELAY) += timer.c
+verstage-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
 
 romstage-y += prog_ops.c
 romstage-y += memchr.c
@@ -51,6 +53,7 @@ romstage-$(CONFIG_COMPRESS_RAMSTAGE) += lzma.c lzmadecode.c
 romstage-$(CONFIG_PRIMITIVE_MEMTEST) += primitive_memtest.c
 ramstage-$(CONFIG_PRIMITIVE_MEMTEST) += primitive_memtest.c
 romstage-$(CONFIG_CACHE_AS_RAM) += ramtest.c
+romstage-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
 
 ifeq ($(CONFIG_EARLY_CBMEM_INIT),y)
 romstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c



More information about the coreboot-gerrit mailing list