You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
10 months ago
|
From cb777d950511e29dcb822b4ccba23e43cd63e9cb Mon Sep 17 00:00:00 2001
|
||
|
From: Joseph Marrero <jmarrero@redhat.com>
|
||
|
Date: Fri, 4 Aug 2023 08:27:39 -0400
|
||
|
Subject: [PATCH] scripts: also ignore kernel-debug-modules.posttrans
|
||
|
|
||
|
---
|
||
|
rust/src/scripts.rs | 13 +++++++++++++
|
||
|
1 file changed, 13 insertions(+)
|
||
|
|
||
|
diff --git a/rust/src/scripts.rs b/rust/src/scripts.rs
|
||
|
index 1f59e390..b8ab6623 100644
|
||
|
--- a/rust/src/scripts.rs
|
||
|
+++ b/rust/src/scripts.rs
|
||
|
@@ -21,8 +21,21 @@ static IGNORED_PKG_SCRIPTS: phf::Set<&'static str> = phf_set! {
|
||
|
// XXX: we should probably change this to instead ignore based on the kernel virtual Provides
|
||
|
"kernel.posttrans",
|
||
|
"kernel-core.posttrans",
|
||
|
+ "kernel-modules.posttrans",
|
||
|
+ "kernel-redhat-core.posttrans",
|
||
|
+ "kernel-redhat-modules.posttrans",
|
||
|
"kernel-debug-core.posttrans",
|
||
|
+ "kernel-debug-modules.posttrans",
|
||
|
+ "kernel-redhat-debug-core.posttrans",
|
||
|
+ "kernel-redhat-debug-modules.posttrans",
|
||
|
"kernel-automotive-core.posttrans",
|
||
|
+ "kernel-automotive-modules.posttrans",
|
||
|
+ "kernel-automotive-debug-core.posttrans",
|
||
|
+ "kernel-automotive-debug-modules.posttrans",
|
||
|
+ "kernel-rt-core.posttrans",
|
||
|
+ "kernel-rt-modules.posttrans",
|
||
|
+ "kernel-rt-debug-core.posttrans",
|
||
|
+ "kernel-rt-debug-modules.posttrans",
|
||
|
// Additionally ignore posttrans scripts for the Oracle Linux `kernel-uek` package
|
||
|
"kernel-uek.posttrans",
|
||
|
// Legacy workaround
|
||
|
--
|
||
|
2.41.0
|
||
|
|