mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-27 11:29:36 +03:00
ad9e767657
Originally it was thought it would be useful to split up the kmods by functionality. This would allow external consumers to only load what was needed. However, in practice we've never had a case where this functionality would be needed, and conversely managing multiple kmods can be awkward. Therefore, this change merges all but the spl.ko kmod in to a single zfs.ko kmod. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #13274
93 lines
2.4 KiB
RPMSpec
93 lines
2.4 KiB
RPMSpec
%bcond_with debug
|
|
%bcond_with debuginfo
|
|
|
|
Name: @PACKAGE@-kmod
|
|
Version: @VERSION@
|
|
Release: @RELEASE@%{?dist}
|
|
|
|
Summary: Kernel module(s)
|
|
Group: System Environment/Kernel
|
|
License: @ZFS_META_LICENSE@
|
|
URL: https://github.com/openzfs/zfs
|
|
BuildRequires: %kernel_module_package_buildreqs
|
|
Source0: @PACKAGE@-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
# Additional dependency information for the kmod sub-package must be specified
|
|
# by generating a preamble text file which kmodtool can append to the spec file.
|
|
%(/bin/echo -e "\
|
|
Requires: @PACKAGE@ = %{version}\n\
|
|
Conflicts: @PACKAGE@-dkms\n\
|
|
Obsoletes: kmod-spl\n\
|
|
Obsoletes: spl-kmod\n\n" > %{_sourcedir}/kmod-preamble)
|
|
|
|
# LDFLAGS are not sanitized by arch/*/Makefile for these architectures.
|
|
%ifarch ppc ppc64 ppc64le aarch64
|
|
%global __global_ldflags %{nil}
|
|
%endif
|
|
|
|
%description
|
|
This package contains the ZFS kernel modules.
|
|
|
|
%define kmod_name @PACKAGE@
|
|
|
|
%kernel_module_package -n %{kmod_name} -p %{_sourcedir}/kmod-preamble
|
|
|
|
%define ksrc %{_usrsrc}/kernels/%{kverrel}
|
|
%define kobj %{ksrc}
|
|
|
|
%package -n kmod-%{kmod_name}-devel
|
|
Summary: ZFS kernel module(s) devel common
|
|
Group: System Environment/Kernel
|
|
Provides: kmod-spl-devel = %{version}
|
|
|
|
%description -n kmod-%{kmod_name}-devel
|
|
This package provides the header files and objects to build kernel modules.
|
|
|
|
%prep
|
|
if ! [ -d "%{ksrc}" ]; then
|
|
echo "Kernel build directory isn't set properly, cannot continue"
|
|
exit 1
|
|
fi
|
|
|
|
%if %{with debug}
|
|
%define debug --enable-debug
|
|
%else
|
|
%define debug --disable-debug
|
|
%endif
|
|
|
|
%if %{with debuginfo}
|
|
%define debuginfo --enable-debuginfo
|
|
%else
|
|
%define debuginfo --disable-debuginfo
|
|
%endif
|
|
|
|
%setup -n %{kmod_name}-%{version}
|
|
%build
|
|
%configure \
|
|
--with-config=kernel \
|
|
--with-linux=%{ksrc} \
|
|
--with-linux-obj=%{kobj} \
|
|
%{debug} \
|
|
%{debuginfo} \
|
|
%{?kernel_cc} \
|
|
%{?kernel_ld} \
|
|
%{?kernel_llvm}
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install \
|
|
DESTDIR=${RPM_BUILD_ROOT} \
|
|
INSTALL_MOD_DIR=extra/%{kmod_name}
|
|
%{__rm} -f %{buildroot}/lib/modules/%{kverrel}/modules.*
|
|
|
|
# find-debuginfo.sh only considers executables
|
|
%{__chmod} u+x %{buildroot}/lib/modules/%{kverrel}/extra/*/*
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files -n kmod-%{kmod_name}-devel
|
|
%{_usrsrc}/%{kmod_name}-%{version}
|
|
%{_usrsrc}/spl-%{version}
|