]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
fs/jffs2: Make depend on !64BIT
authorTom Rini <trini@konsulko.com>
Wed, 12 Nov 2025 21:19:42 +0000 (15:19 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 10 Dec 2025 17:59:38 +0000 (11:59 -0600)
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 <trini@konsulko.com>
cmd/Kconfig
fs/jffs2/Kconfig

index 8e3efff2bee69e4be80fe8e87eb7815dd3ff8ca9..9aecfe504bb96812e8a80f2338d6523e40c9a842 100644 (file)
@@ -2927,6 +2927,7 @@ config CMD_FS_UUID
 
 config CMD_JFFS2
        bool "jffs2 command"
+       depends on !64BIT
        select FS_JFFS2
        help
          Enables commands to support the JFFS2 (Journalling Flash File System
index 3bf01cd03137bfd310c2e6f4379aa91ae33bd8d7..dede59ee336225d945bb5e950248e88d4c5a93ad 100644 (file)
@@ -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