From ee6cf8eaf1770d9a32e6f80bb9d37b64c838e230 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Tue, 5 Sep 2023 18:13:45 +0100 Subject: [PATCH] dissect: add 'f2fs' to allow-listed filesystems f2fs is actively maintained upstream, and popular in certain device categories (phones, embedded), so allow-list by default. Fixes https://github.com/systemd/systemd/issues/29026 --- src/shared/dissect-image.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/dissect-image.c b/src/shared/dissect-image.c index 8acf3c232b8..2d1952de798 100644 --- a/src/shared/dissect-image.c +++ b/src/shared/dissect-image.c @@ -99,6 +99,7 @@ int dissect_fstype_ok(const char *fstype) { "btrfs", "erofs", "ext4", + "f2fs", "squashfs", "vfat", "xfs"); -- 2.47.3