kernel-6.16.0-0.rc6.52

* Mon Jul 14 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc6.52]
- redhat/configs: clang_lto: disable CONFIG_FORTIFY_KUNIT_TEST (Scott Weaver)
Resolves:

Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
This commit is contained in:
Justin M. Forbes 2025-07-14 08:01:48 -06:00
parent 6eff8f0b09
commit 03d76bf724
No known key found for this signature in database
GPG Key ID: B8FA7924A4B1C140
5 changed files with 86 additions and 66 deletions

View File

@ -12,7 +12,7 @@ RHEL_MINOR = 99
# #
# Use this spot to avoid future merge conflicts. # Use this spot to avoid future merge conflicts.
# Do not trim this comment. # Do not trim this comment.
RHEL_RELEASE = 50 RHEL_RELEASE = 52
# #
# RHEL_REBASE_NUM # RHEL_REBASE_NUM

View File

@ -1,7 +1,24 @@
* Sat Jul 12 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.379f604cc3dc.50] * Mon Jul 14 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc6.52]
- redhat/configs: clang_lto: disable CONFIG_FORTIFY_KUNIT_TEST (Scott Weaver) - redhat/configs: clang_lto: disable CONFIG_FORTIFY_KUNIT_TEST (Scott Weaver)
Resolves: Resolves:
* Mon Jul 14 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc6.51]
- kernel.spec: use %%{name} in partner/internal modules (Scott Weaver)
- kernel.spec: introduce with_automotive_build (Scott Weaver)
- kernel.spec: fix kernel-automotive packaging (Scott Weaver)
- kernel.spec: add a few macro option comments (Scott Weaver)
- kernel.spec: add conditional to include rhel trusted certificates (Eric Chanudet)
- kernel.spec: Always BuildRequire openssl-devel (Eric Chanudet)
- kernel.spec: automotive: disable kernel signature by default (Eric Chanudet)
- redhat/configs: automotive: enable extra system cert (Eric Chanudet)
- redhat/configs: automotive: Disable module signature with modules_install (Eric Chanudet)
- Linux v6.16.0-0.rc6
Resolves:
* Sun Jul 13 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.3f31a806a62e.50]
- Linux v6.16.0-0.rc5.3f31a806a62e
Resolves:
* Sat Jul 12 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.379f604cc3dc.49] * Sat Jul 12 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.379f604cc3dc.49]
- Linux v6.16.0-0.rc5.379f604cc3dc - Linux v6.16.0-0.rc5.379f604cc3dc
Resolves: Resolves:

View File

