From 2fd5f9f0ddca8cfd8f4c1443e7dc3966bd7ee993 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Mon, 5 Feb 2024 16:10:56 +0100 Subject: [PATCH 1/2] mount options: Add 'map' and 'check' ISO9660 options --- data/builtin_mount_options.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/builtin_mount_options.conf b/data/builtin_mount_options.conf index 82cee2dbe..f0b0bf626 100644 --- a/data/builtin_mount_options.conf +++ b/data/builtin_mount_options.conf @@ -21,7 +21,7 @@ ntfs:ntfs3_allow=uid=$UID,gid=$GID,umask,dmask,fmask,iocharset,discard,nodiscard ntfs_drivers=ntfs3,ntfs iso9660_defaults=uid=$UID,gid=$GID,iocharset=utf8,mode=0400,dmode=0500 -iso9660_allow=uid=$UID,gid=$GID,norock,nojoliet,iocharset,mode,dmode +iso9660_allow=uid=$UID,gid=$GID,norock,nojoliet,iocharset,mode,dmode,map,check udf_defaults=uid=$UID,gid=$GID,iocharset=utf8 udf_allow=uid=$UID,gid=$GID,iocharset,utf8,umask,mode,dmode,unhide,undelete From d1b8cd3e39fe7ad2a1ae2b9ccec6b257de88173b Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Mon, 5 Feb 2024 16:16:14 +0100 Subject: [PATCH 2/2] mount options: Allow 'commit' option for ext3/ext4 --- data/builtin_mount_options.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/builtin_mount_options.conf b/data/builtin_mount_options.conf index f0b0bf626..2a09a1098 100644 --- a/data/builtin_mount_options.conf +++ b/data/builtin_mount_options.conf @@ -41,7 +41,7 @@ ext2_defaults=errors=remount-ro ext2_allow=errors=remount-ro ext3_defaults=errors=remount-ro -ext3_allow=errors=remount-ro +ext3_allow=errors=remount-ro,commit ext4_defaults=errors=remount-ro -ext4_allow=errors=remount-ro +ext4_allow=errors=remount-ro,commit