Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdump for openSUSE:Factory checked in at 2024-11-17 16:39:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdump (Old) and /work/SRC/openSUSE:Factory/.kdump.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdump" Sun Nov 17 16:39:33 2024 rev:152 rq:1224499 version:2.0.11 Changes: -------- --- /work/SRC/openSUSE:Factory/kdump/kdump.changes 2024-10-31 16:08:47.101605668 +0100 +++ /work/SRC/openSUSE:Factory/.kdump.new.2017/kdump.changes 2024-11-17 16:39:35.183214256 +0100 @@ -1,0 +2,7 @@ +Fri Nov 8 17:14:49 UTC 2024 - Jiri Bohac <jbo...@suse.com> + +- upgrade to version 2.0.11 + * fadump mkinitrd: propagate --debug to the inner dracut call + * mkdumprd: look for kernel image under /boot as well + +------------------------------------------------------------------- Old: ---- kdump-2.0.10+git0.g62142dd.tar.xz New: ---- kdump-2.0.11.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdump.spec ++++++ --- /var/tmp/diff_new_pack.seonmF/_old 2024-11-17 16:39:35.851242004 +0100 +++ /var/tmp/diff_new_pack.seonmF/_new 2024-11-17 16:39:35.855242170 +0100 @@ -57,7 +57,7 @@ %define dracutlibdir %{_prefix}/lib/dracut Name: kdump -Version: 2.0.10+git0.g62142dd +Version: 2.0.11 Release: 0 Summary: Kernel crash dump scripts and utilities License: GPL-2.0-or-later ++++++ kdump-2.0.10+git0.g62142dd.tar.xz -> kdump-2.0.11.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.10+git0.g62142dd/NEWS new/kdump-2.0.11/NEWS --- old/kdump-2.0.10+git0.g62142dd/NEWS 2024-10-23 17:30:54.000000000 +0200 +++ new/kdump-2.0.11/NEWS 2024-11-07 16:55:46.000000000 +0100 @@ -1,3 +1,8 @@ +2.0.11 +------ + * fadump mkinitrd: propagate --debug to the inner dracut call + * mkdumprd: look for kernel image under /boot as well + 2.0.10 ------ * calibrate: don't add percentage margin on top of LUKS memory (bsc#1229207) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.10+git0.g62142dd/dracut/fadump-module-setup.sh new/kdump-2.0.11/dracut/fadump-module-setup.sh --- old/kdump-2.0.10+git0.g62142dd/dracut/fadump-module-setup.sh 2024-10-23 17:30:54.000000000 +0200 +++ new/kdump-2.0.11/dracut/fadump-module-setup.sh 2024-11-07 16:55:46.000000000 +0100 @@ -22,11 +22,13 @@ install() { local _fadumpdir="$initdir/fadumproot" + local debug_arg="" + [[ -n "$debug" ]] && debug_arg="-d" mkdir -p "$_fadumpdir" || return 1 dinfo "****** Generating FADUMP initrd *******" - mkdumprd -F -I "$_fadumpdir/initrd" -K "$kernel" || return 1 + mkdumprd $debug_arg -F -I "$_fadumpdir/initrd" -K "$kernel" || return 1 pushd "$_fadumpdir" || return 1 cpio -id --preserve-modification-time --quiet < initrd || return 1 rm -f initrd diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.10+git0.g62142dd/init/mkdumprd new/kdump-2.0.11/init/mkdumprd --- old/kdump-2.0.10+git0.g62142dd/init/mkdumprd 2024-10-23 17:30:54.000000000 +0200 +++ new/kdump-2.0.11/init/mkdumprd 2024-11-07 16:55:46.000000000 +0100 @@ -268,10 +268,12 @@ fi else # look for the specified version in - # /usr/lib/modules/$KDUMP_KERNELVER/ + # /usr/lib/modules/$KDUMP_KERNELVER/ or /boot/$IMAGE-$KDUMP_KERNELVER for i in vmlinuz image Image vmlinux; do KERNEL="/usr/lib/modules/$KDUMP_KERNELVER/${i}" [[ -f $KERNEL ]] && break + KERNEL="/boot/${i}-${KDUMP_KERNELVER}" + [[ -f $KERNEL ]] && break done fi fi