3 # kmodtool - Helper script for building kernel module RPMs
4 # Copyright (c) 2003-2007 Ville Skyttä <ville.skytta@iki.fi>,
5 # Thorsten Leemhuis <fedora@leemhuis.info>
7 # Modified by Simon Wilkinson for OpenAFS
9 # Permission is hereby granted, free of charge, to any person obtaining
10 # a copy of this software and associated documentation files (the
11 # "Software"), to deal in the Software without restriction, including
12 # without limitation the rights to use, copy, modify, merge, publish,
13 # distribute, sublicense, and/or sell copies of the Software, and to
14 # permit persons to whom the Software is furnished to do so, subject to
15 # the following conditions:
17 # The above copyright notice and this permission notice shall be
18 # included in all copies or substantial portions of the Software.
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 knownvariants=@(BOOT|PAE?(-debug)|@(big|huge)mem|debug|enterprise|kdump|?(large)smp?(-debug)|uml|xen?([0U])?(-PAE))
40 verrel=${1:-$(uname -r)}
41 verrel=${verrel%%$knownvariants}
53 variant=${1:-$(uname -r)}
54 variant=${variant##$verrel}
55 variant=${variant:-'""'}
68 local dashvariant="${variant:+-${variant}}"
70 *.EL*) kdep="kernel${dashvariant}-%{_target_cpu} = ${verrel}" ;;
71 *) kdep="kernel-%{_target_cpu} = ${verrel}${variant}" ;;
74 %package -n kmod-${kmod_name}${dashvariant}
75 Summary: ${kmod_name} kernel module(s)
76 Group: System Environment/Kernel
77 Provides: kernel-modules = ${verrel}${variant}
78 Provides: ${kmod_name}-kmod = %{?epoch:%{epoch}:}%{version}-%{release}
79 Provides: openafs-kernel = %{PACKAGE_VERSION}
81 Requires: ${kmod_name}-kmod-common >= %{?epoch:%{epoch}:}%{version}
82 Requires(post): /sbin/depmod
83 Requires(postun): /sbin/depmod
84 Release: %{pkgrel}.%(echo ${verrel} | tr - _)
85 BuildRequires: kernel${dashvariant}-devel-%{_target_cpu} = ${verrel}
86 %description -n kmod-${kmod_name}${dashvariant}
87 This package provides the ${kmod_name} kernel modules built for the Linux
88 kernel ${verrel}${variant} for the %{_target_cpu} family of processors.
89 %post -n kmod-${kmod_name}${dashvariant}
90 /sbin/depmod -aeF /boot/System.map-${verrel}${variant} ${verrel}${variant} > /dev/null || :
91 %postun -n kmod-${kmod_name}${dashvariant}
92 /sbin/depmod -aF /boot/System.map-${verrel}${variant} ${verrel}${variant} &> /dev/null || :
93 %files -n kmod-${kmod_name}${dashvariant}
94 %defattr(644,root,root,755)
95 /lib/modules/${verrel}${variant}/extra/${kmod_name}/
107 if [ -z "${kmod_name}" ] ; then
108 echo "Please provide the kmodule-name as first parameter." >&2
110 elif [ -z "${kver}" ] ; then
111 echo "Please provide the kver as second parameter." >&2
113 elif [ -z "${verrel}" ] ; then
114 echo "Couldn't find out the verrel." >&2
118 for variant in "$@" ; do
119 get_rpmtemplate "${variant}"
126 You called: ${invocation}
128 Usage: ${myprog} <command> <option>+
131 - Get "base" version-release.
133 - Get variant from uname.
134 rpmtemplate <mainpgkname> <uname> <variants>
135 - Return a template for
137 - Output version number and exit.
141 invocation="$(basename ${0}) $@"
142 while [ "${1}" ] ; do
156 print_rpmtemplate "$@"
160 echo "${myprog} ${myver}"
164 echo "Error: Unknown option '${1}'." >&2
174 # indent-tabs-mode: nil