Simon Glass | 59e12a4 | 2017-05-17 03:25:38 -0600 | [diff] [blame] | 1 | config FS_JFFS2 |
| 2 | bool "Enable JFFS2 filesystem support" |
| 3 | help |
| 4 | This provides support for reading images from JFFS2 (Journalling |
| 5 | Flash File System version 2). JFFS2 is a log-structured file system |
| 6 | for use with flash memory devices. It supports raw NAND devices, |
| 7 | hard links and compression. |
Tom Rini | 968c621 | 2021-12-17 18:08:47 -0500 | [diff] [blame] | 8 | |
| 9 | config JFFS2_LZO |
| 10 | bool "Enable LZO compression in JFFS2" |
| 11 | depends on FS_JFFS2 |
| 12 | help |
| 13 | Enable LZO compression in the JFFS2 filesystem |
| 14 | |
| 15 | config JFFS2_NAND |
| 16 | bool "Enable JFFS2 support for NAND flash" |
| 17 | depends on FS_JFFS2 |
| 18 | help |
| 19 | Enable support for NAND flash as the backing store for JFFS2. |