commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=2203
This commit is contained in:
Kernel Bugs 2024-08-02 06:37:33 +00:00 committed by Git OBS Bridge
parent 9f32c41a8f
commit 6538400c33
38 changed files with 290 additions and 34 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-aarch64
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-armv6l
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-armv7l
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-riscv64
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

2
guards
View File

@ -205,7 +205,7 @@ if ($check) {
# This is not an error if the entries are mutually exclusive...
}
}
exit $problems ? 1 : 0;
exit ($problems ? 1 : 0);
} elsif ($list) {
parse($fh, sub {

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-64kb
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-debug
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-default
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -18,7 +18,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define build_html 1
%define build_pdf 0
@ -30,7 +30,7 @@
Name: kernel-docs
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-kvmsmall
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-lpae
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -38,7 +38,7 @@
%endif
%endif
%endif
%global kernel_package kernel%kernel_flavor-srchash-f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%global kernel_package kernel%kernel_flavor-srchash-58e734c118cfd259476e1adecc9f5c9525b1cfd3
%endif
%if 0%{?rhel_version}
%global kernel_package kernel
@ -47,7 +47,7 @@
Name: kernel-obs-build
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -25,7 +25,7 @@
Name: kernel-obs-qa
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-pae
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -18,7 +18,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -28,7 +28,7 @@
Name: kernel-source
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -16,7 +16,7 @@
#
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -25,7 +25,7 @@ Name: kernel-syms
Version: 6.10.2
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-vanilla
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 31 18:30:17 CEST 2024 - ddiss@suse.de
- apparmor: unpack transition table if dfa is not present (bsc#1226031).
- commit 58e734c
-------------------------------------------------------------------
Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
@ -10,6 +16,15 @@ Wed Jul 31 11:43:20 CEST 2024 - jslaby@suse.cz
Let's resort back to a revert.
- commit f800dd5
-------------------------------------------------------------------
Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com
- rpm/guards: fix precedence issue with control flow operator
With perl 5.40 it report the following error on rpm/guards script:
Possible precedence issue with control flow operator (exit) at scripts/guards line 208.
Fix the issue by adding parenthesis around ternary operator.
- commit 07b8b4e
-------------------------------------------------------------------
Mon Jul 29 10:51:47 CEST 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.10
%define patchversion 6.10.2
%define git_commit f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
%define git_commit 58e734c118cfd259476e1adecc9f5c9525b1cfd3
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -38,7 +38,7 @@
Name: kernel-zfcpdump
Version: 6.10.2
%if 0%{?is_kotd}
Release: <RELEASE>.gf800dd5
Release: <RELEASE>.g58e734c
%else
Release: 0
%endif

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:40f32e7116ba4be4c5d8f7861ee1ecdfb3b22a1bdf41ba07e8b82a6040810158
size 39269
oid sha256:30a1e2f7ddf87aa0a88bd6b6a0f83290d8244257ed01d039e065787b763c489a
size 40237

View File

@ -99,6 +99,7 @@
# sorted patches
########################################################
patches.suse/drm-qxl-Pin-buffer-objects-for-internal-mappings.patch
patches.suse/apparmor-unpack-transition-table-if-dfa-is-not-prese.patch
########################################################
# end of sorted patches

View File

@ -1,3 +1,3 @@
2024-07-31 09:49:17 +0000
GIT Revision: f800dd5c8c5172c38bca5f3a1c677ccfa2ebbdac
2024-08-01 05:11:58 +0000
GIT Revision: 58e734c118cfd259476e1adecc9f5c9525b1cfd3
GIT Branch: stable