From c26c41a4599c46482b5f49e3beeb35734ff19965 Mon Sep 17 00:00:00 2001 From: Lichen Liu Date: Mon, 6 Jan 2025 15:47:35 +0800 Subject: [PATCH] 99-kdump.conf: Omit nouveau module Resolves: https://issues.redhat.com/browse/RHEL-52304 The nouveau module provides no significant utility in second kernel, and it introduces firmware that occupies approximately 38MB of memory, which is critical in the constrained environment of kdump. Omit it helps reduce memory usage and optimize the crash recovery process. Signed-off-by: Lichen Liu --- 99-kdump.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/99-kdump.conf b/99-kdump.conf index 80d6e43b..3e20e606 100644 --- a/99-kdump.conf +++ b/99-kdump.conf @@ -1,3 +1,3 @@ dracutmodules='' add_dracutmodules=' kdumpbase ' -omit_dracutmodules=' rdma plymouth resume ifcfg earlykdump ' +omit_dracutmodules=' nouveau rdma plymouth resume ifcfg earlykdump '