summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Rebischke <chris@nullday.de>2019-10-10 21:22:15 +0200
committerChristian Rebischke <chris@nullday.de>2019-10-10 21:31:02 +0200
commit2b384ffe97fa105ed4949d32471701c3345c39f0 (patch)
tree48b9cf6df4645f6d07ed40cfc17e904eb0c55d91
parent3cdd3b4dff73c59002143d64388d1078fb753411 (diff)
replace btrfs with ext4
This fixes https://github.com/archlinux/arch-boxes/issues/51 Signed-off-by: Christian Rebischke <chris@nullday.de>
-rw-r--r--http/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/install.sh b/http/install.sh
index 3ee1fa5..077ac88 100644
--- a/http/install.sh
+++ b/http/install.sh
@@ -22,10 +22,10 @@ size=${swap_size_in_kilobytes}KiB, type=82
EOF
mkswap "${device}1"
-mkfs.btrfs -L "rootfs" "${device}2"
+mkfs.ext4 -L "rootfs" "${device}2"
mount "${device}2" /mnt
-pacstrap /mnt base grub openssh sudo polkit btrfs-progs haveged
+pacstrap /mnt base grub openssh sudo polkit haveged
swapon "${device}1"
genfstab -p /mnt >> /mnt/etc/fstab
swapoff "${device}1"