diff options
| author | Tien Fong Chee <[email protected]> | 2019-01-23 14:20:06 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-01 09:14:21 -0500 |
| commit | cafc429fa86eea9feaf75847041dc641a54413c7 (patch) | |
| tree | 0eeca51af681602b1491c132860ed45719a4cead | |
| parent | f4b409247429affe078a2c42d4c21d90ed2855e4 (diff) | |
spl: fat/fs: Add control to build FS EXT4 in SPL
CONFIG_SPL_FS_EXT4 can be used to include/exclude the FS EXT4 from
SPL build. Excluding the FS EXT4 from SPL build can help to save 20KiB
memory.
Signed-off-by: Tien Fong Chee <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | fs/fs.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -183,7 +183,8 @@ static struct fstype_info fstypes[] = { .closedir = fat_closedir, }, #endif -#ifdef CONFIG_FS_EXT4 + +#if CONFIG_IS_ENABLED(FS_EXT4) { .fstype = FS_TYPE_EXT, .name = "ext4", |
