summaryrefslogtreecommitdiffstats
path: root/lib/MDV/Draklive/Utils.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MDV/Draklive/Utils.pm')
-rw-r--r--lib/MDV/Draklive/Utils.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDV/Draklive/Utils.pm b/lib/MDV/Draklive/Utils.pm
index 906680f..4352ca9 100644
--- a/lib/MDV/Draklive/Utils.pm
+++ b/lib/MDV/Draklive/Utils.pm
@@ -66,7 +66,7 @@ sub device_mkfs {
my ($device, $type, $o_inode_size) = @_;
if ($type eq 'vfat') {
run_('mkfs.vfat', $device);
- } elsif (member($type, 'ext2', 'ext3')) {
+ } elsif (member($type, 'ext2', 'ext3', 'ext4')) {
run_("mkfs.$type", "-m", 0, if_($o_inode_size, '-I', $o_inode_size), if_(!-b $device, '-F'), $device);
} else {
die "unable to mkfs for unsupported media type $type\n";