Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package supermin for openSUSE:Factory checked in at 2024-10-23 21:10:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/supermin (Old) and /work/SRC/openSUSE:Factory/.supermin.new.26871 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "supermin" Wed Oct 23 21:10:10 2024 rev:27 rq:1217087 version:5.3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/supermin/supermin.changes 2024-09-05 15:47:56.237938919 +0200 +++ /work/SRC/openSUSE:Factory/.supermin.new.26871/supermin.changes 2024-10-23 21:11:25.805574702 +0200 @@ -1,0 +2,6 @@ +Mon Oct 21 15:28:41 MDT 2024 - carn...@suse.com + +- Detect the correct kernel on aarch64 (jsc#PED-10545) + detect-aarch64-kernel.patch + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ detect-aarch64-kernel.patch ++++++ --- /var/tmp/diff_new_pack.hN8fPO/_old 2024-10-23 21:11:26.297595242 +0200 +++ /var/tmp/diff_new_pack.hN8fPO/_new 2024-10-23 21:11:26.301595409 +0200 @@ -1,19 +1,26 @@ References: bsc#1187532 - virt-make-fs hangs forever -Index: supermin-5.3.3/src/format_ext2_kernel.ml +Index: supermin-5.3.5/src/format_ext2_kernel.ml =================================================================== ---- supermin-5.3.3.orig/src/format_ext2_kernel.ml -+++ supermin-5.3.3/src/format_ext2_kernel.ml -@@ -155,7 +155,7 @@ and find_kernel_from_boot debug host_cpu +--- supermin-5.3.5.orig/src/format_ext2_kernel.ml ++++ supermin-5.3.5/src/format_ext2_kernel.ml +@@ -155,7 +155,14 @@ and find_kernel_from_boot debug host_cpu if files <> [] then files else ( (* In original: ls -1dvr /boot/vmlinuz-* 2>/dev/null | grep -v xen *) - let files = files_matching_globs ["vmlinu?-*"] all_files in -+ let files = files_matching_globs ["vmlinu?-*"; "Image-*"] all_files in ++ let files = ++ if string_prefix "aarch64" host_cpu ++ then ( ++ files_matching_globs ["Image-*"] all_files ++ ) ++ else ( ++ files_matching_globs ["vmlinu?-*"] all_files ++ ) in let files = ignore_unbootable_kernels host_cpu files in files ) in -@@ -262,9 +262,14 @@ and get_kernel_version debug kernel_file +@@ -262,9 +269,14 @@ and get_kernel_version debug kernel_file else ( basename ) in