diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-10 17:16:46 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 08:12:55 +0100 |
commit | 1151651831ff11b3f40d132bb9ab012e95a8faa1 (patch) | |
tree | d447f9186345abffb1c3b42fd179cfc9d5c16ee5 /scripts/Makefile.spl | |
parent | fb4f5e7c911745de1a6c7d0051abca9d2a4cd920 (diff) | |
download | u-boot-imx-1151651831ff11b3f40d132bb9ab012e95a8faa1.zip u-boot-imx-1151651831ff11b3f40d132bb9ab012e95a8faa1.tar.gz u-boot-imx-1151651831ff11b3f40d132bb9ab012e95a8faa1.tar.bz2 |
dm: spl: Allow driver model to be used
When enabled, set up driver model for SPL. This allows SPL to use the same
drivers as the main U-Boot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'scripts/Makefile.spl')
-rw-r--r-- | scripts/Makefile.spl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 07db0bf..6e13f68 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -69,6 +69,7 @@ libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/ libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ libs-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/ +libs-$(CONFIG_SPL_DM) += drivers/core/ libs-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/ libs-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/ libs-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/ |