mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 18:40:43 +03:00
Accept kernel source dir(s) specified by ./configure
This adds ability to set the location of the kernel via defines when building from the spec files. This is useful when building against a kernel installed in a non-standard location. Signed-off-by: Turbo Fredriksson <turbo@bayour.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #1874
This commit is contained in:
committed by
Brian Behlendorf
parent
8b974ba036
commit
69c7bdb6e7
@@ -1,4 +1,33 @@
|
||||
%define module @PACKAGE@
|
||||
|
||||
%if !%{defined ksrc}
|
||||
%if 0%{?rhel}%{?fedora}
|
||||
%define ksrc ${kernel_version##*___}
|
||||
%else
|
||||
%define ksrc "$( \
|
||||
if [ -e "/usr/src/linux-${kernel_version%%___*}" ]; then \
|
||||
echo "/usr/src/linux-${kernel_version%%___*}"; \
|
||||
elif [ -e "/lib/modules/${kernel_version%%___*}/source" ]; then \
|
||||
echo "/lib/modules/${kernel_version%%___*}/source"; \
|
||||
else \
|
||||
echo "/lib/modules/${kernel_version%%___*}/build"; \
|
||||
fi)"
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if !%{defined kobj}
|
||||
%if 0%{?rhel}%{?fedora}
|
||||
%define kobj ${kernel_version##*___}
|
||||
%else
|
||||
%define kobj "$( \
|
||||
if [ -e "/usr/src/linux-${kernel_version%%___*}" ]; then \
|
||||
echo "/usr/src/linux-${kernel_version%%___*}"; \
|
||||
else \
|
||||
echo "/lib/modules/${kernel_version%%___*}/build"; \
|
||||
fi)"
|
||||
%endif
|
||||
%endif
|
||||
|
||||
#define repo rpmfusion
|
||||
#define repo chaos
|
||||
|
||||
@@ -125,18 +154,8 @@ 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
|
||||
--with-linux="$( \
|
||||
if [ -e "/lib/modules/${kernel_version%%___*}/source" ]; then \
|
||||
echo "/lib/modules/${kernel_version%%___*}/source"; \
|
||||
else \
|
||||
echo "/lib/modules/${kernel_version%%___*}/build"; \
|
||||
fi)" \
|
||||
--with-linux-obj="/lib/modules/${kernel_version%%___*}/build" \
|
||||
%endif
|
||||
--with-linux=%{ksrc} \
|
||||
--with-linux-obj=%{kobj} \
|
||||
--with-spl="%{spldir}" \
|
||||
--with-spl-obj="%{splobj}" \
|
||||
%{debug} \
|
||||
|
||||
Reference in New Issue
Block a user