Lee Leahy has uploaded a new change for review. ( https://review.coreboot.org/19014 )
Change subject: drivers/storage: Build SD/MMC driver for other stages ......................................................................
drivers/storage: Build SD/MMC driver for other stages
Update Makefile.inc to build the driver for other stages.
TEST=Build for reef
Change-Id: Ia101d62aabc7ad1589ce669669792c138d3616c8 Signed-off-by: Lee Leahy Leroy.P.Leahy@intel.com --- M src/drivers/storage/Makefile.inc 1 file changed, 16 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/14/19014/1
diff --git a/src/drivers/storage/Makefile.inc b/src/drivers/storage/Makefile.inc index 36d7e87..460d4f8 100644 --- a/src/drivers/storage/Makefile.inc +++ b/src/drivers/storage/Makefile.inc @@ -15,6 +15,22 @@
ifeq ($(CONFIG_DRIVERS_STORAGE),y)
+bootblock-y += mmc.c +bootblock-y += pci_sdhci.c +bootblock-y += sdhci.c + +verstage-y += mmc.c +verstage-y += pci_sdhci.c +verstage-y += sdhci.c + +romstage-y += mmc.c +romstage-y += pci_sdhci.c +romstage-y += sdhci.c + +postcar-y += mmc.c +postcar-y += pci_sdhci.c +postcar-y += sdhci.c + ramstage-y += mmc.c ramstage-y += pci_sdhci.c ramstage-y += sdhci.c