From 922f9cccfe7aab9be0a37151ad9847ac1856601e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20M=C3=BCller?= Date: Thu, 2 Jul 2020 13:40:30 +0200 Subject: [PATCH] Update main.rs - use mkinitcpio -P to have options to use more than one kernel. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index cd90705..2d743c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -434,7 +434,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> { arch_chroot .execute() .arg(mount_point.path()) - .args(&["mkinitcpio", "-p", "linux"]) + .args(&["mkinitcpio", "-P"]) .run() .context("Failed to run mkinitcpio - do you have the base and linux packages installed?")?;