commit d5202b17bd514931434475b17be6af720d507e8d
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=1790
This commit is contained in:
parent
e766f7957f
commit
3d40d19de7
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -31,7 +31,7 @@
|
||||
Name: dtb-aarch64
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -31,7 +31,7 @@
|
||||
Name: dtb-armv6l
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -31,7 +31,7 @@
|
||||
Name: dtb-armv7l
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -31,7 +31,7 @@
|
||||
Name: dtb-riscv64
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%ifarch ppc64
|
||||
Provides: kernel-kdump = 2.6.28
|
||||
Obsoletes: kernel-kdump <= 2.6.28
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%ifarch %ix86
|
||||
Provides: kernel-smp = 2.6.17
|
||||
Obsoletes: kernel-smp <= 2.6.17
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -33,7 +33,7 @@ License: GPL-2.0-only
|
||||
Group: Documentation/Man
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -67,7 +67,7 @@ BuildRequires: texlive-zapfding
|
||||
%endif
|
||||
URL: https://www.kernel.org/
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -45,7 +45,7 @@ BuildRequires: util-linux
|
||||
%endif
|
||||
%endif
|
||||
%endif
|
||||
BuildRequires: kernel%kernel_flavor-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
BuildRequires: kernel%kernel_flavor-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
|
||||
%if 0%{?rhel_version}
|
||||
BuildRequires: kernel
|
||||
@ -66,7 +66,7 @@ License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -38,7 +38,7 @@ License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%ifarch %ix86
|
||||
Provides: kernel-bigsmp = 2.6.17
|
||||
Obsoletes: kernel-bigsmp <= 2.6.17
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -33,7 +33,7 @@
|
||||
Name: kernel-source
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -50,7 +50,7 @@ BuildRequires: fdupes
|
||||
BuildRequires: sed
|
||||
Requires(post): coreutils sed
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: linux
|
||||
Provides: multiversion(kernel)
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
@ -221,7 +221,7 @@ pushd %{buildroot}/usr/src
|
||||
|
||||
# Unpack the vanilla kernel sources
|
||||
tar -xf %{S:0}
|
||||
find . -type l | while read f; do test -e "$f" || rm -v "$f"; done
|
||||
find . -xtype l -delete -printf "deleted '%f'\n"
|
||||
if test "%srcversion" != "%kernelrelease%variant"; then
|
||||
mv linux-%srcversion linux-%kernelrelease%variant
|
||||
fi
|
||||
|
@ -221,7 +221,7 @@ pushd %{buildroot}/usr/src
|
||||
|
||||
# Unpack the vanilla kernel sources
|
||||
tar -xf %{S:0}
|
||||
find . -type l | while read f; do test -e "$f" || rm -v "$f"; done
|
||||
find . -xtype l -delete -printf "deleted '%f'\n"
|
||||
if test "%srcversion" != "%kernelrelease%variant"; then
|
||||
mv linux-%srcversion linux-%kernelrelease%variant
|
||||
fi
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -27,7 +27,7 @@ Group: Development/Sources
|
||||
Version: 5.19.6
|
||||
%if %using_buildservice
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -52,7 +52,7 @@ Requires: kernel-pae-devel = %version-%source_rel
|
||||
%endif
|
||||
Requires: pesign-obs-integration
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: multiversion(kernel)
|
||||
Source: README.KSYMS
|
||||
Requires: kernel-devel%variant = %version-%source_rel
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 08:37:32 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: simplify finding of broken symlinks
|
||||
"find -xtype l" will report them, so use that to make the search a bit
|
||||
faster (without using shell).
|
||||
- commit 13bbc51
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 1 07:18:53 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
@ -8235,7 +8243,7 @@ Wed May 25 10:49:52 CEST 2022 - jslaby@suse.cz
|
||||
Mon May 23 16:07:21 CEST 2022 - schwab@suse.de
|
||||
|
||||
- Add dtb-starfive
|
||||
- commit 9633cc7
|
||||
- commit 85335b1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 13:51:00 CEST 2022 - mkubecek@suse.cz
|
||||
@ -31993,7 +32001,7 @@ Wed Jun 23 16:52:00 CEST 2021 - jslaby@suse.cz
|
||||
Wed Jun 23 11:54:08 CEST 2021 - schwab@suse.de
|
||||
|
||||
- Add dtb-microchip
|
||||
- commit 493fa09
|
||||
- commit c797107
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 00:59:21 CEST 2021 - mkubecek@suse.cz
|
||||
@ -41680,7 +41688,18 @@ Mon Mar 1 09:45:08 CET 2021 - mkubecek@suse.cz
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 53dcfbe
|
||||
[jslaby] It's not that temporary as we are dragging this for quite some
|
||||
time in master. The reason is that this can happen any time again, so
|
||||
let's have this in packaging instead.
|
||||
- rpm/kernel-source.spec.in: temporary workaround for a build failure
|
||||
Upstream c6x architecture removal left a dangling link behind which
|
||||
triggers openSUSE post-build check in kernel-source, failing
|
||||
kernel-source build.
|
||||
A fix deleting the danglink link has been submitted but it did not make
|
||||
it into 5.12-rc1. Unfortunately we cannot add it as a patch as patch
|
||||
utility does not handle symlink removal. Add a temporary band-aid which
|
||||
deletes all dangling symlinks after unpacking the kernel source tarball.
|
||||
- commit 52a1ad7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 28 18:21:59 CET 2021 - schwab@suse.de
|
||||
|
@ -112,7 +112,7 @@ License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.19.6
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gd9b2122
|
||||
Release: <RELEASE>.gd5202b1
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -239,10 +239,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: kernel-%build_flavor-base-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
Provides: kernel-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
Provides: %name-srchash-d5202b17bd514931434475b17be6af720d507e8d
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,3 @@
|
||||
2022-09-01 05:50:21 +0000
|
||||
GIT Revision: d9b2122e2a3f78da96f62fc36d96f192623bddbe
|
||||
2022-09-02 05:22:30 +0000
|
||||
GIT Revision: d5202b17bd514931434475b17be6af720d507e8d
|
||||
GIT Branch: stable
|
||||
|
Loading…
Reference in New Issue
Block a user