From 3cae90b84108931708d39b693db6615a1f525c12 Mon Sep 17 00:00:00 2001 From: Basti Lathe Date: Wed, 24 May 2023 14:40:44 +0200 Subject: [PATCH] remove linux515 --- src/constants.rs | 2 -- src/main.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/constants.rs b/src/constants.rs index 9617f07..e8a587a 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -9,9 +9,7 @@ SystemMaxUse=16M pub const BASE_PACKAGES: [&str; 9] = [ "base", - "linux515", "linux61", - "linux515-broadcom-wl", "linux61-broadcom-wl", "linux-firmware", "grub", diff --git a/src/main.rs b/src/main.rs index c3d568d..d40334a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -433,7 +433,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> { arch_chroot .execute() .arg(mount_point.path()) - .args(&["mkinitcpio", "-p", "linux61", "linux515"]) + .args(&["mkinitcpio", "-p", "linux61"]) .run() .context("Failed to run mkinitcpio - do you have the base and linux packages installed?")?;