diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-16 07:03:29 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-02-06 11:38:46 +0800 |
commit | 5e148df95216c0ee2e349a1cfb5b171ecc58632c (patch) | |
tree | 996629ace38caa3e95f2f0af4527eb41f38db443 /drivers/Makefile | |
parent | d688bd728f2238256a8f4728cf75a711ae38608f (diff) | |
download | u-boot-imx-5e148df95216c0ee2e349a1cfb5b171ecc58632c.zip u-boot-imx-5e148df95216c0ee2e349a1cfb5b171ecc58632c.tar.gz u-boot-imx-5e148df95216c0ee2e349a1cfb5b171ecc58632c.tar.bz2 |
spl: Allow CPU drivers to be used in SPL
Add a new Kconfig option to allow CPU drivers to be used in SPL.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index c19fa14..4ced2bb 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -10,6 +10,7 @@ obj-$(CONFIG_$(SPL_)RAM) += ram/ ifdef CONFIG_SPL_BUILD +obj-$(CONFIG_SPL_CPU_SUPPORT) += cpu/ obj-$(CONFIG_SPL_CRYPTO_SUPPORT) += crypto/ obj-$(CONFIG_SPL_I2C_SUPPORT) += i2c/ obj-$(CONFIG_SPL_GPIO_SUPPORT) += gpio/ |