1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.8 2004/12/06 22:05:08 johnm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.59 2006/03/03 20:57:15 johnm Exp $ |
4 | |
4 | |
5 | # This eclass provides functions for compiling external kernel modules |
5 | # Description: This eclass is used to interface with linux-info in such a way |
6 | # from source. |
6 | # to provide the functionality required and initial functions |
|
|
7 | # required to install external modules against a kernel source |
|
|
8 | # tree. |
|
|
9 | # |
|
|
10 | # Maintainer: John Mylchreest <johnm@gentoo.org> |
|
|
11 | # Copyright 2004 Gentoo Linux |
|
|
12 | # |
|
|
13 | # Please direct your bugs to the current eclass maintainer :) |
|
|
14 | |
|
|
15 | # A Couple of env vars are available to effect usage of this eclass |
|
|
16 | # These are as follows: |
|
|
17 | # |
|
|
18 | # Env Var Option Default Description |
|
|
19 | # KERNEL_DIR <string> /usr/src/linux The directory containing kernel |
|
|
20 | # the target kernel sources. |
|
|
21 | # ECONF_PARAMS <string> The parameters to pass to econf. |
|
|
22 | # If this is not set, then econf |
|
|
23 | # isn't run. |
|
|
24 | # BUILD_PARAMS <string> The parameters to pass to emake. |
|
|
25 | # BUILD_TARGETS <string> clean modules The build targets to pass to |
|
|
26 | # make. |
|
|
27 | # MODULE_NAMES <string> This is the modules which are |
|
|
28 | # to be built automatically using |
|
|
29 | # the default pkg_compile/install. |
|
|
30 | # They are explained properly |
|
|
31 | # below. It will only make |
|
|
32 | # BUILD_TARGETS once in any |
|
|
33 | # directory. |
|
|
34 | |
|
|
35 | # MODULE_NAMES - Detailed Overview |
|
|
36 | # |
|
|
37 | # The structure of each MODULE_NAMES entry is as follows: |
|
|
38 | # modulename(libdir:srcdir:objdir) |
|
|
39 | # for example: |
|
|
40 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
|
|
41 | # |
|
|
42 | # what this would do is |
|
|
43 | # cd ${S}/pci |
|
|
44 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
|
|
45 | # cd ${S} |
|
|
46 | # insinto /lib/modules/${KV_FULL}/pci |
|
|
47 | # doins module_pci.${KV_OBJ} |
|
|
48 | # |
|
|
49 | # cd ${S}/usb |
|
|
50 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
|
|
51 | # cd ${S} |
|
|
52 | # insinto /lib/modules/${KV_FULL}/usb |
|
|
53 | # doins module_usb.${KV_OBJ} |
|
|
54 | # |
|
|
55 | # if the srcdir isnt specified, it assumes ${S} |
|
|
56 | # if the libdir isnt specified, it assumes misc. |
|
|
57 | # if the objdir isnt specified, it assumes srcdir |
|
|
58 | |
|
|
59 | # There is also support for automatyed modules.d file generation. |
|
|
60 | # This can be explicitly enabled by setting any of the following variables. |
|
|
61 | # |
|
|
62 | # |
|
|
63 | # MODULESD_${modulename}_ENABLED This enables the modules.d file |
|
|
64 | # generation even if we dont |
|
|
65 | # specify any additional info. |
|
|
66 | # MODULESD_${modulename}_EXAMPLES This is a bash array containing |
|
|
67 | # a list of examples which should |
|
|
68 | # be used. If you want us to try and |
|
|
69 | # take a guess. Set this to "guess" |
|
|
70 | # MODULESD_${modulename}_ALIASES This is a bash array containing |
|
|
71 | # a list of associated aliases. |
|
|
72 | # MODULESD_${modulename}_ADDITIONS This is a bash array containing |
|
|
73 | # A list of additional things to |
|
|
74 | # add to the bottom of the file. |
|
|
75 | # This can be absolutely anything. |
|
|
76 | # Each entry is a new line. |
|
|
77 | # MODULES_${modulename}_DOCS This is a string list which contains |
|
|
78 | # the full path to any associated |
|
|
79 | # documents for $modulename |
|
|
80 | |
7 | |
81 | |
8 | inherit linux-info |
82 | inherit linux-info |
9 | ECLASS=linux-mod |
|
|
10 | INHERITED="$INHERITED $ECLASS" |
|
|
11 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_compile |
83 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile pkg_postrm |
12 | |
84 | |
|
|
85 | IUSE="" # don't put pcmcia here, rather in the ebuilds that actually support pcmcia |
|
|
86 | SLOT="0" |
13 | DESCRIPTION="Based on the $ECLASS eclass" |
87 | DESCRIPTION="Based on the $ECLASS eclass" |
14 | SLOT=0 |
88 | RDEPEND="virtual/modutils |
15 | DEPEND="virtual/linux-sources |
89 | pcmcia? ( virtual/pcmcia )" |
16 | sys-apps/sed" |
90 | DEPEND="sys-apps/sed |
17 | |
91 | pcmcia? ( virtual/pcmcia )" |
18 | |
|
|
19 | # This eclass is designed to help ease the installation of external kernel |
|
|
20 | # modules into the kernel tree. |
|
|
21 | |
|
|
22 | |
92 | |
23 | # eclass utilities |
93 | # eclass utilities |
24 | # ---------------------------------- |
94 | # ---------------------------------- |
|
|
95 | |
|
|
96 | check_vermagic() { |
|
|
97 | local curr_gcc_ver=$(gcc -dumpversion) |
|
|
98 | local tmpfile old_chost old_gcc_ver result=0 |
|
|
99 | |
|
|
100 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
|
|
101 | tmpfile=${tmpfile//*usr/lib} |
|
|
102 | tmpfile=${tmpfile//\/include*} |
|
|
103 | old_chost=${tmpfile//*gcc\/} |
|
|
104 | old_chost=${old_chost//\/*} |
|
|
105 | old_gcc_ver=${tmpfile//*\/} |
|
|
106 | |
|
|
107 | if [[ -z ${old_gcc_ver} || -z ${old_chost} ]]; then |
|
|
108 | ewarn "" |
|
|
109 | ewarn "Unable to detect what version of GCC was used to compile" |
|
|
110 | ewarn "the kernel. Build will continue, but you may experience problems." |
|
|
111 | elif [[ ${curr_gcc_ver} != ${old_gcc_ver} ]]; then |
|
|
112 | ewarn "" |
|
|
113 | ewarn "The version of GCC you are using (${curr_gcc_ver}) does" |
|
|
114 | ewarn "not match the version of GCC used to compile the" |
|
|
115 | ewarn "kernel (${old_gcc_ver})." |
|
|
116 | result=1 |
|
|
117 | elif [[ ${CHOST} != ${old_chost} ]]; then |
|
|
118 | ewarn "" |
|
|
119 | ewarn "The current CHOST (${CHOST}) does not match the chost" |
|
|
120 | ewarn "used when compiling the kernel (${old_chost})." |
|
|
121 | result=1 |
|
|
122 | fi |
|
|
123 | |
|
|
124 | if [[ ${result} -gt 0 ]]; then |
|
|
125 | ewarn "" |
|
|
126 | ewarn "Build will not continue, because you will experience problems." |
|
|
127 | ewarn "To fix this either change the version of GCC you wish to use" |
|
|
128 | ewarn "to match the kernel, or recompile the kernel first." |
|
|
129 | die "GCC Version Mismatch." |
|
|
130 | fi |
|
|
131 | } |
|
|
132 | |
|
|
133 | unpack_pcmcia_sources() { |
|
|
134 | # So while the two eclasses exist side-by-side and also the ebuilds inherit |
|
|
135 | # both we need to check for PCMCIA_SOURCE_DIR, and if we find it, then we |
|
|
136 | # bail out and assume pcmcia.eclass is working on it. |
|
|
137 | [[ -n ${PCMCIA_SOURCE_DIR} ]] && return 1 |
|
|
138 | |
|
|
139 | if [[ -f "${1}" ]]; then |
|
|
140 | PCMCIA_SOURCE_DIR="${WORKDIR}/pcmcia-cs/" |
|
|
141 | |
|
|
142 | ebegin "Decompressing pcmcia-cs sources" |
|
|
143 | mkdir -p ${PCMCIA_SOURCE_DIR} |
|
|
144 | tar -xjf ${1} -C ${PCMCIA_SOURCE_DIR} |
|
|
145 | eend $? |
|
|
146 | |
|
|
147 | if [[ -f ${PCMCIA_SOURCE_DIR}/pcmcia-cs-version ]]; then |
|
|
148 | PCMCIA_VERSION=$(cat ${PCMCIA_SOURCE_DIR}/pcmcia-cs-version) |
|
|
149 | einfo "Found pcmcia-cs-${PCMCIA_VERSION}" |
|
|
150 | fi |
|
|
151 | fi |
|
|
152 | } |
|
|
153 | |
|
|
154 | # Dummy function for compatibility. |
|
|
155 | pcmcia_configure() { return 0; } |
|
|
156 | |
|
|
157 | pcmcia_src_unpack() { |
|
|
158 | local pcmcia_tbz="${ROOT}/usr/src/pcmcia-cs/pcmcia-cs-build-env.tbz2" |
|
|
159 | |
|
|
160 | # if the kernel has pcmcia support built in, then we just ignore all this. |
|
|
161 | if linux_chkconfig_present PCMCIA; then |
|
|
162 | einfo "Kernel based PCMCIA support has been detected." |
|
|
163 | else |
|
|
164 | if kernel_is 2 4; then |
|
|
165 | unpack_pcmcia_sources ${pcmcia_tbz}; |
|
|
166 | else |
|
|
167 | einfo "We have detected that you are running a 2.6 kernel" |
|
|
168 | einfo "but you are not using the built-in PCMCIA support." |
|
|
169 | einfo "We will assume you know what you are doing, but please" |
|
|
170 | einfo "consider using the built in PCMCIA support instead." |
|
|
171 | sleep 10 |
|
|
172 | |
|
|
173 | unpack_pcmcia_sources ${pcmcia_tbz}; |
|
|
174 | fi |
|
|
175 | fi |
|
|
176 | } |
25 | |
177 | |
26 | use_m() { |
178 | use_m() { |
27 | # if we haven't determined the version yet, we need too. |
179 | # if we haven't determined the version yet, we need too. |
28 | get_version; |
180 | get_version; |
29 | |
181 | |
30 | # if the kernel version is greater than 2.6.6 then we should use |
182 | # if the kernel version is greater than 2.6.6 then we should use |
31 | # M= instead of SUBDIRS= |
183 | # M= instead of SUBDIRS= |
32 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
184 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
33 | return 0 || return 1 |
185 | return 0 || return 1 |
34 | } |
186 | } |
35 | |
187 | |
36 | convert_to_m() { |
188 | convert_to_m() { |
37 | [ ! -f "${1}" ] && die "convert_to_m() requires a filename as an argument" |
|
|
38 | if use_m |
189 | if use_m |
39 | then |
190 | then |
|
|
191 | [ ! -f "${1}" ] && \ |
|
|
192 | die "convert_to_m() requires a filename as an argument" |
40 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
193 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
41 | sed -i 's:SUBDIRS=:M=:g' ${1} |
194 | sed -i 's:SUBDIRS=:M=:g' ${1} |
42 | eend $? |
195 | eend $? |
43 | fi |
196 | fi |
44 | } |
197 | } |
45 | |
198 | |
46 | update_depmod() { |
199 | update_depmod() { |
47 | # if we haven't determined the version yet, we need too. |
200 | # if we haven't determined the version yet, we need too. |
48 | get_version; |
201 | get_version; |
49 | |
202 | |
50 | ebegin "Updating module dependencies for ${KV_FULL}" |
203 | ebegin "Updating module dependencies for ${KV_FULL}" |
51 | if [ -r ${KV_OUT_DIR}/System.map ] |
204 | if [ -r ${KV_OUT_DIR}/System.map ] |
52 | then |
205 | then |
53 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
206 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
|
|
207 | eend $? |
54 | else |
208 | else |
55 | ewarn |
209 | ewarn |
56 | ewarn "${KV_OUT_DIR}/System.map not found." |
210 | ewarn "${KV_OUT_DIR}/System.map not found." |
57 | ewarn "You must manually update the kernel module dependencies using depmod." |
211 | ewarn "You must manually update the kernel module dependencies using depmod." |
|
|
212 | eend 1 |
58 | ewarn |
213 | ewarn |
59 | fi |
214 | fi |
60 | eend $? |
|
|
61 | } |
215 | } |
62 | |
216 | |
63 | update_modules() { |
217 | update_modules() { |
64 | if [ -x /sbin/modules-update ] ; |
218 | if [ -x /sbin/modules-update ] && \ |
65 | then |
219 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
66 | ebegin "Updating modules.conf" |
220 | ebegin "Updating modules.conf" |
67 | /sbin/modules-update |
221 | /sbin/modules-update |
68 | eend $? |
222 | eend $? |
|
|
223 | fi |
|
|
224 | } |
|
|
225 | |
|
|
226 | move_old_moduledb() { |
|
|
227 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
|
|
228 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
|
|
229 | |
|
|
230 | if [[ -f ${OLDDIR}/moduledb ]]; then |
|
|
231 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
|
|
232 | [[ ! -f ${NEWDIR}/moduledb ]] && \ |
|
|
233 | mv ${OLDDIR}/moduledb ${NEWDIR}/moduledb |
|
|
234 | rm -f ${OLDDIR}/* |
|
|
235 | rmdir ${OLDDIR} |
|
|
236 | fi |
|
|
237 | } |
|
|
238 | |
|
|
239 | update_moduledb() { |
|
|
240 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
|
|
241 | move_old_moduledb |
|
|
242 | |
|
|
243 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
|
|
244 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
|
|
245 | touch ${MODULEDB_DIR}/moduledb |
|
|
246 | fi |
|
|
247 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
|
|
248 | einfo "Adding module to moduledb." |
|
|
249 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
|
|
250 | fi |
|
|
251 | } |
|
|
252 | |
|
|
253 | remove_moduledb() { |
|
|
254 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
|
|
255 | move_old_moduledb |
|
|
256 | |
|
|
257 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
|
|
258 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
|
|
259 | sed -ie "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
69 | fi |
260 | fi |
70 | } |
261 | } |
71 | |
262 | |
72 | set_kvobj() { |
263 | set_kvobj() { |
73 | if kernel_is 2 6 |
264 | if kernel_is 2 6 |
74 | then |
265 | then |
75 | KV_OBJ="ko" |
266 | KV_OBJ="ko" |
76 | else |
267 | else |
77 | KV_OBJ="o" |
268 | KV_OBJ="o" |
78 | fi |
269 | fi |
|
|
270 | # Do we really need to know this? |
|
|
271 | # Lets silence it. |
79 | einfo "Using KV_OBJ=${KV_OBJ}" |
272 | # einfo "Using KV_OBJ=${KV_OBJ}" |
80 | } |
273 | } |
81 | |
274 | |
82 | display_postinst() { |
275 | generate_modulesd() { |
83 | # if we haven't determined the version yet, we need too. |
276 | # This function will generate the neccessary modules.d file from the |
84 | get_version; |
277 | # information contained in the modules exported parms |
85 | |
|
|
86 | local modulename moduledir sourcedir module_temp file i |
|
|
87 | |
|
|
88 | file=${ROOT}/etc/modules.autoload.d/kernel-${KV_MAJOR}.${KV_MINOR} |
|
|
89 | file=${file/\/\///} |
|
|
90 | |
278 | |
91 | einfo "If you would like to load this module automatically upon boot" |
279 | local currm_path currm currm_t t myIFS myVAR |
92 | einfo "please type the following as root:" |
280 | local module_docs module_enabled module_aliases \ |
93 | for i in ${MODULE_NAMES} |
281 | module_additions module_examples module_modinfo module_opts |
|
|
282 | |
|
|
283 | for currm_path in ${@} |
94 | do |
284 | do |
95 | module_temp="$(echo ${i} | sed -e "s:.*(\(.*\)):\1:")" |
285 | currm=${currm_path//*\/} |
96 | modulename="${i/(*/}" |
286 | currm=$(echo ${currm} | tr '[:lower:]' '[:upper:]') |
97 | moduledir="${module_temp/:*/}" |
287 | currm_t=${currm} |
98 | moduledir="${moduledir:-misc}" |
288 | while [[ -z ${currm_t//*-*} ]]; do |
99 | sourcedir="${module_temp/*:/}" |
289 | currm_t=${currm_t/-/_} |
100 | sourcedir="${sourcedir:-${S}}" |
|
|
101 | |
|
|
102 | einfo " # echo \"${modulename}\" >> ${file}" |
|
|
103 | done |
290 | done |
104 | echo |
291 | |
|
|
292 | module_docs="$(eval echo \${MODULESD_${currm_t}_DOCS})" |
|
|
293 | module_enabled="$(eval echo \${MODULESD_${currm_t}_ENABLED})" |
|
|
294 | module_aliases="$(eval echo \${#MODULESD_${currm_t}_ALIASES[*]})" |
|
|
295 | module_additions="$(eval echo \${#MODULESD_${currm_t}_ADDITIONS[*]})" |
|
|
296 | module_examples="$(eval echo \${#MODULESD_${currm_t}_EXAMPLES[*]})" |
|
|
297 | |
|
|
298 | [[ ${module_aliases} -eq 0 ]] && unset module_aliases |
|
|
299 | [[ ${module_additions} -eq 0 ]] && unset module_additions |
|
|
300 | [[ ${module_examples} -eq 0 ]] && unset module_examples |
|
|
301 | |
|
|
302 | # If we specify we dont want it, then lets exit, otherwise we assume |
|
|
303 | # that if its set, we do want it. |
|
|
304 | [[ ${module_enabled} == no ]] && return 0 |
|
|
305 | |
|
|
306 | # unset any unwanted variables. |
|
|
307 | for t in ${!module_*} |
|
|
308 | do |
|
|
309 | [[ -z ${!t} ]] && unset ${t} |
|
|
310 | done |
|
|
311 | |
|
|
312 | [[ -z ${!module_*} ]] && return 0 |
|
|
313 | |
|
|
314 | # OK so now if we have got this far, then we know we want to continue |
|
|
315 | # and generate the modules.d file. |
|
|
316 | module_modinfo="$(modinfo -p ${currm_path}.${KV_OBJ})" |
|
|
317 | module_config="${T}/modulesd-${currm}" |
|
|
318 | |
|
|
319 | ebegin "Preparing file for modules.d" |
|
|
320 | #----------------------------------------------------------------------- |
|
|
321 | echo "# modules.d configuration file for ${currm}" >> ${module_config} |
|
|
322 | #----------------------------------------------------------------------- |
|
|
323 | [[ -n ${module_docs} ]] && \ |
|
|
324 | echo "# For more information please read:" >> ${module_config} |
|
|
325 | for t in ${module_docs} |
|
|
326 | do |
|
|
327 | echo "# ${t//*\/}" >> ${module_config} |
|
|
328 | done |
|
|
329 | echo >> ${module_config} |
|
|
330 | |
|
|
331 | #----------------------------------------------------------------------- |
|
|
332 | if [[ ${module_aliases} -gt 0 ]] |
|
|
333 | then |
|
|
334 | echo "# Internal Aliases - Do not edit" >> ${module_config} |
|
|
335 | echo "# ------------------------------" >> ${module_config} |
|
|
336 | |
|
|
337 | for((t=0; t<${module_aliases}; t++)) |
|
|
338 | do |
|
|
339 | echo "alias $(eval echo \${MODULESD_${currm}_ALIASES[$t]})" \ |
|
|
340 | >> ${module_config} |
|
|
341 | done |
|
|
342 | echo '' >> ${module_config} |
|
|
343 | fi |
|
|
344 | |
|
|
345 | #----------------------------------------------------------------------- |
|
|
346 | if [[ -n ${module_modinfo} ]] |
|
|
347 | then |
|
|
348 | echo >> ${module_config} |
|
|
349 | echo "# Configurable module parameters" >> ${module_config} |
|
|
350 | echo "# ------------------------------" >> ${module_config} |
|
|
351 | myIFS="${IFS}" |
|
|
352 | IFS="$(echo -en "\n\b")" |
|
|
353 | |
|
|
354 | for t in ${module_modinfo} |
|
|
355 | do |
|
|
356 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
|
|
357 | if [[ -n ${myVAR} ]] |
|
|
358 | then |
|
|
359 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
|
|
360 | fi |
|
|
361 | echo -e "# ${t%%:*}:\t${t#*:}" >> ${module_config} |
|
|
362 | done |
|
|
363 | IFS="${myIFS}" |
|
|
364 | echo '' >> ${module_config} |
|
|
365 | fi |
|
|
366 | |
|
|
367 | #----------------------------------------------------------------------- |
|
|
368 | if [[ $(eval echo \${MODULESD_${currm}_ALIASES[0]}) == guess ]] |
|
|
369 | then |
|
|
370 | # So lets do some guesswork eh? |
|
|
371 | if [[ -n ${module_opts} ]] |
|
|
372 | then |
|
|
373 | echo "# For Example..." >> ${module_config} |
|
|
374 | echo "# --------------" >> ${module_config} |
|
|
375 | for t in ${module_opts} |
|
|
376 | do |
|
|
377 | echo "# options ${currm} ${t//:*}=${t//*:}" >> ${module_config} |
|
|
378 | done |
|
|
379 | echo '' >> ${module_config} |
|
|
380 | fi |
|
|
381 | elif [[ ${module_examples} -gt 0 ]] |
|
|
382 | then |
|
|
383 | echo "# For Example..." >> ${module_config} |
|
|
384 | echo "# --------------" >> ${module_config} |
|
|
385 | for((t=0; t<${module_examples}; t++)) |
|
|
386 | do |
|
|
387 | echo "options $(eval echo \${MODULESD_${currm}_EXAMPLES[$t]})" \ |
|
|
388 | >> ${module_config} |
|
|
389 | done |
|
|
390 | echo '' >> ${module_config} |
|
|
391 | fi |
|
|
392 | |
|
|
393 | #----------------------------------------------------------------------- |
|
|
394 | if [[ ${module_additions} -gt 0 ]] |
|
|
395 | then |
|
|
396 | for((t=0; t<${module_additions}; t++)) |
|
|
397 | do |
|
|
398 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
|
|
399 | >> ${module_config} |
|
|
400 | done |
|
|
401 | echo '' >> ${module_config} |
|
|
402 | fi |
|
|
403 | |
|
|
404 | #----------------------------------------------------------------------- |
|
|
405 | |
|
|
406 | # then we install it |
|
|
407 | insinto /etc/modules.d |
|
|
408 | newins ${module_config} ${currm_path//*\/} |
|
|
409 | |
|
|
410 | # and install any documentation we might have. |
|
|
411 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
|
|
412 | done |
|
|
413 | eend 0 |
|
|
414 | return 0 |
|
|
415 | } |
|
|
416 | |
|
|
417 | find_module_params() { |
|
|
418 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
|
|
419 | local i=0 y=0 z=0 |
|
|
420 | |
|
|
421 | for((i=0; i<=${#test}; i++)) |
|
|
422 | do |
|
|
423 | case ${test:${i}:1} in |
|
|
424 | \() matched_offset[0]=${i};; |
|
|
425 | \:) matched_opts=$((${matched_opts} + 1)); |
|
|
426 | matched_offset[${matched_opts}]="${i}";; |
|
|
427 | \)) matched_opts=$((${matched_opts} + 1)); |
|
|
428 | matched_offset[${matched_opts}]="${i}";; |
|
|
429 | esac |
|
|
430 | done |
|
|
431 | |
|
|
432 | for((i=0; i<=${matched_opts}; i++)) |
|
|
433 | do |
|
|
434 | # i = offset were working on |
|
|
435 | # y = last offset |
|
|
436 | # z = current offset - last offset |
|
|
437 | # temp_var = temporary name |
|
|
438 | case ${i} in |
|
|
439 | 0) tempvar=${test:0:${matched_offset[0]}};; |
|
|
440 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
|
|
441 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
|
|
442 | z=$((${z} - 1)) |
|
|
443 | tempvar=${test:${y}:${z}};; |
|
|
444 | esac |
|
|
445 | |
|
|
446 | case ${i} in |
|
|
447 | 0) result="${result} modulename:${tempvar}";; |
|
|
448 | 1) result="${result} libdir:${tempvar}";; |
|
|
449 | 2) result="${result} srcdir:${tempvar}";; |
|
|
450 | 3) result="${result} objdir:${tempvar}";; |
|
|
451 | esac |
|
|
452 | done |
|
|
453 | |
|
|
454 | echo ${result} |
105 | } |
455 | } |
106 | |
456 | |
107 | # default ebuild functions |
457 | # default ebuild functions |
108 | # -------------------------------- |
458 | # -------------------------------- |
109 | |
459 | |
110 | linux-mod_pkg_setup() { |
460 | linux-mod_pkg_setup() { |
111 | linux-info_pkg_setup; |
461 | linux-info_pkg_setup; |
112 | check_kernel_built; |
462 | check_kernel_built; |
113 | check_modules_supported; |
463 | check_modules_supported; |
114 | check_extra_config; |
|
|
115 | set_kvobj; |
464 | set_kvobj; |
|
|
465 | # Commented out with permission from johnm until a fixed version for arches |
|
|
466 | # who intentionally use different kernel and userland compilers can be |
|
|
467 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
|
|
468 | #check_vermagic; |
116 | } |
469 | } |
117 | |
470 | |
118 | linux-mod_src_compile() { |
471 | linux-mod_src_compile() { |
119 | local modulename moduledir sourcedir module_temp xarch i |
472 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" |
120 | xarch="${ARCH}" |
473 | ARCH="$(tc-arch-kernel)" |
121 | unset ARCH |
|
|
122 | |
474 | |
|
|
475 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
|
|
476 | |
|
|
477 | for i in ${MODULE_IGNORE} |
|
|
478 | do |
|
|
479 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
480 | done |
|
|
481 | |
123 | for i in "${MODULE_NAMES}" |
482 | for i in ${MODULE_NAMES} |
|
|
483 | do |
|
|
484 | unset libdir srcdir objdir |
|
|
485 | for n in $(find_module_params ${i}) |
124 | do |
486 | do |
125 | module_temp="$(echo ${i} | sed -e "s:.*(\(.*\)):\1:")" |
487 | eval ${n/:*}=${n/*:/} |
126 | modulename="${i/(*/}" |
488 | done |
127 | moduledir="${module_temp/:*/}" |
489 | libdir=${libdir:-misc} |
128 | moduledir="${moduledir:-misc}" |
|
|
129 | sourcedir="${module_temp/*:/}" |
|
|
130 | sourcedir="${sourcedir:-${S}}" |
490 | srcdir=${srcdir:-${S}} |
131 | |
491 | objdir=${objdir:-${srcdir}} |
|
|
492 | |
|
|
493 | if [ ! -f "${srcdir}/.built" ]; |
|
|
494 | then |
|
|
495 | cd ${srcdir} |
132 | einfo "Preparing ${modulename} module" |
496 | einfo "Preparing ${modulename} module" |
133 | cd ${sourcedir} |
497 | if [[ -n ${ECONF_PARAMS} ]] |
134 | emake ${BUILD_PARAMS} ${BUILD_TARGETS:-clean module} || die Unable to make ${BUILD_PARAMS} ${BUILD_TARGETS:-clean module}. |
498 | then |
|
|
499 | econf ${ECONF_PARAMS} || \ |
|
|
500 | die "Unable to run econf ${ECONF_PARAMS}" |
|
|
501 | fi |
|
|
502 | |
|
|
503 | emake ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
|
|
504 | || die "Unable to make \ |
|
|
505 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
|
|
506 | touch ${srcdir}/.built |
|
|
507 | cd ${OLDPWD} |
|
|
508 | fi |
135 | done |
509 | done |
136 | ARCH="${xarch}" |
510 | |
|
|
511 | ARCH="${myARCH}" |
137 | } |
512 | } |
138 | |
513 | |
139 | linux-mod_src_install() { |
514 | linux-mod_src_install() { |
140 | local modulename moduledir sourcedir module_temp i |
515 | local modulename libdir srcdir objdir i n |
141 | |
516 | |
|
|
517 | for i in ${MODULE_IGNORE} |
|
|
518 | do |
|
|
519 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
520 | done |
|
|
521 | |
142 | for i in "${MODULE_NAMES}" |
522 | for i in ${MODULE_NAMES} |
|
|
523 | do |
|
|
524 | unset libdir srcdir objdir |
|
|
525 | for n in $(find_module_params ${i}) |
143 | do |
526 | do |
144 | module_temp="$(echo ${i} | sed -e "s:.*(\(.*\)):\1:")" |
527 | eval ${n/:*}=${n/*:/} |
145 | modulename="${i/(*/}" |
528 | done |
146 | moduledir="${module_temp/:*/}" |
529 | libdir=${libdir:-misc} |
147 | moduledir="${moduledir:-misc}" |
|
|
148 | sourcedir="${module_temp/*:/}" |
|
|
149 | sourcedir="${sourcedir:-${S}}" |
530 | srcdir=${srcdir:-${S}} |
|
|
531 | objdir=${objdir:-${srcdir}} |
150 | |
532 | |
151 | einfo "Installing ${modulename} module" |
533 | einfo "Installing ${modulename} module" |
152 | cd ${sourcedir} |
534 | cd ${objdir} || die "${objdir} does not exist" |
153 | insinto /lib/modules/${KV_FULL}/${moduledir} |
535 | insinto /lib/modules/${KV_FULL}/${libdir} |
154 | doins ${modulename}.${KV_OBJ} |
536 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
|
|
537 | cd ${OLDPWD} |
|
|
538 | |
|
|
539 | generate_modulesd ${objdir}/${modulename} |
155 | done |
540 | done |
156 | } |
541 | } |
157 | |
542 | |
158 | linux-mod_pkg_postinst() { |
543 | linux-mod_pkg_postinst() { |
159 | update_depmod; |
544 | update_depmod; |
160 | update_modules; |
545 | update_modules; |
161 | display_postinst; |
546 | update_moduledb; |
162 | } |
547 | } |
|
|
548 | |
|
|
549 | linux-mod_pkg_postrm() { |
|
|
550 | remove_moduledb; |
|
|
551 | } |