From 47cea29f097c222cf9f07ce055891aa9af74c88c Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Thu, 10 Oct 2019 22:42:21 +0200 Subject: [PATCH] add bare metal support with adding linux package This commit fixes #53 Signed-off-by: Christian Rebischke --- http/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/install.sh b/http/install.sh index 077ac88..f545941 100644 --- a/http/install.sh +++ b/http/install.sh @@ -25,7 +25,7 @@ mkswap "${device}1" mkfs.ext4 -L "rootfs" "${device}2" mount "${device}2" /mnt -pacstrap /mnt base grub openssh sudo polkit haveged +pacstrap /mnt base linux grub openssh sudo polkit haveged swapon "${device}1" genfstab -p /mnt >> /mnt/etc/fstab swapoff "${device}1"