Default to an ext4 partition instead of ext2

This commit is contained in:
sin 2014-03-07 10:55:24 +00:00
parent 885f47b5e1
commit 0d082f17d8

View File

@ -31,7 +31,7 @@ EOF
lodev=$(losetup -f)
losetup "$lodev" "$img"
partition="$lodev"p1
mkfs.ext2 -L MORPHEUS $partition
mkfs.ext4 -L MORPHEUS $partition
mkdir -p "$mnt"
mount $partition "$mnt"
rmdir "$mnt/lost+found"