Accepting request 1038254 from home:jbohac:branches:Kernel:kdump

- Make the kdump-save.service reboot after kdump-save is finished
  (bsc#1204000)

- fix renaming of qeth interfaces (bsc#1204743, bsc#1144337)
- ppc64: rebuild initrd image after migration (bsc#1191410)
- kdumptool calibrate: modify fadump suggestions (jsc#IBM-1027)

OBS-URL: https://build.opensuse.org/request/show/1038254
OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/kdump?expand=0&rev=239
This commit is contained in:
Jiri Bohac 2022-11-25 18:36:17 +00:00 committed by Git OBS Bridge
parent 87bacaa34d
commit b42fa266df
4 changed files with 29 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:97952615648275eca10156764ea36c7ebaa200dfd380c8ec80cf0dea7e1f9dc2
size 2559780

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7646b3942678ea3242109281f3b4e97e53ada13a9750aaa706110c6c1024870c
size 2560348

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Fri Nov 25 17:54:45 UTC 2022 - Jiri Bohac <jbohac@suse.com>
- Make the kdump-save.service reboot after kdump-save is finished
(bsc#1204000)
-------------------------------------------------------------------
Tue Nov 22 17:32:31 UTC 2022 - Jiri Bohac <jbohac@suse.com>
- fix renaming of qeth interfaces (bsc#1204743, bsc#1144337)
- ppc64: rebuild initrd image after migration (bsc#1191410)
- kdumptool calibrate: modify fadump suggestions (jsc#IBM-1027)
-------------------------------------------------------------------
Thu Sep 29 12:42:21 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -49,7 +49,7 @@
%define dracutlibdir %{_prefix}/lib/dracut
Name: kdump
Version: 1.0.2+git20.gcb129d0
Version: 1.0.2+git26.gc6fab38
Release: 0
Summary: Script for kdump
License: GPL-2.0-or-later
@ -96,6 +96,11 @@ Requires: dracut >= 047
Requires: kexec-tools
Requires: makedumpfile
Requires: openssh
%ifarch ppc64 ppc64le
Requires: servicelog
BuildRequires: servicelog
%endif
# FIXME: use proper Requires(pre/post/preun/...)
PreReq: %fillup_prereq
PreReq: /usr/bin/mkdir
@ -186,8 +191,15 @@ if test -d %{_localstatedir}/log/dump && rmdir %{_localstatedir}/log/dump >/dev/
! test -d %{_localstatedir}/log/dump ; then
ln -snf %{_localstatedir}/crash %{_localstatedir}/log/dump
fi
%ifarch ppc64 ppc64le
servicelog_notify --remove --command=/usr/lib/kdump/kdump-migrate-action.sh
servicelog_notify --add --command=/usr/lib/kdump/kdump-migrate-action.sh --match='refcode="#MIGRATE" and serviceable=0' --type=EVENT --method=pairs_stdin
%endif
%preun
%ifarch ppc64 ppc64le
servicelog_notify --remove --command=/usr/lib/kdump/kdump-migrate-action.sh
%endif
echo "Stopping kdump ..."
%service_del_preun kdump.service
%service_del_preun kdump-early.service