diff options
| author | Tom Rini <[email protected]> | 2025-11-12 15:19:42 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-10 11:59:38 -0600 |
| commit | 57ff26c4240c5050aa96f8cb2e8aaa6f55d71459 (patch) | |
| tree | 3e9736b10e3b4b9f978416a4fc6fd7558b47b28c /fs | |
| parent | e09d04dae5aaef5cda6b648c9c0b8282fce05559 (diff) | |
fs/jffs2: Make depend on !64BIT
Building this code on 64bit platforms leads to warnings (and so errors
in CI). Rather than rework the code, as this is a deprecated filesystem,
don't try and disallow building on 64bit hosts.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/jffs2/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/jffs2/Kconfig b/fs/jffs2/Kconfig index 3bf01cd0313..dede59ee336 100644 --- a/fs/jffs2/Kconfig +++ b/fs/jffs2/Kconfig @@ -1,5 +1,6 @@ config FS_JFFS2 bool "Enable JFFS2 filesystem support" + depends on !64BIT help This provides support for reading images from JFFS2 (Journalling Flash File System version 2). JFFS2 is a log-structured file system |
