From 0d082f17d8eb48a5ca255cd4c2129c349365a4bf Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 7 Mar 2014 10:55:24 +0000 Subject: [PATCH] Default to an ext4 partition instead of ext2 --- stuff/create-bootable | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stuff/create-bootable b/stuff/create-bootable index 7429a95..07a3c1c 100755 --- a/stuff/create-bootable +++ b/stuff/create-bootable @@ -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"