From b65b604673deb97c3d064f0d6fb1dfb356809156 Mon Sep 17 00:00:00 2001 From: Yuanhe Shu Date: Mon, 3 Jun 2024 14:23:27 +0800 Subject: [PATCH] Omit hibmc-drm module in dump capture kernel Capture kernel would crash in kunpeng when loading hibmc-drm module. Just omit this module. Signed-off-by: Yuanhe Shu --- kdump.conf | 2 +- kexec-tools.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/kdump.conf b/kdump.conf index d4fc78b..7c13851 100644 --- a/kdump.conf +++ b/kdump.conf @@ -187,6 +187,6 @@ core_collector makedumpfile -l --message-level 7 -d 31 #failure_action shell #force_rebuild 1 #force_no_rebuild 1 -#dracut_args --omit-drivers "cfg80211 snd" --add-drivers "ext2 ext3" +dracut_args --omit-drivers "hibmc-drm" #fence_kdump_args -p 7410 -f auto -c 0 -i 10 #fence_kdump_nodes node1 node2 diff --git a/kexec-tools.spec b/kexec-tools.spec index bf667e8..b3819d9 100644 --- a/kexec-tools.spec +++ b/kexec-tools.spec @@ -3,7 +3,7 @@ %global mkdf_ver 1.7.4 %global mkdf_shortver %(c=%{mkdf_ver}; echo ${c:0:7}) -%define anolis_release 5 +%define anolis_release 6 Name: kexec-tools Version: 2.0.26 @@ -344,6 +344,9 @@ done %doc TODO AUTHORS %changelog +* Mon Jun 03 2024 Yuanhe Shu - 2.0.26-6 +- Omit hibmc-drm module in dump capture kernel (bug#9181) + * Wed Feb 21 2024 Chang Gao - 2.0.26-5 - Update makedumpfile to 1.7.4 (bug#8121) -- Gitee