Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmod for openSUSE:Factory checked in 
at 2026-06-16 13:46:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kmod (Old)
 and      /work/SRC/openSUSE:Factory/.kmod.new.1981 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kmod"

Tue Jun 16 13:46:59 2026 rev:90 rq:1359593 version:34.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/kmod/kmod.changes        2025-08-29 
18:34:45.360929747 +0200
+++ /work/SRC/openSUSE:Factory/.kmod.new.1981/kmod.changes      2026-06-16 
13:48:32.849012113 +0200
@@ -1,0 +2,5 @@
+Mon Jun 15 13:28:49 UTC 2026 - Andreas Schwab <[email protected]>
+
+- riscv-hwprobe.patch: handle riscv_hwprobe in syscall wrapper, fixes testsuite
+
+-------------------------------------------------------------------

New:
----
  riscv-hwprobe.patch

----------(New B)----------
  New:
- riscv-hwprobe.patch: handle riscv_hwprobe in syscall wrapper, fixes testsuite
----------(New E)----------

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

Other differences:
------------------
++++++ kmod-testsuite.spec ++++++
--- /var/tmp/diff_new_pack.gMNaD7/_old  2026-06-16 13:48:34.553083234 +0200
+++ /var/tmp/diff_new_pack.gMNaD7/_new  2026-06-16 13:48:34.553083234 +0200
@@ -41,6 +41,7 @@
 Patch5:         0011-Do-not-filter-unsupported-modules-when-running-a-van.patch
 Patch6:         0012-modprobe-print-unsupported-status.patch
 Patch7:         Revert-build-check-for-__xstat-declarations.patch
+Patch8:         riscv-hwprobe.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  docbook-xsl-stylesheets

kmod.spec: same change
++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.gMNaD7/_old  2026-06-16 13:48:34.669088076 +0200
+++ /var/tmp/diff_new_pack.gMNaD7/_new  2026-06-16 13:48:34.677088410 +0200
@@ -1,5 +1,5 @@
-mtime: 1756364346
-commit: b87850b21cd64810d689e24b50b6aa95ec684617ec15eaf3afadc8afc7cae1bc
+mtime: 1781530396
+commit: f1b9bfecfa4ea024eef2f292a2bc9c157bf82b6b8454bdac9a0ac33b6613ffce
 url: https://src.opensuse.org/jengelh/kmod
 revision: master
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-06-15 15:33:16.000000000 +0200
@@ -0,0 +1 @@
+.osc



++++++ riscv-hwprobe.patch ++++++
>From 84db2f930f866e70b040000acb276d5621c6bd51 Mon Sep 17 00:00:00 2001
From: Andreas Schwab <[email protected]>
Date: Sun, 29 Jun 2025 12:09:25 +0200
Subject: [PATCH] testsuite/init_module: Handle __NR_riscv_hwprobe in syscall
 wrapper

The libcrypto library constructor calls the riscv_hwprobe syscall through
the syscall wrapper.  Return an error with ENOSYS.

Signed-off-by: Andreas Schwab <[email protected]>
Link: https://github.com/kmod-project/kmod/pull/387
Signed-off-by: Lucas De Marchi <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
---
 testsuite/init_module.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/testsuite/init_module.c b/testsuite/init_module.c
index 8ff2699..c419aa3 100644
--- a/testsuite/init_module.c
+++ b/testsuite/init_module.c
@@ -370,6 +370,13 @@ TS_EXPORT long int syscall(long int __sysno, ...)
                return nextlib_syscall(__NR_gettid);
        }
 
+#ifdef __NR_riscv_hwprobe
+       if (__sysno == __NR_riscv_hwprobe) {
+               errno = ENOSYS;
+               return -1;
+       }
+#endif
+
        /*
         * FIXME: no way to call the libc function due since this is a
         * variadic argument function and we don't have a vsyscall() variant
-- 
2.54.0

Reply via email to