diff options
author | Sandy Patterson <apatterson@sightlogix.com> | 2016-08-29 07:31:16 -0400 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-10-01 18:35:01 -0600 |
commit | 230e0e09dae00b94632282b570040e99d6642ca7 (patch) | |
tree | bfba7f1832efc5f2a1a4b2cfb3ca4b98e8b69dac /arch | |
parent | 427351dc1d054b6d92814017f3ea6694474949b7 (diff) | |
download | u-boot-imx-230e0e09dae00b94632282b570040e99d6642ca7.zip u-boot-imx-230e0e09dae00b94632282b570040e99d6642ca7.tar.gz u-boot-imx-230e0e09dae00b94632282b570040e99d6642ca7.tar.bz2 |
Disable SPL_MMC_SUPPORT if ROCKCHIP_SPL_BACK_TO_BROM is enabled.
Default SPL_MMC_SUPPORT to false when ROCKCHIP_SPL_BACK_TO_BROM is enabled.
Acked-by: Ziyuan Xu <xzy.xu@rock-chips.com>
Signed-off-by: Sandy Patterson <apatterson@sightlogix.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-rockchip/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 1aac3c8..8a5d62a 100644 --- a/arch/arm/mach-rockchip/Kconfig +++ b/arch/arm/mach-rockchip/Kconfig @@ -42,6 +42,9 @@ config ROCKCHIP_SPL_BACK_TO_BROM SPL will return to the boot rom, which will then load the U-Boot binary to keep going on. +config SPL_MMC_SUPPORT + default y if !ROCKCHIP_SPL_BACK_TO_BROM + source "arch/arm/mach-rockchip/rk3036/Kconfig" source "arch/arm/mach-rockchip/rk3288/Kconfig" source "arch/arm/mach-rockchip/rk3399/Kconfig" |