From 336cef495d601036b6455f0539fe0d505e20ed04 Mon Sep 17 00:00:00 2001 From: Vincent Fourmond Date: Mon, 14 Sep 2009 22:55:21 +0200 Subject: [PATCH] Finally whitelisting ext4 FS, now that I got myself familiar with it --- src/fs.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/fs.c b/src/fs.c index d184f92..65ea0c7 100644 --- a/src/fs.c +++ b/src/fs.c @@ -28,6 +28,7 @@ static struct FS supported_fs[] = { ",file_umask=%04o,dir_umask=%04o"}, { "ext3", "nodev,noauto,nosuid,user,errors=remount-ro", 0, NULL, 0 }, { "ext2", "nodev,noauto,nosuid,user,errors=remount-ro", 0, NULL, 0 }, + { "ext4", "nodev,noauto,nosuid,user,errors=remount-ro", 0, NULL, 0 }, { "reiserfs", "nodev,noauto,nosuid,user", 0, NULL, 0 }, { "reiser4", "nodev,noauto,nosuid,user", 0, NULL, 0 }, { "xfs", "nodev,noauto,nosuid,user", 0, NULL, 0 }, -- 1.6.3.3 From 804eb6da31801c2f66d39652f2955f566cfc73ce Mon Sep 17 00:00:00 2001 From: Vincent Fourmond Date: Thu, 17 Sep 2009 20:09:53 +0200 Subject: [PATCH] Updating manual page for etx4 as well --- man/pmount.1 | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/man/pmount.1 b/man/pmount.1 index d195076..dcc02d5 100644 --- a/man/pmount.1 +++ b/man/pmount.1 @@ -276,6 +276,7 @@ supports the following filesystems: .IR hfs , .IR ext3 , .IR ext2 , +.IR ext4 , .IR reiserfs , .IR reiser4 , .IR xfs , -- 1.6.3.3