mkinitcpio and packages update

This commit is contained in:
2023-05-23 18:21:54 +02:00
parent 38ea0f8007
commit 9eb58fe064
4 changed files with 5 additions and 3 deletions

View File

@@ -10,7 +10,9 @@ SystemMaxUse=16M
pub const BASE_PACKAGES: [&str; 9] = [
"base",
"linux515",
"linux61",
"linux515-broadcom-wl",
"linux61-broadcom-wl",
"linux-firmware",
"grub",
"efibootmgr",

View File

@@ -433,7 +433,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> {
arch_chroot
.execute()
.arg(mount_point.path())
.args(&["mkinitcpio", "-P"])
.args(&["mkinitcpio", "-p linux61 linux515"])
.run()
.context("Failed to run mkinitcpio - do you have the base and linux packages installed?")?;