Cleanup mkfs on scratch device for arbitrary filesystems.

This commit is contained in:
fsgqa
2004-07-01 00:20:03 +00:00
parent 2a2df8fbc6
commit 35257f5420
+2 -8
View File
@@ -189,14 +189,8 @@ _scratch_mkfs()
udf*)
$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $* > /dev/null
;;
ext2)
mkfs.ext2 $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null
;;
ext3)
mkfs.ext3 $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null
;;
reiserfs)
mkfs.reiserfs $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null
*)
/sbin/mkfs -t $FSTYP $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null
;;
esac
}