From c9db55e10bcbeb5f5b5794dee8e447b7378aa5fb Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Mon, 17 Aug 2009 14:47:08 -0700 Subject: [PATCH] JFS can be fsck'd at boot --- mount/linux-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount/linux-lib.pl b/mount/linux-lib.pl index c2ef07203..552dabf9c 100755 --- a/mount/linux-lib.pl +++ b/mount/linux-lib.pl @@ -851,7 +851,7 @@ elsif ($_[0] eq $smbfs_fs) { return ($smbfs_support >= 3 ? 2 : 0, 1, 0, 0); } elsif ($_[0] eq "cifs") { return (2, 1, 0, 0); } elsif ($_[0] =~ /^ext\d+$/ || $_[0] eq "minix" || - $_[0] eq "xiafs" || $_[0] eq "xfs") + $_[0] eq "xiafs" || $_[0] eq "xfs" || $_[0] eq "jfs") { return (2, 1, 1, 0); } else { return (2, 1, 0, 0); }