Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package supermin for openSUSE:Factory checked in at 2026-05-26 16:34:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/supermin (Old) and /work/SRC/openSUSE:Factory/.supermin.new.2084 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "supermin" Tue May 26 16:34:28 2026 rev:29 rq:1355121 version:5.3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/supermin/supermin.changes 2025-04-20 20:10:22.439173017 +0200 +++ /work/SRC/openSUSE:Factory/.supermin.new.2084/supermin.changes 2026-05-26 16:34:38.757521067 +0200 @@ -1,0 +2,6 @@ +Mon May 18 09:33:16 MDT 2026 - [email protected] + +- Detect the correct kernel on s390x (bsc#1206361, jsc#PED-14625) + detect-s390x-kernel.patch + +------------------------------------------------------------------- New: ---- detect-s390x-kernel.patch ----------(New B)---------- New:- Detect the correct kernel on s390x (bsc#1206361, jsc#PED-14625) detect-s390x-kernel.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ supermin.spec ++++++ --- /var/tmp/diff_new_pack.JqgYjt/_old 2026-05-26 16:34:39.405547877 +0200 +++ /var/tmp/diff_new_pack.JqgYjt/_new 2026-05-26 16:34:39.405547877 +0200 @@ -1,7 +1,7 @@ # # spec file for package supermin # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,7 +29,8 @@ Patch30: suse_release.patch Patch31: supermin-kernel_version_compressed.patch Patch32: detect-aarch64-kernel.patch -Patch33: add-rpm-database-location.patch +Patch33: detect-s390x-kernel.patch +Patch34: add-rpm-database-location.patch BuildRequires: augeas BuildRequires: autoconf BuildRequires: automake ++++++ detect-s390x-kernel.patch ++++++ Index: supermin-5.3.5/src/format_ext2_kernel.ml =================================================================== --- supermin-5.3.5.orig/src/format_ext2_kernel.ml +++ supermin-5.3.5/src/format_ext2_kernel.ml @@ -156,9 +156,9 @@ and find_kernel_from_boot debug host_cpu else ( (* In original: ls -1dvr /boot/vmlinuz-* 2>/dev/null | grep -v xen *) let files = - if string_prefix "aarch64" host_cpu + if string_prefix "aarch64" host_cpu || string_prefix "s390x" host_cpu then ( - files_matching_globs ["Image-*"] all_files + files_matching_globs ["?mage-*"] all_files ) else ( files_matching_globs ["vmlinu?-*"] all_files @@ -269,10 +269,11 @@ and get_kernel_version debug kernel_file else ( basename ) in - if string_prefix "vmlinuz-" basename || string_prefix "vmlinux-" basename || string_prefix "Image-" basename + if string_prefix "vmlinuz-" basename || string_prefix "vmlinux-" basename || string_prefix "Image-" basename || string_prefix "image-" basename then ( let version = - if string_prefix "Image-" basename then ( + if string_prefix "Image-" basename || string_prefix "image-" basename + then ( String.sub basename 6 (String.length basename - 6) ) else ( String.sub basename 8 (String.length basename - 8)
