From 14ce2e561d3868d44f94516b360f4e6cf8731bfb Mon Sep 17 00:00:00 2001 From: Lichen Liu Date: Fri, 17 Jan 2025 10:20:22 +0800 Subject: [PATCH] 99-kdump.conf: Omit nouveau and amdgpu module Resolves: https://bugzilla.redhat.com/RHEL-52304 Upstream: kdump-utils commit 77a0246cde3505777cfa1f9c2a1a834e76b7eed6 Author: Lichen Liu Date: Mon Jan 13 17:39:56 2025 +0800 99-kdump.conf: Omit nouveau and amdgpu module Resolves: https://issues.redhat.com/browse/RHEL-52304 The GPU module provides no significant utility in second kernel, and it introduces firmware that occupies lots of memory, which is critical in the constrained environment of kdump. Omit it helps reduce memory usage and optimize the crash recovery process. See also: https://access.redhat.com/solutions/6977793 https://access.redhat.com/solutions/7100186 Signed-off-by: Lichen Liu Signed-off-by: Lichen Liu --- 99-kdump.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/99-kdump.conf b/99-kdump.conf index 8aa2a4c..230ca31 100644 --- a/99-kdump.conf +++ b/99-kdump.conf @@ -1,3 +1,4 @@ dracutmodules='' add_dracutmodules=' kdumpbase ' omit_dracutmodules=' plymouth resume ifcfg earlykdump ' +omit_drivers+=' nouveau amdgpu '