Hello community, here is the log from the commit of package grub2 for openSUSE:Leap:15.2 checked in at 2020-05-26 18:32:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/grub2 (Old) and /work/SRC/openSUSE:Leap:15.2/.grub2.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "grub2" Tue May 26 18:32:29 2020 rev:82 rq:808210 version:2.04 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/grub2/grub2.changes 2020-05-12 11:31:48.931670653 +0200 +++ /work/SRC/openSUSE:Leap:15.2/.grub2.new.2738/grub2.changes 2020-05-26 18:32:36.841606417 +0200 @@ -1,0 +2,6 @@ +Mon May 18 08:15:01 UTC 2020 - Michael Chang <[email protected]> + +- 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.kNcRXD/_old 2020-05-26 18:32:38.153609282 +0200 +++ /var/tmp/diff_new_pack.kNcRXD/_new 2020-05-26 18:32:38.157609291 +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
