2013-02-18 00:10:17 +04:00
|
|
|
%define module @PACKAGE@
|
|
|
|
|
|
|
|
%bcond_with debug
|
|
|
|
%bcond_with debug_dmu_tx
|
|
|
|
|
|
|
|
|
|
|
|
Name: %{module}-kmod
|
|
|
|
|
|
|
|
Version: @VERSION@
|
|
|
|
Release: @RELEASE@%{?dist}
|
|
|
|
Summary: Kernel module(s)
|
|
|
|
|
|
|
|
Group: System Environment/Kernel
|
|
|
|
License: @ZFS_META_LICENSE@
|
|
|
|
URL: http://zfsonlinux.org/
|
|
|
|
Source0: %{module}-%{version}.tar.gz
|
|
|
|
Source10: kmodtool
|
2013-04-21 23:03:12 +04:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id} -u -n)
|
2013-02-18 00:10:17 +04:00
|
|
|
|
|
|
|
# The developments headers will conflict with the dkms packages.
|
|
|
|
Conflicts: %{module}-dkms
|
|
|
|
|
|
|
|
# Source packages minimally require a kernel-devel dependency.
|
|
|
|
%{?rhel:BuildRequires: kernel-devel}
|
|
|
|
%{?fedora:BuildRequires: kernel-devel}
|
|
|
|
%{?suse_version:BuildRequires: kernel-source}
|
|
|
|
|
|
|
|
%if 0%{?rhel}%{?fedora}%{?suse_version}
|
2013-04-03 01:37:47 +04:00
|
|
|
BuildRequires: spl-devel-kmod = %{version}
|
2013-03-25 22:28:18 +04:00
|
|
|
%global KmodsBuildRequires spl-devel-kmod
|
2013-02-18 00:10:17 +04:00
|
|
|
%global KmodsRequires kmod-spl
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Binary packages build against all installed kernels by default.
|
|
|
|
%if !%{defined kernels} && !%{defined build_src_rpm}
|
|
|
|
%if 0%{?rhel}%{?fedora}%{?suse_version}
|
|
|
|
%define kernels %(ls -1 /usr/src/kernels)
|
|
|
|
%else
|
|
|
|
%define kernels %(ls -1 /lib/modules)
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?fedora} >= 17
|
|
|
|
%define prefix /usr
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Kmodtool does its magic here. A patched version of kmodtool is shipped
|
|
|
|
# with the source rpm until kmod development packages are supported upstream.
|
|
|
|
# https://bugzilla.rpmfusion.org/show_bug.cgi?id=2714
|
|
|
|
%{expand:%(bash %{SOURCE10} --target %{_target_cpu} --kmodname %{name} --devel %{?prefix:--prefix "%{?prefix}"} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null) }
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains the ZFS kernel modules.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
# Error out if there was something wrong with kmodtool.
|
|
|
|
%{?kmodtool_check}
|
|
|
|
|
|
|
|
# Print kmodtool output for debugging purposes:
|
|
|
|
bash %{SOURCE10} --target %{_target_cpu} --repo %{repo} --kmodname %{name} --devel %{?prefix:--prefix "%{?prefix}"} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null
|
|
|
|
|
|
|
|
%if %{with debug}
|
|
|
|
%define debug --enable-debug
|
|
|
|
%else
|
|
|
|
%define debug --disable-debug
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with debug_dmu_tx}
|
|
|
|
%define debug_dmu_tx --enable-debug-dmu-tx
|
|
|
|
%else
|
|
|
|
%define debug_dmu_tx --disable-debug-dmu-tx
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Leverage VPATH from configure to avoid making multiple copies.
|
|
|
|
%define _configure ../%{module}-%{version}/configure
|
|
|
|
|
|
|
|
%setup -q -c -T -a 0
|
|
|
|
|
|
|
|
for kernel_version in %{?kernel_versions}; do
|
|
|
|
%{__mkdir} _kmod_build_${kernel_version%%___*}
|
|
|
|
done
|
|
|
|
|
|
|
|
%build
|
|
|
|
for kernel_version in %{?kernel_versions}; do
|
|
|
|
cd _kmod_build_${kernel_version%%___*}
|
|
|
|
%configure \
|
|
|
|
--with-config=kernel \
|
|
|
|
%if 0%{?rhel}%{?fedora}
|
|
|
|
--with-linux="${kernel_version##*___}" \
|
|
|
|
--with-linux-obj="${kernel_version##*___}" \
|
|
|
|
%else
|
2013-04-21 23:03:12 +04:00
|
|
|
--with-linux="$( \
|
|
|
|
if [ -e "/lib/modules/${kernel_version%%___*}/source" ]; then \
|
|
|
|
echo "/lib/modules/${kernel_version%%___*}/source"; \
|
2013-02-18 00:10:17 +04:00
|
|
|
else \
|
2013-04-21 23:03:12 +04:00
|
|
|
echo "/lib/modules/${kernel_version%%___*}/build"; \
|
|
|
|
fi)" \
|
2013-02-18 00:10:17 +04:00
|
|
|
--with-linux-obj="/lib/modules/${kernel_version%%___*}/build" \
|
|
|
|
%endif
|
|
|
|
--with-spl="/usr/src/spl-%{version}" \
|
|
|
|
--with-spl-obj="/usr/src/spl-%{version}/${kernel_version%%___*}" \
|
|
|
|
%{debug} \
|
|
|
|
%{debug_dmu_tx}
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
cd ..
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
# Relies on the kernel 'modules_install' make target.
|
|
|
|
for kernel_version in %{?kernel_versions}; do
|
|
|
|
cd _kmod_build_${kernel_version%%___*}
|
|
|
|
make install \
|
|
|
|
DESTDIR=${RPM_BUILD_ROOT} \
|
|
|
|
%{?prefix:INSTALL_MOD_PATH=%{?prefix}} \
|
|
|
|
INSTALL_MOD_DIR=%{kmodinstdir_postfix}
|
|
|
|
cd ..
|
|
|
|
done
|
|
|
|
chmod u+x ${RPM_BUILD_ROOT}%{kmodinstdir_prefix}/*/extra/*/*/*
|
|
|
|
%{?akmod_install}
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%changelog
|
2013-03-26 00:46:37 +04:00
|
|
|
* Fri Mar 22 2013 Brian Behlendorf <behlendorf1@llnl.gov> - 0.6.1-1
|
|
|
|
- First official stable release.
|