@ -111,6 +111,9 @@ Summary: The Linux kernel
# Sign modules on all arches # Sign modules on all arches
%global signmodules 1 %global signmodules 1
# Add additional rhel certificates to system trusted keys.
%global rhelkeys 1
# Compress modules only for architectures that build modules # Compress modules only for architectures that build modules
%ifarch noarch %ifarch noarch
%global zipmodules 0 %global zipmodules 0
@ -162,13 +165,13 @@ Summary: The Linux kernel
%define specrpmversion 6.16.0 %define specrpmversion 6.16.0
%define specversion 6.16.0 %define specversion 6.16.0
%define patchversion 6.16 %define patchversion 6.16
%define pkgrelease 0.rc5.250712g379f604cc3dc.50 %define pkgrelease 0.rc6.52
%define kversion 6 %define kversion 6
%define tarfile_release 6.16-rc5-224-g379f604cc3dc %define tarfile_release 6.16-rc6
# This is needed to do merge window version magic # This is needed to do merge window version magic
%define patchlevel 16 %define patchlevel 16
# This allows pkg_release to have configurable %%{?dist} tag # This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 0.rc5.250712g379f604cc3dc.50%{?buildid}%{?dist} %define specrelease 0.rc6.52%{?buildid}%{?dist}
# This defines the kabi tarball version # This defines the kabi tarball version
%define kabiversion 6.16.0 %define kabiversion 6.16.0
@ -249,8 +252,10 @@ Summary: The Linux kernel
%define with_dbgonly %{?_with_dbgonly: 1} %{?!_with_dbgonly: 0} %define with_dbgonly %{?_with_dbgonly: 1} %{?!_with_dbgonly: 0}
# Only build the realtime kernel (--with rtonly): # Only build the realtime kernel (--with rtonly):
%define with_rtonly %{?_with_rtonly: 1} %{?!_with_rtonly: 0} %define with_rtonly %{?_with_rtonly: 1} %{?!_with_rtonly: 0}
# Only build the automotive kernel (--with automotiveonly):% # Only build the automotive variant of the kernel (--with automotiveonly):
%define with_automotiveonly %{?_with_automotiveonly: 1} %{?!_with_automotiveonly: 0} %define with_automotiveonly %{?_with_automotiveonly: 1} %{?!_with_automotiveonly: 0}
# Build the automotive kernel (--with automotive_build), this builds base variant with automotive config/options:
%define with_automotive_build %{?_with_automotive_build: 1} %{?!_with_automotive_build: 0}
# Only build the tools package # Only build the tools package
%define with_toolsonly %{?_with_toolsonly: 1} %{?!_with_toolsonly: 0} %define with_toolsonly %{?_with_toolsonly: 1} %{?!_with_toolsonly: 0}
# Control whether we perform a compat. check against published ABI. # Control whether we perform a compat. check against published ABI.
@ -416,7 +421,7 @@ Summary: The Linux kernel
%define with_arm64_64k 0 %define with_arm64_64k 0
%endif %endif
# if requested, only build automotive kernel # if requested, only build the automotive variant of the kernel
%if %{with_automotiveonly} %if %{with_automotiveonly}
%define with_automotive 1 %define with_automotive 1
%define with_realtime 0 %define with_realtime 0
@ -427,6 +432,12 @@ Summary: The Linux kernel
%define with_selftests 1 %define with_selftests 1
%endif %endif
# if requested, build kernel-automotive
%if %{with_automotive_build}
%define with_automotive 1
%define with_selftests 1
%endif
# if requested, only build tools # if requested, only build tools
%if %{with_toolsonly} %if %{with_toolsonly}
%define with_tools 1 %define with_tools 1
@ -481,6 +492,9 @@ Summary: The Linux kernel
%define with_kabichk 0 %define with_kabichk 0
%define with_kernel_abi_stablelists 0 %define with_kernel_abi_stablelists 0
%define with_kabidw_base 0 %define with_kabidw_base 0
%define signkernel 0
%define signmodules 1
%define rhelkeys 0
%endif %endif
@ -672,7 +686,7 @@ Summary: The Linux kernel
%else %else
%define with_realtime_base 0 %define with_realtime_base 0
%endif %endif
%if %{with_automotive} && %{with_base} %if %{with_automotive} && %{with_base} && !%{with_automotive_build}
%define with_automotive_base 1 %define with_automotive_base 1
%else %else
%define with_automotive_base 0 %define with_automotive_base 0
@ -791,9 +805,8 @@ BuildRequires: python3-pyyaml python3-jsonschema python3-pip python3-setuptools
BuildRequires: (python3-wheel if python3-setuptools < 70) BuildRequires: (python3-wheel if python3-setuptools < 70)
%endif %endif
%if %{with_tools} || %{signmodules} || %{signkernel}
BuildRequires: openssl-devel BuildRequires: openssl-devel
%endif
%if %{with_selftests} %if %{with_selftests}
BuildRequires: clang llvm-devel fuse-devel zlib-devel binutils-devel python3-docutils python3-jsonschema BuildRequires: clang llvm-devel fuse-devel zlib-devel binutils-devel python3-docutils python3-jsonschema
%ifarch x86_64 riscv64 %ifarch x86_64 riscv64
@ -1092,7 +1105,7 @@ Source487: %{name}-riscv64-rt-debug-fedora.config
%endif %endif
%if %{include_automotive} %if %{include_automotive}
%if %{with_automotiveonly} %if %{with_automotive_build}
Source488: %{name}-aarch64-rhel.config Source488: %{name}-aarch64-rhel.config
Source489: %{name}-aarch64-debug-rhel.config Source489: %{name}-aarch64-debug-rhel.config
Source490: %{name}-x86_64-rhel.config Source490: %{name}-x86_64-rhel.config
@ -1137,11 +1150,13 @@ Patch999999: linux-kernel-test.patch
%description %description
The kernel meta package The kernel meta package
#
# This macro does requires, provides, conflicts, obsoletes for a kernel package. # This macro does requires, provides, conflicts, obsoletes for a kernel package.
# %%kernel_reqprovconf [-o] <subpackage> # %%kernel_reqprovconf [-o] <subpackage>
# It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes # It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
# macros defined above. # macros defined above.
# -o: Skips main "Provides" that would satisfy general kernel requirements that
# special-purpose kernels shouldn't include.
# For example, used for zfcpdump-core to *not* provide kernel-core. (BZ 2027654)
# #
%define kernel_reqprovconf(o) \ %define kernel_reqprovconf(o) \
%if %{-o:0}%{!-o:1}\ %if %{-o:0}%{!-o:1}\
@ -1506,11 +1521,11 @@ This meta package provides a single reference that other packages can Require to
%package %{?1:%{1}-}modules-internal\ %package %{?1:%{1}-}modules-internal\
Summary: Extra kernel modules to match the %{?2:%{2} }kernel\ Summary: Extra kernel modules to match the %{?2:%{2} }kernel\
Group: System Environment/Kernel\ Group: System Environment/Kernel\
Provides: kernel%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{specrpmversion}-%{release}\
Provides: kernel%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\ Provides: %{name}%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\
Provides: kernel%{?1:-%{1}}-modules-internal = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\ Provides: %{name}%{?1:-%{1}}-modules-internal = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\
Provides: installonlypkg(kernel-module)\ Provides: installonlypkg(kernel-module)\
Provides: kernel%{?1:-%{1}}-modules-internal-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Provides: %{name}%{?1:-%{1}}-modules-internal-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
Requires: kernel-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Requires: kernel-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
Requires: kernel%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Requires: kernel%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
Requires: kernel%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Requires: kernel%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
@ -1612,6 +1627,10 @@ The meta-package for the %{1} kernel\
# This macro creates a kernel-<subpackage> and its -devel and -debuginfo too. # This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
# %%define variant_summary The Linux kernel compiled for <configuration> # %%define variant_summary The Linux kernel compiled for <configuration>
# %%kernel_variant_package [-n <pretty-name>] [-m] [-o] <subpackage> # %%kernel_variant_package [-n <pretty-name>] [-m] [-o] <subpackage>
# -m: Used with debugbuildsenabled==0 to create a "meta" debug variant that
# depends on base variant and skips debug/internal/partner packages.
# -o: Skips main "Provides" that would satisfy general kernel requirements that
# special-purpose kernels shouldn't include.
# #
%define kernel_variant_package(n:mo) \ %define kernel_variant_package(n:mo) \
%package %{?1:%{1}-}core\ %package %{?1:%{1}-}core\
@ -1666,11 +1685,11 @@ Requires(pre): systemd >= 254-1\
%package %{?1:%{1}-}modules-partner\ %package %{?1:%{1}-}modules-partner\
Summary: Extra kernel modules to match the %{?2:%{2} }kernel\ Summary: Extra kernel modules to match the %{?2:%{2} }kernel\
Group: System Environment/Kernel\ Group: System Environment/Kernel\
Provides: kernel%{?1:-%{1}}-modules-partner-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}%{?1:-%{1}}-modules-partner-%{_target_cpu} = %{specrpmversion}-%{release}\
Provides: kernel%{?1:-%{1}}-modules-partner-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\ Provides: %{name}%{?1:-%{1}}-modules-partner-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\
Provides: kernel%{?1:-%{1}}-modules-partner = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\ Provides: %{name}%{?1:-%{1}}-modules-partner = %{specrpmversion}-%{release}%{uname_suffix %{?1:+%{1}}}\
Provides: installonlypkg(kernel-module)\ Provides: installonlypkg(kernel-module)\
Provides: kernel%{?1:-%{1}}-modules-partner-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Provides: %{name}%{?1:-%{1}}-modules-partner-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
Requires: kernel-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Requires: kernel-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
Requires: kernel%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Requires: kernel%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
Requires: kernel%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\ Requires: kernel%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1:+%{1}}}\
@ -1781,15 +1800,10 @@ It should only be installed when trying to gather additional information
on kernel bugs, as some of these options impact performance noticably. on kernel bugs, as some of these options impact performance noticably.
%endif %endif
%if %{with_debug} && %{with_automotive} %if %{with_debug} && %{with_automotive} && !%{with_automotive_build}
%define variant_summary The Linux Automotive kernel compiled with extra debugging enabled %define variant_summary The Linux Automotive kernel compiled with extra debugging enabled
%if %{with_automotiveonly}
%kernel_variant_package debug
%description debug-core
%else
%kernel_variant_package automotive-debug %kernel_variant_package automotive-debug
%description automotive-debug-core %description automotive-debug-core
%endif
The kernel package contains the Linux kernel (vmlinuz), the core of any The kernel package contains the Linux kernel (vmlinuz), the core of any
Linux operating system. The kernel handles the basic functions Linux operating system. The kernel handles the basic functions
of the operating system: memory allocation, process allocation, device of the operating system: memory allocation, process allocation, device
@ -1802,13 +1816,8 @@ on kernel bugs, as some of these options impact performance noticably.
%if %{with_automotive_base} %if %{with_automotive_base}
%define variant_summary The Linux kernel compiled with PREEMPT_RT enabled %define variant_summary The Linux kernel compiled with PREEMPT_RT enabled
%if %{with_automotiveonly}
%kernel_variant_package
%description core
%else
%kernel_variant_package automotive %kernel_variant_package automotive
%description automotive-core %description automotive-core
%endif
This package includes a version of the Linux kernel compiled with the This package includes a version of the Linux kernel compiled with the
PREEMPT_RT real-time preemption support, targeted for Automotive platforms PREEMPT_RT real-time preemption support, targeted for Automotive platforms
%endif %endif
@ -2086,12 +2095,16 @@ done
%if %{signkernel}%{signmodules} %if %{signkernel}%{signmodules}
# Add DUP and kpatch certificates to system trusted keys for RHEL # Add DUP and kpatch certificates to system trusted keys for RHEL
truncate -s0 ../certs/rhel.pem
%if 0%{?rhel} %if 0%{?rhel}
%if %{rhelkeys}
%{log_msg "Add DUP and kpatch certificates to system trusted keys for RHEL"} %{log_msg "Add DUP and kpatch certificates to system trusted keys for RHEL"}
openssl x509 -inform der -in %{SOURCE100} -out rheldup3.pem openssl x509 -inform der -in %{SOURCE100} -out rheldup3.pem
openssl x509 -inform der -in %{SOURCE101} -out rhelkpatch1.pem openssl x509 -inform der -in %{SOURCE101} -out rhelkpatch1.pem
openssl x509 -inform der -in %{SOURCE102} -out nvidiagpuoot001.pem openssl x509 -inform der -in %{SOURCE102} -out nvidiagpuoot001.pem
cat rheldup3.pem rhelkpatch1.pem nvidiagpuoot001.pem > ../certs/rhel.pem cat rheldup3.pem rhelkpatch1.pem nvidiagpuoot001.pem >> ../certs/rhel.pem
# rhelkeys
%endif
%if %{signkernel} %if %{signkernel}
%ifarch s390x ppc64le %ifarch s390x ppc64le
openssl x509 -inform der -in %{secureboot_ca_0} -out secureboot.pem openssl x509 -inform der -in %{secureboot_ca_0} -out secureboot.pem
@ -3055,13 +3068,9 @@ BuildKernel %make_target %kernel_image %{_use_vdso} rt-debug
BuildKernel %make_target %kernel_image %{_use_vdso} rt-64k-debug BuildKernel %make_target %kernel_image %{_use_vdso} rt-64k-debug
%endif %endif
%if %{with_automotive} %if %{with_automotive} && !%{with_automotive_build}
%if %{with_automotiveonly}
BuildKernel %make_target %kernel_image %{_use_vdso} debug
%else
BuildKernel %make_target %kernel_image %{_use_vdso} automotive-debug BuildKernel %make_target %kernel_image %{_use_vdso} automotive-debug
%endif %endif
%endif
%if %{with_arm64_16k} %if %{with_arm64_16k}
BuildKernel %make_target %kernel_image %{_use_vdso} 16k-debug BuildKernel %make_target %kernel_image %{_use_vdso} 16k-debug
@ -3097,12 +3106,8 @@ BuildKernel %make_target %kernel_image %{_use_vdso} rt-64k
%endif %endif
%if %{with_automotive_base} %if %{with_automotive_base}
%if %{with_automotiveonly}
BuildKernel %make_target %kernel_image %{_use_vdso}
%else
BuildKernel %make_target %kernel_image %{_use_vdso} automotive BuildKernel %make_target %kernel_image %{_use_vdso} automotive
%endif %endif
%endif
%if %{with_up_base} %if %{with_up_base}
BuildKernel %make_target %kernel_image %{_use_vdso} BuildKernel %make_target %kernel_image %{_use_vdso}
@ -3940,14 +3945,9 @@ fi\
%endif %endif
%if %{with_automotive_base} %if %{with_automotive_base}
%if %{with_automotiveonly}
%kernel_variant_preun
%kernel_variant_post
%else
%kernel_variant_preun -v automotive %kernel_variant_preun -v automotive
%kernel_variant_post -v automotive -r kernel %kernel_variant_post -v automotive -r kernel
%endif %endif
%endif
%if %{with_realtime} && %{with_debug} %if %{with_realtime} && %{with_debug}
%kernel_variant_preun -v rt-debug %kernel_variant_preun -v rt-debug
@ -3966,15 +3966,10 @@ fi\
%kernel_kvm_post rt-64k-debug %kernel_kvm_post rt-64k-debug
%endif %endif
%if %{with_automotive} && %{with_debug} %if %{with_automotive} && %{with_debug} && !%{with_automotive_build}
%if %{with_automotiveonly}
%kernel_variant_preun -v debug
%kernel_variant_post -v debug
%else
%kernel_variant_preun -v automotive-debug %kernel_variant_preun -v automotive-debug
%kernel_variant_post -v automotive-debug %kernel_variant_post -v automotive-debug
%endif %endif
%endif
### ###
### file lists ### file lists
@ -4298,18 +4293,11 @@ fi\
%if %{with_realtime} %if %{with_realtime}
%kernel_variant_files %{_use_vdso} %{with_debug} rt-debug %kernel_variant_files %{_use_vdso} %{with_debug} rt-debug
%endif %endif
%if %{with_automotiveonly}
%kernel_variant_files %{_use_vdso} %{with_automotive_base}
%else
%kernel_variant_files %{_use_vdso} %{with_automotive_base} automotive %kernel_variant_files %{_use_vdso} %{with_automotive_base} automotive
%endif %if %{with_automotive} && !%{with_automotive_build}
%if %{with_automotive}
%if %{with_automotiveonly}
%kernel_variant_files %{_use_vdso} %{with_debug} debug
%else
%kernel_variant_files %{_use_vdso} %{with_debug} automotive-debug %kernel_variant_files %{_use_vdso} %{with_debug} automotive-debug
%endif %endif
%endif
%if %{with_debug_meta} %if %{with_debug_meta}
%files debug %files debug
%files debug-core %files debug-core
@ -4352,9 +4340,24 @@ fi\
# #
# #
%changelog %changelog
* Sat Jul 12 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.379f604cc3dc.50] * Mon Jul 14 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc6.52]
- redhat/configs: clang_lto: disable CONFIG_FORTIFY_KUNIT_TEST (Scott Weaver) - redhat/configs: clang_lto: disable CONFIG_FORTIFY_KUNIT_TEST (Scott Weaver)
* Mon Jul 14 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc6.51]
- kernel.spec: use %%{name} in partner/internal modules (Scott Weaver)
- kernel.spec: introduce with_automotive_build (Scott Weaver)
- kernel.spec: fix kernel-automotive packaging (Scott Weaver)
- kernel.spec: add a few macro option comments (Scott Weaver)
- kernel.spec: add conditional to include rhel trusted certificates (Eric Chanudet)
- kernel.spec: Always BuildRequire openssl-devel (Eric Chanudet)
- kernel.spec: automotive: disable kernel signature by default (Eric Chanudet)
- redhat/configs: automotive: enable extra system cert (Eric Chanudet)
- redhat/configs: automotive: Disable module signature with modules_install (Eric Chanudet)
- Linux v6.16.0-0.rc6
* Sun Jul 13 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.3f31a806a62e.50]
- Linux v6.16.0-0.rc5.3f31a806a62e
* Sat Jul 12 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.379f604cc3dc.49] * Sat Jul 12 2025 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.16.0-0.rc5.379f604cc3dc.49]
- Linux v6.16.0-0.rc5.379f604cc3dc - Linux v6.16.0-0.rc5.379f604cc3dc

