diff options
author | Tom Rini <trini@konsulko.com> | 2017-06-02 11:03:50 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-03 17:55:34 -0400 |
commit | 91d27a17c602561f051510727499d29f753c4a32 (patch) | |
tree | 13f8416bde9a6825f047fac72fa736300ff39bbc /arch/Kconfig | |
parent | 4a72d8dcc9f9459cb3939c04c2717d121e013b54 (diff) | |
download | u-boot-91d27a17c602561f051510727499d29f753c4a32.tar.gz |
Kconfig: Migrate FS_FAT / FAT_WRITE
Now that these symbols are in Kconfig, migrate all users. Use imply on
a number of platforms that default to having this enabled. As part of
this we must migrate some straglers for CMD_FAT and DOS_PARTITION.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index e0e4e8486c..e44767113d 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -70,14 +70,15 @@ config SANDBOX select DM_SPI select DM_GPIO select DM_MMC - imply CRC32_VERIFY imply CMD_GETTIME imply CMD_HASH imply CMD_IO imply CMD_IOTRACE - imply LZMA imply CMD_LZMADEC + imply CRC32_VERIFY + imply FAT_WRITE imply HASH_VERIFY + imply LZMA config SH bool "SuperH architecture" |