summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2020-10-02 21:40:59 +0200
committerJustin Wernick <justin@worthe-it.co.za>2020-10-02 21:43:13 +0200
commit461f3718ec621e6cae7fca1284f022d634e73b38 (patch)
treead3c139d643a979c7992678f422c5a3ada33d946
parent1e241dd65b9abddffc06576bbc19c01d9722c55e (diff)
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
-rwxr-xr-xalis.sh2
1 files changed, 1 insertions, 1 deletions
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