diff options
author | Tuomas Tynkkynen <tuomas@tuxera.com> | 2018-01-05 02:45:19 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-22 16:43:31 -0500 |
commit | 3cd084d3645c8a508b412f794607c5628ab9f8e6 (patch) | |
tree | 40b6e25cd6ac56eb73c1dce92f1334a3dc69164e /include/config_fallbacks.h | |
parent | f1698a8cf59db87ec54961b92523116e9f4c629c (diff) |
env: ENV_IS_IN_FAT improvements
Make it select FS_FAT as well, because if it's not selected, enabling
ENV_IS_IN_FAT causes a Kconfig warning:
warning: (ENV_IS_IN_FAT) selects FAT_WRITE which has unmet direct dependencies (FS_FAT)
This also allows dropping some code from config_fallbacks.
Also drop the unnecessary help text about having to enable
CONFIG_FAT_WRITE - Kconfig automatically handles that.
Signed-off-by: Tuomas Tynkkynen <tuomas@tuxera.com>
Diffstat (limited to 'include/config_fallbacks.h')
-rw-r--r-- | include/config_fallbacks.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/config_fallbacks.h b/include/config_fallbacks.h index 527dfc71fa..76b13c3b30 100644 --- a/include/config_fallbacks.h +++ b/include/config_fallbacks.h @@ -29,10 +29,6 @@ #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } #endif -#if defined(CONFIG_ENV_IS_IN_FAT) && !defined(CONFIG_FS_FAT) -#define CONFIG_FS_FAT -#endif - /* Rather than repeat this expression each time, add a define for it */ #if defined(CONFIG_IDE) || \ defined(CONFIG_SATA) || \ |