581680855a
Apply redhat-rpm-config-9.1.0-kmod-kabi.patch from RHEL 7 branch. Applied only changes to kmodtool and macros (now macros.kmp), as all others are applied already. macros.kmp also had a merge conflict due to commits f41a8a73aa6f ("Fix kernel_source macro to match the directory that kernel sources are installed in") and d95e9bc7b618 ("Fix directory name mismatch in kernel_source macro (#648996)") being applied already. Commit message from the original commit: commit 29b4b765391b8f11ae64708e86ac3f7475c62661 Author: Panu Matilainen <pmatilai@redhat.com> Date: Tue Jul 9 09:57:29 2013 +0300 - Re-add various kABI-related bits (Jon Masters) - Allow kmod building against z-stream kernels (Jiri Benc) Resolves: #1971748 Resolves: #2002887 Resolves: #2015909 Signed-off-by: Eugene Syromiatnikov <esyr@redhat.com>
51 lines
1.9 KiB
Plaintext
51 lines
1.9 KiB
Plaintext
# Use these macros to differentiate between RH and other KMP implementation(s).
|
|
redhat_kernel_module_package 1
|
|
kernel_module_package_release 1
|
|
|
|
%__find_provides /usr/lib/rpm/redhat/find-provides
|
|
%__find_requires /usr/lib/rpm/redhat/find-requires
|
|
|
|
#kernel_module_package [ -n name ] [ -v version ] [ -r release ] [ -s script ]
|
|
# [ -f filelist] [ -x ] [ -p preamble ] flavor flavor ...
|
|
|
|
%kernel_module_package_buildreqs %global kmodtool_generate_buildreqs 1 \
|
|
kernel-devel
|
|
|
|
%kernel_module_package(n:v:r:s:f:xp:) %{expand:%( \
|
|
%global kmodtool %{-s*}%{!-s:/usr/lib/rpm/redhat/kmodtool} \
|
|
%global kmod_version %{-v*}%{!-v:%{version}} \
|
|
%global kmod_release %{-r*}%{!-r:%{release}} \
|
|
%global latest_kernel %(rpm -q --qf '%{VERSION}-%{RELEASE}.%{ARCH}\\\\n' `rpm -q kernel-devel | /usr/lib/rpm/redhat/rpmsort -r | head -n 1` | head -n 1) \
|
|
%{!?kernel_version:%{expand:%%global kernel_version %{latest_kernel}}} \
|
|
%global kverrel %(%{kmodtool} verrel %{?kernel_version} 2>/dev/null) \
|
|
flavors="default" \
|
|
if [ -z "%*" ]; then \
|
|
flavors_to_build=$flavors \
|
|
elif [ -z "%{-x}" ]; then \
|
|
flavors_to_build="%*" \
|
|
else \
|
|
flavors_to_build=" $flavors "\
|
|
for i in %* \
|
|
do \
|
|
flavors_to_build=${flavors_to_build//$i /}
|
|
done \
|
|
fi \
|
|
echo "%%global flavors_to_build ${flavors_to_build:-%%nil}" \
|
|
echo "%%global kernel_source() /usr/src/kernels/%kverrel\\\$([ %%%%{1} = default ] || echo ".%%%%{1}")" \
|
|
echo "%%global kernel_module_package_moddir() extra" \
|
|
if [ ! -z "%{-f*}" ] \
|
|
then \
|
|
filelist="%{-f*}" \
|
|
fi \
|
|
if [ ! -z "%{-p*}" ] \
|
|
then \
|
|
preamble="%{-p*}" \
|
|
fi \
|
|
nobuildreqs="yes" \
|
|
if [ "x%{kmodtool_generate_buildreqs}" != "x1" ] \
|
|
then \
|
|
nobuildreqs="no" \
|
|
fi \
|
|
override_filelist="$filelist" override_preamble="$preamble" nobuildreqs="$nobuildreqs" kmod_version=%kmod_version kmod_release=%kmod_release %{kmodtool} rpmtemplate %{-n*}%{!-n:%name} %{kverrel} $flavors_to_build 2>/dev/null \
|
|
)}
|