Hello community, here is the log from the commit of package grub2 for openSUSE:Factory checked in at 2020-05-26 17:14:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/grub2 (Old) and /work/SRC/openSUSE:Factory/.grub2.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "grub2" Tue May 26 17:14:05 2020 rev:221 rq:807543 version:2.04 Changes: -------- --- /work/SRC/openSUSE:Factory/grub2/grub2.changes 2020-05-08 23:01:18.105365857 +0200 +++ /work/SRC/openSUSE:Factory/.grub2.new.2738/grub2.changes 2020-05-26 17:14:20.891329674 +0200 @@ -1,0 +2,6 @@ +Mon May 18 08:15:01 UTC 2020 - Michael Chang <mch...@suse.com> + +- Skip zfcpdump kernel from the grub boot menu (bsc#1166513) + * grub2-s390x-skip-zfcpdump-image.patch + +------------------------------------------------------------------- New: ---- grub2-s390x-skip-zfcpdump-image.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ grub2.spec ++++++ --- /var/tmp/diff_new_pack.0pwkSd/_old 2020-05-26 17:14:22.683333559 +0200 +++ /var/tmp/diff_new_pack.0pwkSd/_new 2020-05-26 17:14:22.683333559 +0200 @@ -225,6 +225,7 @@ Patch94: grub2-install-fix-not-a-directory-error.patch Patch95: grub2-verifiers-fix-system-freeze-if-verify-failed.patch Patch96: grub-install-force-journal-draining-to-ensure-data-i.patch +Patch97: grub2-s390x-skip-zfcpdump-image.patch # Btrfs snapshot booting related patches Patch101: grub2-btrfs-01-add-ability-to-boot-from-subvolumes.patch Patch102: grub2-btrfs-02-export-subvolume-envvars.patch @@ -548,6 +549,7 @@ %patch94 -p1 %patch95 -p1 %patch96 -p1 +%patch97 -p1 %patch101 -p1 %patch102 -p1 %patch103 -p1 ++++++ grub2-s390x-skip-zfcpdump-image.patch ++++++ Index: grub-2.04/util/grub-mkconfig_lib.in =================================================================== --- grub-2.04.orig/util/grub-mkconfig_lib.in +++ grub-2.04/util/grub-mkconfig_lib.in @@ -189,6 +189,12 @@ grub_file_is_not_garbage () *.rpmsave|*.rpmnew) return 1 ;; README*|*/README*) return 1 ;; # documentation *.sig) return 1 ;; # signatures + # Skip zfcpdump kernel from the grub boot menu (bsc#1166513) The zfcpdump + # kernel image is used by zipl to prepare a SCSI dump disc and is only + # intended to boot from that disk for creating kernel crash dumps, + # therefore booting it from grub is not making sense and also will result + # in unbootable system. + *-zfcpdump) return 1 ;; # s390 zfcpdump image esac else return 1