[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250129092214.323886-2-nvidia@cohens.org.il>
Date: Wed, 29 Jan 2025 11:22:15 +0200
From: Tzafrir Cohen <nvidia@...ens.org.il>
To: linux-kbuild@...r.kernel.org
Cc: linux-kernel@...r.kernel.org,
Tzafrir Cohen <nvidia@...ens.org.il>
Subject: [PATCH] Include symvers in kernel package
This change would provie kernel rpm packages that provide better
dependencies to kernel module packages that use the weak-modules
mechanism to allow modules to be used on different (but similar).
Specifically, this is intended for use with Centos-based systems
(tested with Centos >= 8).
rpm on Centos-based distributions will generate extra Provides
headers for a kernel if it finds a cmpressed symvers file in it.
Not just dependencies of type:
kmod(foo.ko)
but also dependencies of type:
kernel(foo_sym_bol) = 0x112233445566
And therefore if a binary kernel module was built with that specific
kernel, the package manager can check if another kernel provides
foo_sym_bol and of the same version. This is similar to the tests
that The weak-modules script runs at run time.
This change installs the file to make the information available to rpm.
Using gzip explicitly as with Centos 8 only symvers.gz is tested for.
See /usr/lib/rpm/fileattrs/kabi.attr . Centos 9 and 10 also tests for
symvers.xz .
Signed-off-by: Tzafrir Cohen <nvidia@...ens.org.il>
---
scripts/package/kernel.spec | 1 +
1 file changed, 1 insertion(+)
diff --git a/scripts/package/kernel.spec b/scripts/package/kernel.spec
index ac3e5ac01d8a..06a792731282 100644
--- a/scripts/package/kernel.spec
+++ b/scripts/package/kernel.spec
@@ -62,6 +62,7 @@ cp $(%{make} %{makeflags} -s image_name) %{buildroot}/lib/modules/%{KERNELRELEAS
%{make} %{makeflags} INSTALL_HDR_PATH=%{buildroot}/usr headers_install
cp System.map %{buildroot}/lib/modules/%{KERNELRELEASE}
cp .config %{buildroot}/lib/modules/%{KERNELRELEASE}/config
+%{__gzip} -n -9 <Module.symvers > %{buildroot}/lib/modules/%{KERNELRELEASE}/symvers.gz
if %{make} %{makeflags} run-command KBUILD_RUN_COMMAND='test -d ${srctree}/arch/${SRCARCH}/boot/dts' 2>/dev/null; then
%{make} %{makeflags} INSTALL_DTBS_PATH=%{buildroot}/lib/modules/%{KERNELRELEASE}/dtb dtbs_install
fi
--
2.45.2
Powered by blists - more mailing lists