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).
This commit is contained in:
James McMurray
2020-03-21 19:38:25 +01:00
committed by GitHub
parent 1f5b28c065
commit 14347710ce

View File

@@ -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",