diff options
author | Ley Foon Tan | 2019-10-11 13:48:33 +0800 |
---|---|---|
committer | Marek Vasut | 2020-01-07 14:38:33 +0100 |
commit | 5c9c71b660a01d088ac66b7b8c1378915bcef68e (patch) | |
tree | 03182cd59e9c934a9de02ab091871455b077a830 /common/spl/Kconfig | |
parent | 5a8fa095cb848c60c630a83edf30d4fc46101e90 (diff) |
spl: Allow cache drivers to be used in SPL
Add an option for building cache drivers in SPL.
Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index c527617e434..61488daa3c3 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -731,6 +731,12 @@ config SPL_UBI README.ubispl for more info. if SPL_DM +config SPL_CACHE + depends on CACHE + bool "Support cache drivers in SPL" + help + Enable support for cache drivers in SPL. + config SPL_DM_SPI bool "Support SPI DM drivers in SPL" help |