commit kdump for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdump for openSUSE:Factory checked in at 2022-07-31 23:00:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdump (Old) and /work/SRC/openSUSE:Factory/.kdump.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "kdump" Sun Jul 31 23:00:12 2022 rev:126 rq:989496 version:1.0.2+git17.g491c742 Changes: -------- --- /work/SRC/openSUSE:Factory/kdump/kdump.changes 2022-06-08 14:24:27.452467905 +0200 +++ /work/SRC/openSUSE:Factory/.kdump.new.1533/kdump.changes 2022-07-31 23:00:14.963570660 +0200 @@ -1,0 +2,8 @@ +Fri Jul 8 19:05:10 UTC 2022 - Jiri Bohac <jbohac@suse.com> + +- fix network-related dracut options handling for fadump case +- drop the elevator=deadline kernel option (bsc#1193211) +- fix broken URL in manpage (bsc#1187312) + + +------------------------------------------------------------------- Old: ---- kdump-1.0.2+git13.ge715180.tar.xz New: ---- kdump-1.0.2+git17.g491c742.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdump.spec ++++++ --- /var/tmp/diff_new_pack.PxfyCE/_old 2022-07-31 23:00:16.039573786 +0200 +++ /var/tmp/diff_new_pack.PxfyCE/_new 2022-07-31 23:00:16.043573798 +0200 @@ -49,7 +49,7 @@ %define dracutlibdir %{_prefix}/lib/dracut Name: kdump -Version: 1.0.2+git13.ge715180 +Version: 1.0.2+git17.g491c742 Release: 0 Summary: Script for kdump License: GPL-2.0-or-later @@ -200,18 +200,6 @@ %service_del_postun kdump.service %service_del_postun kdump-early.service -# Compatibility cruft -# there is no %%license prior to SLE12 -%if %{undefined _defaultlicensedir} -%define license %doc -%else -# filesystem before SLE12 SP3 lacks /usr/share/licenses -%if 0%(test ! -d %{_defaultlicensedir} && echo 1) -%define _defaultlicensedir %{_defaultdocdir} -%endif -%endif -# End of compatibility cruft - %files %defattr(-,root,root) %license COPYING ++++++ kdump-1.0.2+git13.ge715180.tar.xz -> kdump-1.0.2+git17.g491c742.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-1.0.2+git13.ge715180/doc/man/kdump.5.txt.in new/kdump-1.0.2+git17.g491c742/doc/man/kdump.5.txt.in --- old/kdump-1.0.2+git13.ge715180/doc/man/kdump.5.txt.in 2022-04-20 17:11:36.000000000 +0200 +++ new/kdump-1.0.2+git17.g491c742/doc/man/kdump.5.txt.in 2022-07-08 21:02:04.000000000 +0200 @@ -157,7 +157,6 @@ * any _console_ parameters (for serial console), * _irqpoll_, * _reset_devices_, -* _elevator=deadline_ to save the memory footprint. The last three parameters are special for kdump and should always be included, if you don't have a good reason to exclude them. @@ -918,8 +917,7 @@ SEE ALSO -------- -*kexec*(8), *kdump*(5), *makedumpfile*(8), *mkdumprd*(8) -http://en.opensuse.org/Kdump[_http://en.opensuse.org/Kdump_] - +*kexec*(8), *kdump*(5), *makedumpfile*(8), *mkdumprd*(8), +The Kexec and Kdump chapter in the SUSE System Analysis and Tuning Guide // vim: set sw=4 ts=4 et tw=80 fdm=marker: :collapseFolds=1: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-1.0.2+git13.ge715180/dracut/module-setup.sh new/kdump-1.0.2+git17.g491c742/dracut/module-setup.sh --- old/kdump-1.0.2+git13.ge715180/dracut/module-setup.sh 2022-04-20 17:11:36.000000000 +0200 +++ new/kdump-1.0.2+git17.g491c742/dracut/module-setup.sh 2022-07-08 21:02:04.000000000 +0200 @@ -178,7 +178,15 @@ kdump_ip_set_explicitly() { local _opt - for _opt in $KDUMP_COMMANDLINE $KDUMP_COMMANDLINE_APPEND + local opts + + if [ "$KDUMP_FADUMP" = yes ]; then + _opts="`cat /proc/cmdline`" + else + _opts="$KDUMP_COMMANDLINE $KDUMP_COMMANDLINE_APPEND" + fi + + for _opt in $_opts do if [ "${_opt%%=*}" = "ip" -a \ "${_opt#*=}" != "$_opt" ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-1.0.2+git13.ge715180/init/load.sh new/kdump-1.0.2+git17.g491c742/init/load.sh --- old/kdump-1.0.2+git13.ge715180/init/load.sh 2022-04-20 17:11:36.000000000 +0200 +++ new/kdump-1.0.2+git17.g491c742/init/load.sh 2022-07-08 21:02:04.000000000 +0200 @@ -120,8 +120,7 @@ if [ ${KDUMP_CPUS:-1} -ne 0 ] ; then nr_cpus=$(cpus_param "$kdump_kernel")=${KDUMP_CPUS:-1} fi - # Use deadline for saving the memory footprint - commandline="$commandline elevator=deadline sysrq=yes reset_devices acpi_no_memhotplug cgroup_disable=memory nokaslr" + commandline="$commandline sysrq=yes reset_devices acpi_no_memhotplug cgroup_disable=memory nokaslr" commandline="$commandline numa=off" commandline="$commandline irqpoll ${nr_cpus}" commandline="$commandline root=kdump rootflags=bind rd.udev.children-max=8"
participants (1)
-
Source-Sync