diff options
author | Tom Rini <trini@konsulko.com> | 2019-05-29 17:01:28 -0400 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2019-06-13 12:51:06 +0530 |
commit | a4298ddaf8bbccf8a14acb6be33764eecbea9abd (patch) | |
tree | bacd31a2b7e884dd1ddb09739cce2f85e09cb6cf /arch/Kconfig | |
parent | 9a4b90015a6a03c14071802f8bf49a17e0be6b16 (diff) | |
download | u-boot-a4298ddaf8bbccf8a14acb6be33764eecbea9abd.tar.gz |
Kconfig: Add SPI / SPI_FLASH as dependencies
In order to use CMD_SF / CMD_SPI / ENV_IS_IN_SPI_FLASH we need to have
the SPI (or SPI_FLASH/DM_SPI_FLASH, for CMD_SF) enabled. Express this
in the Kconfigs.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index e574b0d441..28afe39801 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -101,6 +101,7 @@ config SANDBOX imply CMD_IOTRACE imply CMD_LZMADEC imply CMD_SATA + imply CMD_SF imply CMD_SF_TEST imply CRC32_VERIFY imply FAT_WRITE @@ -147,6 +148,7 @@ config X86 imply CMD_IO imply CMD_IRQ imply CMD_PCI + imply CMD_SF imply CMD_SF_TEST imply CMD_ZBOOT imply DM_ETH |