From 14347710ceaf05adc38ad52f88b363c504403830 Mon Sep 17 00:00:00 2001 From: James McMurray Date: Sat, 21 Mar 2020 19:38:25 +0100 Subject: [PATCH] Add linux package to defaults (#36) Should fix mkinitcpio issues due to missing "linux" preset now it's no longer included in "base". Note this issue only affected newer Arch Linux installs (since the change). --- src/constants.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/constants.rs b/src/constants.rs index 4d29ff4..1302a3d 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -7,8 +7,10 @@ Storage=volatile SystemMaxUse=16M "; -pub const BASE_PACKAGES: [&str; 6] = [ +pub const BASE_PACKAGES: [&str; 8] = [ "base", + "linux", + "linux-firmware", "grub", "efibootmgr", "intel-ucode",