From: Zbigniew Jędrzejewski-Szmek Date: Tue, 16 Nov 2021 11:31:57 +0000 (+0100) Subject: basic: cramfs is also a read-only fs X-Git-Tag: v250-rc1~235^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30741d6cca1bc742492b4bbba1ef64d6b0e98bc3;p=thirdparty%2Fsystemd.git basic: cramfs is also a read-only fs --- diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index c813a4f56fe..240df3782a0 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -411,6 +411,7 @@ bool fstype_is_ro(const char *fstype) { /* All Linux file systems that are necessarily read-only */ return STR_IN_SET(fstype, "DM_verity_hash", + "cramfs", "erofs", "iso9660", "squashfs");