commit 6aca25404404e4f72fa252563503b29fe5828cca
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=2086
This commit is contained in:
parent
c87d06c51e
commit
c06d2250c1
@ -33,6 +33,7 @@
|
||||
<overwrite>
|
||||
<conditions>
|
||||
<package>kernel-syzkaller</package>
|
||||
<package>kernel-source:kernel-syzkaller</package>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<physicalmemory>
|
||||
@ -61,6 +62,8 @@
|
||||
<conditions>
|
||||
<package>kernel-docs</package>
|
||||
<package>kernel-docs-rt</package>
|
||||
<package>kernel-source:kernel-docs</package>
|
||||
<package>kernel-source-rt:kernel-docs-rt</package>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<physicalmemory>
|
||||
@ -286,6 +289,7 @@
|
||||
<arch>i586</arch>
|
||||
<arch>x86_64</arch>
|
||||
<package>kernel-obs-qa</package>
|
||||
<package>kernel-source:kernel-obs-qa</package>
|
||||
</conditions>
|
||||
<sandbox>kvm</sandbox>
|
||||
</overwrite>
|
||||
@ -295,6 +299,7 @@
|
||||
<arch>i586</arch>
|
||||
<arch>x86_64</arch>
|
||||
<package>kernel-obs-qa-xen</package>
|
||||
<package>kernel-source:kernel-obs-qa-xen</package>
|
||||
</conditions>
|
||||
<sandbox>xen</sandbox>
|
||||
</overwrite>
|
||||
|
@ -18,6 +18,7 @@
|
||||
<overwrite>
|
||||
<conditions>
|
||||
<package>kernel-syzkaller</package>
|
||||
<package>kernel-source:kernel-syzkaller</package>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<physicalmemory>
|
||||
@ -46,6 +47,8 @@
|
||||
<conditions>
|
||||
<package>kernel-docs</package>
|
||||
<package>kernel-docs-rt</package>
|
||||
<package>kernel-source:kernel-docs</package>
|
||||
<package>kernel-source-rt:kernel-docs-rt</package>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<physicalmemory>
|
||||
@ -166,6 +169,7 @@
|
||||
<arch>i586</arch>
|
||||
<arch>x86_64</arch>
|
||||
<package>kernel-obs-qa</package>
|
||||
<package>kernel-source:kernel-obs-qa</package>
|
||||
</conditions>
|
||||
<sandbox>kvm</sandbox>
|
||||
</overwrite>
|
||||
@ -175,6 +179,7 @@
|
||||
<arch>i586</arch>
|
||||
<arch>x86_64</arch>
|
||||
<package>kernel-obs-qa-xen</package>
|
||||
<package>kernel-source:kernel-obs-qa-xen</package>
|
||||
</conditions>
|
||||
<sandbox>xen</sandbox>
|
||||
</overwrite>
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
Name: dtb-aarch64
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
Name: dtb-armv6l
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
Name: dtb-armv7l
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
Name: dtb-riscv64
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define build_html 1
|
||||
%define build_pdf 0
|
||||
@ -33,7 +33,7 @@ License: GPL-2.0-only
|
||||
Group: Documentation/Man
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -44,7 +44,7 @@ BuildRequires: util-linux
|
||||
%endif
|
||||
%endif
|
||||
%endif
|
||||
BuildRequires: kernel%kernel_flavor-srchash-9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
BuildRequires: kernel%kernel_flavor-srchash-6aca25404404e4f72fa252563503b29fe5828cca
|
||||
|
||||
%if 0%{?rhel_version}
|
||||
BuildRequires: kernel
|
||||
@ -62,7 +62,7 @@ License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -38,7 +38,7 @@ License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -33,7 +33,7 @@
|
||||
Name: kernel-source
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -28,7 +28,7 @@ Group: Development/Sources
|
||||
Version: 6.7.1
|
||||
%if %using_buildservice
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 07:27:41 CET 2024 - jslaby@suse.cz
|
||||
|
||||
- rpm/constraints.in: add static multibuild packages
|
||||
Commit 841012b049a5 (rpm/mkspec: use kernel-source: prefix for
|
||||
constraints on multibuild) added "kernel-source:" prefix to the
|
||||
dynamically generated kernels. But there are also static ones like
|
||||
kernel-docs. Those fail to build as the constraints are still not
|
||||
applied.
|
||||
So add the prefix also to the static ones.
|
||||
Note kernel-docs-rt is given kernel-source-rt prefix. I am not sure it
|
||||
will ever be multibuilt...
|
||||
- commit c2e0681
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:41:57 CET 2024 - msuchanek@suse.de
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define srcversion 6.7
|
||||
%define patchversion 6.7.1
|
||||
%define git_commit 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
%define git_commit 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@ -115,7 +115,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 6.7.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g9872dbe
|
||||
Release: <RELEASE>.g6aca254
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,3 @@
|
||||
2024-01-25 15:01:09 +0000
|
||||
GIT Revision: 9872dbee1f86ee3b4f45557ce7c054ff581f245d
|
||||
2024-01-26 06:32:58 +0000
|
||||
GIT Revision: 6aca25404404e4f72fa252563503b29fe5828cca
|
||||
GIT Branch: stable
|
||||
|
Loading…
Reference in New Issue
Block a user