commit 44ca817f15b215421a4c788790dd5351c186d1df

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=1891
This commit is contained in:
Jiri Slaby 2023-03-09 06:13:29 +00:00 committed by Git OBS Bridge
parent 4ab3529f1b
commit d746fe4b2d
39 changed files with 796 additions and 60 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6501904e216440a5c5037b7624ed160a45cc3415dc9f2a2e5d89f544a6d7e02
size 290688
oid sha256:d2b4ef5abed73ac005a1d357fd090d5e56b2ea4c619ab81a1bf8afbd396bb346
size 290654

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -31,7 +31,7 @@
Name: dtb-aarch64
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -31,7 +31,7 @@
Name: dtb-armv6l
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -31,7 +31,7 @@
Name: dtb-armv7l
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -31,7 +31,7 @@
Name: dtb-riscv64
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif

View File

@ -66,7 +66,7 @@ sub calc_dirs
do {
$path =~ s{/[^/]+$}{};
$dirs{$path} = 1;
} while ($path ne $base);
} while ($path ne $base and $path ne "");
# This loop also makes sure that $base itself is included.
}

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%ifarch ppc64
Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%ifarch %ix86
Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -33,7 +33,7 @@ License: GPL-2.0-only
Group: Documentation/Man
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%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-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -82,23 +82,28 @@ END { exit(! good) }
' $spec
)
%pre -n %{-n*}-kmp-%1
%{-b:KMP_NEEDS_MKINITRD=1} /usr/lib/module-init-tools/kernel-scriptlets/kmp-pre --name "%{-n*}-kmp-%1" \
%{-b:KMP_NEEDS_MKINITRD=1; export KMP_NEEDS_MKINITRD}
/usr/lib/module-init-tools/kernel-scriptlets/kmp-pre --name "%{-n*}-kmp-%1" \
--version "%_this_kmp_version" --release "%{-r*}" --kernelrelease "%2" \
--flavor "%1" --usrmerged "0%{?usrmerged}" "$@"
%post -n %{-n*}-kmp-%1
%{-b:KMP_NEEDS_MKINITRD=1} /usr/lib/module-init-tools/kernel-scriptlets/kmp-post --name "%{-n*}-kmp-%1" \
%{-b:KMP_NEEDS_MKINITRD=1; export KMP_NEEDS_MKINITRD}
/usr/lib/module-init-tools/kernel-scriptlets/kmp-post --name "%{-n*}-kmp-%1" \
--version "%_this_kmp_version" --release "%{-r*}" --kernelrelease "%2" \
--flavor "%1" --usrmerged "0%{?usrmerged}" "$@"
%preun -n %{-n*}-kmp-%1
%{-b:KMP_NEEDS_MKINITRD=1} %run_if_exists /usr/lib/module-init-tools/kernel-scriptlets/kmp-preun --name "%{-n*}-kmp-%1" \
%{-b:KMP_NEEDS_MKINITRD=1; export KMP_NEEDS_MKINITRD}
%run_if_exists /usr/lib/module-init-tools/kernel-scriptlets/kmp-preun --name "%{-n*}-kmp-%1" \
--version "%_this_kmp_version" --release "%{-r*}" --kernelrelease "%2" \
--flavor "%1" --usrmerged "0%{?usrmerged}" "$@"
%postun -n %{-n*}-kmp-%1
%{-b:KMP_NEEDS_MKINITRD=1} %run_if_exists /usr/lib/module-init-tools/kernel-scriptlets/kmp-postun --name "%{-n*}-kmp-%1" \
%{-b:KMP_NEEDS_MKINITRD=1; export KMP_NEEDS_MKINITRD}
%run_if_exists /usr/lib/module-init-tools/kernel-scriptlets/kmp-postun --name "%{-n*}-kmp-%1" \
--version "%_this_kmp_version" --release "%{-r*}" --kernelrelease "%2" \
--flavor "%1" --usrmerged "0%{?usrmerged}" "$@"
%posttrans -n %{-n*}-kmp-%1
%{-b:KMP_NEEDS_MKINITRD=1} /usr/lib/module-init-tools/kernel-scriptlets/kmp-posttrans --name "%{-n*}-kmp-%1" \
%{-b:KMP_NEEDS_MKINITRD=1; export KMP_NEEDS_MKINITRD}
/usr/lib/module-init-tools/kernel-scriptlets/kmp-posttrans --name "%{-n*}-kmp-%1" \
--version "%_this_kmp_version" --release "%{-r*}" --kernelrelease "%2" \
--flavor "%1" --usrmerged "0%{?usrmerged}" "$@"
%files -n %{-n*}-kmp-%1

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -45,7 +45,7 @@ BuildRequires: util-linux
%endif
%endif
%endif
BuildRequires: kernel%kernel_flavor-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
BuildRequires: kernel%kernel_flavor-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%if 0%{?rhel_version}
BuildRequires: kernel
@ -66,7 +66,7 @@ License: GPL-2.0-only
Group: SLES
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -38,7 +38,7 @@ License: GPL-2.0-only
Group: SLES
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%ifarch %ix86
Provides: kernel-bigsmp = 2.6.17
Obsoletes: kernel-bigsmp <= 2.6.17

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -33,7 +33,7 @@
Name: kernel-source
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -50,7 +50,7 @@ BuildRequires: fdupes
BuildRequires: sed
Requires(post): coreutils sed
Provides: %name = %version-%source_rel
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: linux
Provides: multiversion(kernel)
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@ Group: Development/Sources
Version: 6.2.2
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%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-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: multiversion(kernel)
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Mar 9 07:01:29 CET 2023 - jslaby@suse.cz
- Disable lockdown. (bsc#1209006)
This somehow doesn't play good wrt to external modules.
When all is ready again, we can revert this revert.
- commit 44ca817
-------------------------------------------------------------------
Tue Mar 7 15:24:22 CET 2023 - shung-hsi.yu@suse.com
- rpm/group-source-files.pl: Deal with {pre,post}fixed / in location
When the source file location provided with -L is either prefixed or
postfixed with forward slash, the script get stuck in a infinite loop
inside calc_dirs() where $path is an empty string.
user@localhost:/tmp> perl "$HOME/group-source-files.pl" -D devel.files -N nondevel.files -L /usr/src/linux-5.14.21-150500.41/
...
path = /usr/src/linux-5.14.21-150500.41/Documentation/Kconfig
path = /usr/src/linux-5.14.21-150500.41/Documentation
path = /usr/src/linux-5.14.21-150500.41
path = /usr/src
path = /usr
path =
path =
path =
... # Stuck in an infinite loop
This workarounds the issue by breaking out the loop once path is an
empty string. For a proper fix we'd want something that
filesystem-aware, but this workaround should be enough for the rare
occation that this script is ran manually.
Link: http://mailman.suse.de/mlarch/SuSE/kernel/2023/kernel.2023.03/msg00024.html
- commit 6d65136
-------------------------------------------------------------------
Mon Mar 6 16:09:32 CET 2023 - msuchanek@suse.de
- kernel-module-subpackage: Fix expansion with -b parameter (bsc#1208179).
When -b is specified the script is prefixed with KMP_NEEDS_MKINITRD=1
which sets the variable for a simple command.
However, the script is no longer a simple command. Export the variable
instead.
- commit 152a069
-------------------------------------------------------------------
Fri Mar 3 12:24:23 CET 2023 - jslaby@suse.cz

View File

@ -113,7 +113,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.2
%if 0%{?is_kotd}
Release: <RELEASE>.g62a3141
Release: <RELEASE>.g44ca817
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: kernel-%build_flavor-base-srchash-44ca817f15b215421a4c788790dd5351c186d1df
Provides: kernel-srchash-44ca817f15b215421a4c788790dd5351c186d1df
# END COMMON DEPS
Provides: %name-srchash-62a31413de955fef5d46994edcc03a19fa97bca0
Provides: %name-srchash-44ca817f15b215421a4c788790dd5351c186d1df
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -177,11 +177,11 @@
# Bug 1198101 - VUL-0: shim: openSUSE tumbleweed not fully locked down? Add opensuse-cert-prompt back to openSUSE shim
# Lock down functions for secure boot
patches.suse/0001-security-lockdown-expose-a-hook-to-lock-the-kernel-down.patch
patches.suse/0002-efi-Add-an-EFI_SECURE_BOOT-flag-to-indicate-secure-boot-mode.patch
patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
patches.suse/0004-efi-Lock-down-the-kernel-at-the-integrity-level-if-b.patch
patches.suse/arm64-lock-down-kernel-in-secure-boot-mode.patch
+jlee patches.suse/0001-security-lockdown-expose-a-hook-to-lock-the-kernel-down.patch
+jlee patches.suse/0002-efi-Add-an-EFI_SECURE_BOOT-flag-to-indicate-secure-boot-mode.patch
+jlee patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
+jlee patches.suse/0004-efi-Lock-down-the-kernel-at-the-integrity-level-if-b.patch
+jlee patches.suse/arm64-lock-down-kernel-in-secure-boot-mode.patch
# crypto

View File

@ -1,3 +1,3 @@
2023-03-03 11:25:30 +0000
GIT Revision: 62a31413de955fef5d46994edcc03a19fa97bca0
2023-03-09 06:06:13 +0000
GIT Revision: 44ca817f15b215421a4c788790dd5351c186d1df
GIT Branch: stable