From 461f3718ec621e6cae7fca1284f022d634e73b38 Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Fri, 2 Oct 2020 21:40:59 +0200 Subject: Add linux-firmware to the install base Apparently, `linux-firmware` used to be a dependency of `linux` and so would be installed automatically, but they were separated at some point. Without it, installing on a VM seems to work still, but when I tried to install on bare metal (Intel CPU and AMD GPU) it froze during bootup. Adding the `linux-firmware` package fixed this. See https://wiki.archlinux.org/index.php/Installation_guide#Install_essential_packages --- alis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alis.sh b/alis.sh index 8b14e53..05f6a6c 100755 --- a/alis.sh +++ b/alis.sh @@ -548,7 +548,7 @@ function install() { sed -i 's/#Color/Color/' /etc/pacman.conf sed -i 's/#TotalDownload/TotalDownload/' /etc/pacman.conf - pacstrap /mnt base base-devel linux + pacstrap /mnt base base-devel linux linux-firmware sed -i 's/#Color/Color/' /mnt/etc/pacman.conf sed -i 's/#TotalDownload/TotalDownload/' /mnt/etc/pacman.conf -- cgit v1.2.3