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-09-01 22:09:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdump (Old)
 and      /work/SRC/openSUSE:Factory/.kdump.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdump"

Thu Sep  1 22:09:45 2022 rev:127 rq:1000481 version:1.0.2+git19.g0c60ffb

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdump/kdump.changes      2022-07-31 
23:00:14.963570660 +0200
+++ /work/SRC/openSUSE:Factory/.kdump.new.2083/kdump.changes    2022-09-01 
22:10:33.092142498 +0200
@@ -1,0 +2,5 @@
+Wed Aug 31 12:04:40 UTC 2022 - Jiri Bohac <jbo...@suse.com>
+
+- mkdumprd: replace mkinitrd with native dracut (bsc#1202443) 
+
+-------------------------------------------------------------------

Old:
----
  kdump-1.0.2+git17.g491c742.tar.xz

New:
----
  kdump-1.0.2+git19.g0c60ffb.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kdump.spec ++++++
--- /var/tmp/diff_new_pack.9sSx0F/_old  2022-09-01 22:10:33.724144227 +0200
+++ /var/tmp/diff_new_pack.9sSx0F/_new  2022-09-01 22:10:33.732144249 +0200
@@ -49,7 +49,7 @@
 %define dracutlibdir %{_prefix}/lib/dracut
 
 Name:           kdump
-Version:        1.0.2+git17.g491c742
+Version:        1.0.2+git19.g0c60ffb
 Release:        0
 Summary:        Script for kdump
 License:        GPL-2.0-or-later

++++++ kdump-1.0.2+git17.g491c742.tar.xz -> kdump-1.0.2+git19.g0c60ffb.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdump-1.0.2+git17.g491c742/doc/implementation/Implementation_Guide.txt 
new/kdump-1.0.2+git19.g0c60ffb/doc/implementation/Implementation_Guide.txt
--- old/kdump-1.0.2+git17.g491c742/doc/implementation/Implementation_Guide.txt  
2022-07-08 21:02:04.000000000 +0200
+++ new/kdump-1.0.2+git19.g0c60ffb/doc/implementation/Implementation_Guide.txt  
2022-08-31 14:02:57.000000000 +0200
@@ -160,7 +160,7 @@
 the copy process (via external binary or a library). We need both network 
access
 and disk access in the initrd. For this, we need the disk drivers and network
 drivers and network configuration. This is only a configuration problem since
-everything is already implemented in +mkinitrd+ to provide network boot (NFS
+everything is already implemented in +dracut+ to provide network boot (NFS
 root) facility.
 
 Filtering
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdump-1.0.2+git17.g491c742/doc/man/mkdumprd.8.txt.in 
new/kdump-1.0.2+git19.g0c60ffb/doc/man/mkdumprd.8.txt.in
--- old/kdump-1.0.2+git17.g491c742/doc/man/mkdumprd.8.txt.in    2022-07-08 
21:02:04.000000000 +0200
+++ new/kdump-1.0.2+git19.g0c60ffb/doc/man/mkdumprd.8.txt.in    2022-08-31 
14:02:57.000000000 +0200
@@ -54,7 +54,7 @@
 * the kdump initrd should use no splash screen,
 * the kdump initrd includes *kdumptool*(8) and all required libraries.
 
-This script calls *mkinitrd*(8) with all required parameters. If the initrd
+This script calls *dracut*(8) with all required parameters. If the initrd
 already exists, it checks first if the configuration file or the kernel are
 newer, and only rebuilds the initrd if necessary.
 
@@ -102,7 +102,7 @@
 
 SEE ALSO
 --------
-*kdumptool*(8), *mkinitrd*(8),
+*kdumptool*(8), *dracut*(8),
 http://en.opensuse.org/Kdump[_http://en.opensuse.org/Kdump_]
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdump-1.0.2+git17.g491c742/init/mkdumprd 
new/kdump-1.0.2+git19.g0c60ffb/init/mkdumprd
--- old/kdump-1.0.2+git17.g491c742/init/mkdumprd        2022-07-08 
21:02:04.000000000 +0200
+++ new/kdump-1.0.2+git19.g0c60ffb/init/mkdumprd        2022-08-31 
14:02:57.000000000 +0200
@@ -24,6 +24,7 @@
 QUIET=0
 DEBUG=false
 DRACUT=/usr/bin/dracut
+UPDATE_BOOTLOADER=/sbin/update-bootloader
 
 #
 # Prints usage.                                                              
{{{
@@ -76,12 +77,13 @@
 {
     # With fadump, this script has no control over which kernel will
     # be booted after a crash, but any installed kernel can be used
-    # to save the dump. Consequently, let mkinitrd regenerate initrd
+    # to save the dump. Consequently, let dracut regenerate initrd
     # for all installed kernels.
 
-    $DEBUG && export dracut_args="--debug"
+    DRACUT_ARGS="--force --regenerate-all"
+    $DEBUG && DRACUT_ARGS="--debug $DRACUT_ARGS"
     echo "Regenerating all initrds ..." >&2
-    eval "bash -$- /sbin/mkinitrd"
+    eval "bash -$- $DRACUT $DRACUT_ARGS && type -P $UPDATE_BOOTLOADER &> 
/dev/null && $UPDATE_BOOTLOADER --refresh"
 }                                                                          # 
}}}
 
 #

Reply via email to