View File

@ -190,7 +190,7 @@ index 000000000000..85771d74c34f
+ +
+endmenu +endmenu
diff --git a/Makefile b/Makefile diff --git a/Makefile b/Makefile
index 7eea2a41c905..64635af4a041 100644 index c09766beb7ef..53ff996eef00 100644
--- a/Makefile --- a/Makefile
+++ b/Makefile +++ b/Makefile
@@ -355,6 +355,17 @@ ifneq ($(filter install,$(MAKECMDGOALS)),) @@ -355,6 +355,17 @@ ifneq ($(filter install,$(MAKECMDGOALS)),)

View File

@ -1,3 +1,3 @@
SHA512 (linux-6.16-rc5-224-g379f604cc3dc.tar.xz) = 09936b11a8896357dde3cca0003af269641b3fc4fae205ed9c01ac5c81bc8b9d831b87da075f0ffe38778e97d40dfddbf5cad8e1797dee16759f692cc8d04862 SHA512 (linux-6.16-rc6.tar.xz) = 127a7ff6c843856598dfa37c21f422b784db50841d6ece9be7940aa2d19caaaf07a25f48458f33b2c81622721eba1ee85287da31f61fce9069e1a5b054980ec0
SHA512 (kernel-abi-stablelists-6.16.0.tar.xz) = 7ef7695cb3f87a11492100efa5e5e3368c7e477f16f49e7024273acaf531e44f3c979bc8367ce9d2b5ff9881b87da72496c19d5a3e128a203deae0dd0d5213d3 SHA512 (kernel-abi-stablelists-6.16.0.tar.xz) = 3bce4d3004c5ba50ef168d43eb89aa7bad698b96751697cafa03e89ae6003a09985f70e1448d30708639fc7f04fdfd5cc911ab12351b4f9d66a3beb0363ea015
SHA512 (kernel-kabi-dw-6.16.0.tar.xz) = 4ce1f30725d9f9654801d66c796411f7ae7498bd2c2ba6358b851002e30e3208cd4be5a7b870459befd5a4bcb297ce47933c1023de02d603228e7ad22720425f SHA512 (kernel-kabi-dw-6.16.0.tar.xz) = ee7dec2d78304c5e915ebcef7c2092256eb15d2cb2038733301ef455bf0e2d073e79504de2a6fa8d437faa72dc043628a8088f68bcad4cd60228f3f20d77686e