diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2018-04-07 16:05:27 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-04-11 13:22:00 -0400 |
commit | 555004381e957200d0448ec88f59d77d174fc7bf (patch) | |
tree | a9d687abb2dac5a3516b0450c3d5e661c1f2c111 /common | |
parent | c4446b1d6c96de406972690083e2884bf69bce5c (diff) | |
download | u-boot-555004381e957200d0448ec88f59d77d174fc7bf.zip u-boot-555004381e957200d0448ec88f59d77d174fc7bf.tar.gz u-boot-555004381e957200d0448ec88f59d77d174fc7bf.tar.bz2 |
spl: spi: Move CONFIG_SPL_SPI_LOAD to Kconfig
Add Kconfig entry for CONFIG_SPL_SPI_LOAD symbol and move all
configurations using it to Kconfig.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index d15f576..9697173 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -643,6 +643,13 @@ config SPL_SPI_FLASH_SUPPORT lines). This enables the drivers in drivers/mtd/spi as part of an SPL build. This normally requires SPL_SPI_SUPPORT. +config SPL_SPI_LOAD + bool "Support loading from SPI flash" + depends on SPL_SPI_FLASH_SUPPORT + help + Enable support for loading next stage, U-Boot or otherwise, from + SPI NOR in U-Boot SPL. + config SPL_SPI_SUPPORT bool "Support SPI drivers" help |