| 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.54 2005/10/22 17:35:39 johnm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.85 2008/10/31 21:25:56 dsd Exp $ |
| 4 | |
4 | |
| 5 | # Description: This eclass is used to interface with linux-info in such a way |
5 | # Description: This eclass is used to interface with linux-info in such a way |
| 6 | # to provide the functionality required and initial functions |
6 | # to provide the functionality required and initial functions |
| 7 | # required to install external modules against a kernel source |
7 | # required to install external modules against a kernel source |
| 8 | # tree. |
8 | # tree. |
| 9 | # |
9 | # |
| 10 | # Maintainer: John Mylchreest <johnm@gentoo.org> |
10 | # Author(s): John Mylchreest <johnm@gentoo.org>, |
| 11 | # Copyright 2004 Gentoo Linux |
11 | # Stefan Schweizer <genstef@gentoo.org> |
|
|
12 | # Maintainer: kernel-misc@gentoo.org |
| 12 | # |
13 | # |
| 13 | # Please direct your bugs to the current eclass maintainer :) |
14 | # Please direct your bugs to the current eclass maintainer :) |
| 14 | |
15 | |
| 15 | # A Couple of env vars are available to effect usage of this eclass |
16 | # A Couple of env vars are available to effect usage of this eclass |
| 16 | # These are as follows: |
17 | # These are as follows: |
| … | |
… | |
| 34 | |
35 | |
| 35 | # MODULE_NAMES - Detailed Overview |
36 | # MODULE_NAMES - Detailed Overview |
| 36 | # |
37 | # |
| 37 | # The structure of each MODULE_NAMES entry is as follows: |
38 | # The structure of each MODULE_NAMES entry is as follows: |
| 38 | # modulename(libdir:srcdir:objdir) |
39 | # modulename(libdir:srcdir:objdir) |
|
|
40 | # |
|
|
41 | # modulename = name of the module file excluding the .ko |
|
|
42 | # libdir = place in system modules directory where module is installed: |
|
|
43 | # srcdir = place for ebuild to cd to before running make |
|
|
44 | # objdir = place the .ko and objects are located after make runs |
|
|
45 | # |
|
|
46 | # To get an idea of how these variables are used, here's a few lines |
|
|
47 | # of code from around line 540 in this eclass: |
|
|
48 | # |
|
|
49 | # einfo "Installing ${modulename} module" |
|
|
50 | # cd ${objdir} || die "${objdir} does not exist" |
|
|
51 | # insinto /lib/modules/${KV_FULL}/${libdir} |
|
|
52 | # doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
|
|
53 | # |
| 39 | # for example: |
54 | # for example: |
| 40 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
55 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
| 41 | # |
56 | # |
| 42 | # what this would do is |
57 | # what this would do is |
| 43 | # cd ${S}/pci |
58 | # cd ${S}/pci |
| … | |
… | |
| 54 | # |
69 | # |
| 55 | # if the srcdir isnt specified, it assumes ${S} |
70 | # if the srcdir isnt specified, it assumes ${S} |
| 56 | # if the libdir isnt specified, it assumes misc. |
71 | # if the libdir isnt specified, it assumes misc. |
| 57 | # if the objdir isnt specified, it assumes srcdir |
72 | # if the objdir isnt specified, it assumes srcdir |
| 58 | |
73 | |
| 59 | # There is also support for automatyed modules.d file generation. |
74 | # There is also support for automated modprobe.d/modules.d(2.4) file generation. |
| 60 | # This can be explicitly enabled by setting any of the following variables. |
75 | # This can be explicitly enabled by setting any of the following variables. |
| 61 | # |
76 | # |
| 62 | # |
77 | # |
| 63 | # MODULESD_${modulename}_ENABLED This enables the modules.d file |
78 | # MODULESD_${modulename}_ENABLED This enables the modules.d file |
| 64 | # generation even if we dont |
79 | # generation even if we dont |
| … | |
… | |
| 76 | # Each entry is a new line. |
91 | # Each entry is a new line. |
| 77 | # MODULES_${modulename}_DOCS This is a string list which contains |
92 | # MODULES_${modulename}_DOCS This is a string list which contains |
| 78 | # the full path to any associated |
93 | # the full path to any associated |
| 79 | # documents for $modulename |
94 | # documents for $modulename |
| 80 | |
95 | |
|
|
96 | # The order of these is important as both of linux-info and eutils contain |
|
|
97 | # set_arch_to_kernel and set_arch_to_portage functions and the ones in eutils |
|
|
98 | # are deprecated in favor of the ones in linux-info. |
|
|
99 | # See http://bugs.gentoo.org/show_bug.cgi?id=127506 |
| 81 | |
100 | |
| 82 | inherit linux-info |
101 | inherit eutils linux-info multilib |
| 83 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile pkg_postrm |
102 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst src_install src_compile pkg_postrm |
| 84 | |
103 | |
| 85 | IUSE="" # don't put pcmcia here, rather in the ebuilds that actually support pcmcia |
104 | IUSE="kernel_linux" |
| 86 | SLOT="0" |
105 | SLOT="0" |
| 87 | DESCRIPTION="Based on the $ECLASS eclass" |
106 | DESCRIPTION="Based on the $ECLASS eclass" |
| 88 | RDEPEND="virtual/modutils |
107 | RDEPEND="kernel_linux? ( virtual/modutils )" |
| 89 | pcmcia? ( virtual/pcmcia )" |
108 | DEPEND="${RDEPEND} |
| 90 | DEPEND="virtual/linux-sources |
|
|
| 91 | sys-apps/sed |
109 | sys-apps/sed" |
| 92 | pcmcia? ( virtual/pcmcia )" |
|
|
| 93 | |
110 | |
| 94 | # eclass utilities |
111 | # eclass utilities |
| 95 | # ---------------------------------- |
112 | # ---------------------------------- |
| 96 | |
113 | |
| 97 | check_vermagic() { |
114 | check_vermagic() { |
|
|
115 | debug-print-function ${FUNCNAME} $* |
|
|
116 | |
| 98 | local curr_gcc_ver=$(gcc -dumpversion) |
117 | local curr_gcc_ver=$(gcc -dumpversion) |
| 99 | local tmpfile old_chost old_gcc_ver result=0 |
118 | local tmpfile old_chost old_gcc_ver result=0 |
| 100 | |
119 | |
| 101 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
120 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
| 102 | tmpfile=${tmpfile//*usr/lib} |
121 | tmpfile=${tmpfile//*usr/lib} |
| … | |
… | |
| 129 | ewarn "to match the kernel, or recompile the kernel first." |
148 | ewarn "to match the kernel, or recompile the kernel first." |
| 130 | die "GCC Version Mismatch." |
149 | die "GCC Version Mismatch." |
| 131 | fi |
150 | fi |
| 132 | } |
151 | } |
| 133 | |
152 | |
| 134 | unpack_pcmcia_sources() { |
|
|
| 135 | # So while the two eclasses exist side-by-side and also the ebuilds inherit |
|
|
| 136 | # both we need to check for PCMCIA_SOURCE_DIR, and if we find it, then we |
|
|
| 137 | # bail out and assume pcmcia.eclass is working on it. |
|
|
| 138 | [[ -n ${PCMCIA_SOURCE_DIR} ]] && return 1 |
|
|
| 139 | |
|
|
| 140 | if [[ -f "${1}" ]]; then |
|
|
| 141 | PCMCIA_SOURCE_DIR="${WORKDIR}/pcmcia-cs/" |
|
|
| 142 | |
|
|
| 143 | ebegin "Decompressing pcmcia-cs sources" |
|
|
| 144 | mkdir -p ${PCMCIA_SOURCE_DIR} |
|
|
| 145 | tar -xjf ${1} -C ${PCMCIA_SOURCE_DIR} |
|
|
| 146 | eend $? |
|
|
| 147 | |
|
|
| 148 | if [[ -f ${PCMCIA_SOURCE_DIR}/pcmcia-cs-version ]]; then |
|
|
| 149 | PCMCIA_VERSION=$(cat ${PCMCIA_SOURCE_DIR}/pcmcia-cs-version) |
|
|
| 150 | einfo "Found pcmcia-cs-${PCMCIA_VERSION}" |
|
|
| 151 | fi |
|
|
| 152 | fi |
|
|
| 153 | } |
|
|
| 154 | |
|
|
| 155 | # Dummy function for compatibility. |
|
|
| 156 | pcmcia_configure() { return 0; } |
|
|
| 157 | |
|
|
| 158 | pcmcia_src_unpack() { |
|
|
| 159 | local pcmcia_tbz="${ROOT}/usr/src/pcmcia-cs/pcmcia-cs-build-env.tbz2" |
|
|
| 160 | |
|
|
| 161 | # if the kernel has pcmcia support built in, then we just ignore all this. |
|
|
| 162 | if linux_chkconfig_present PCMCIA; then |
|
|
| 163 | einfo "Kernel based PCMCIA support has been detected." |
|
|
| 164 | else |
|
|
| 165 | if kernel_is 2 4; then |
|
|
| 166 | unpack_pcmcia_sources ${pcmcia_tbz}; |
|
|
| 167 | else |
|
|
| 168 | einfo "We have detected that you are running a 2.6 kernel" |
|
|
| 169 | einfo "but you are not using the built-in PCMCIA support." |
|
|
| 170 | einfo "We will assume you know what you are doing, but please" |
|
|
| 171 | einfo "consider using the built in PCMCIA support instead." |
|
|
| 172 | sleep 10 |
|
|
| 173 | |
|
|
| 174 | unpack_pcmcia_sources ${pcmcia_tbz}; |
|
|
| 175 | fi |
|
|
| 176 | fi |
|
|
| 177 | } |
|
|
| 178 | |
|
|
| 179 | use_m() { |
153 | use_m() { |
|
|
154 | debug-print-function ${FUNCNAME} $* |
|
|
155 | |
| 180 | # if we haven't determined the version yet, we need too. |
156 | # if we haven't determined the version yet, we need too. |
| 181 | get_version; |
157 | get_version; |
| 182 | |
158 | |
| 183 | # if the kernel version is greater than 2.6.6 then we should use |
159 | # if the kernel version is greater than 2.6.6 then we should use |
| 184 | # M= instead of SUBDIRS= |
160 | # M= instead of SUBDIRS= |
| 185 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
161 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
| 186 | return 0 || return 1 |
162 | return 0 || return 1 |
| 187 | } |
163 | } |
| 188 | |
164 | |
| 189 | convert_to_m() { |
165 | convert_to_m() { |
|
|
166 | debug-print-function ${FUNCNAME} $* |
|
|
167 | |
| 190 | if use_m |
168 | if use_m |
| 191 | then |
169 | then |
| 192 | [ ! -f "${1}" ] && \ |
170 | [ ! -f "${1}" ] && \ |
| 193 | die "convert_to_m() requires a filename as an argument" |
171 | die "convert_to_m() requires a filename as an argument" |
| 194 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
172 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
| … | |
… | |
| 196 | eend $? |
174 | eend $? |
| 197 | fi |
175 | fi |
| 198 | } |
176 | } |
| 199 | |
177 | |
| 200 | update_depmod() { |
178 | update_depmod() { |
|
|
179 | debug-print-function ${FUNCNAME} $* |
|
|
180 | |
| 201 | # if we haven't determined the version yet, we need too. |
181 | # if we haven't determined the version yet, we need too. |
| 202 | get_version; |
182 | get_version; |
| 203 | |
183 | |
| 204 | ebegin "Updating module dependencies for ${KV_FULL}" |
184 | ebegin "Updating module dependencies for ${KV_FULL}" |
| 205 | if [ -r ${KV_OUT_DIR}/System.map ] |
185 | if [ -r ${KV_OUT_DIR}/System.map ] |
| … | |
… | |
| 214 | ewarn |
194 | ewarn |
| 215 | fi |
195 | fi |
| 216 | } |
196 | } |
| 217 | |
197 | |
| 218 | update_modules() { |
198 | update_modules() { |
|
|
199 | debug-print-function ${FUNCNAME} $* |
|
|
200 | |
| 219 | if [ -x /sbin/modules-update ] && \ |
201 | if [ -x /sbin/update-modules ] && \ |
| 220 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
202 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
| 221 | ebegin "Updating modules.conf" |
203 | ebegin "Updating modules.conf" |
| 222 | /sbin/modules-update |
204 | /sbin/update-modules |
| 223 | eend $? |
205 | eend $? |
|
|
206 | elif [ -x /sbin/update-modules ] && \ |
|
|
207 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
|
|
208 | ebegin "Updating modules.conf" |
|
|
209 | /sbin/update-modules |
|
|
210 | eend $? |
| 224 | fi |
211 | fi |
| 225 | } |
212 | } |
| 226 | |
213 | |
| 227 | move_old_moduledb() { |
214 | move_old_moduledb() { |
|
|
215 | debug-print-function ${FUNCNAME} $* |
|
|
216 | |
| 228 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
217 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
| 229 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
218 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
| 230 | |
219 | |
| 231 | if [[ -f ${OLDDIR}/moduledb ]]; then |
220 | if [[ -f ${OLDDIR}/moduledb ]]; then |
| 232 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
221 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
| … | |
… | |
| 236 | rmdir ${OLDDIR} |
225 | rmdir ${OLDDIR} |
| 237 | fi |
226 | fi |
| 238 | } |
227 | } |
| 239 | |
228 | |
| 240 | update_moduledb() { |
229 | update_moduledb() { |
|
|
230 | debug-print-function ${FUNCNAME} $* |
|
|
231 | |
| 241 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
232 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
| 242 | move_old_moduledb |
233 | move_old_moduledb |
| 243 | |
234 | |
| 244 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
235 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
| 245 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
236 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
| 246 | touch ${MODULEDB_DIR}/moduledb |
237 | touch ${MODULEDB_DIR}/moduledb |
| 247 | fi |
238 | fi |
|
|
239 | |
| 248 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
240 | if ! grep -qs ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb ; then |
| 249 | einfo "Adding module to moduledb." |
241 | einfo "Adding module to moduledb." |
| 250 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
242 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
| 251 | fi |
243 | fi |
| 252 | } |
244 | } |
| 253 | |
245 | |
| 254 | remove_moduledb() { |
246 | remove_moduledb() { |
|
|
247 | debug-print-function ${FUNCNAME} $* |
|
|
248 | |
| 255 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
249 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
| 256 | move_old_moduledb |
250 | move_old_moduledb |
| 257 | |
251 | |
| 258 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
252 | if grep -qs ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb ; then |
| 259 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
253 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
| 260 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${MODULEDB_DIR}/moduledb |
254 | sed -i -e "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
| 261 | fi |
255 | fi |
| 262 | } |
256 | } |
| 263 | |
257 | |
| 264 | set_kvobj() { |
258 | set_kvobj() { |
|
|
259 | debug-print-function ${FUNCNAME} $* |
|
|
260 | |
| 265 | if kernel_is 2 6 |
261 | if kernel_is 2 6 |
| 266 | then |
262 | then |
| 267 | KV_OBJ="ko" |
263 | KV_OBJ="ko" |
| 268 | else |
264 | else |
| 269 | KV_OBJ="o" |
265 | KV_OBJ="o" |
| … | |
… | |
| 271 | # Do we really need to know this? |
267 | # Do we really need to know this? |
| 272 | # Lets silence it. |
268 | # Lets silence it. |
| 273 | # einfo "Using KV_OBJ=${KV_OBJ}" |
269 | # einfo "Using KV_OBJ=${KV_OBJ}" |
| 274 | } |
270 | } |
| 275 | |
271 | |
|
|
272 | get-KERNEL_CC() { |
|
|
273 | debug-print-function ${FUNCNAME} $* |
|
|
274 | |
|
|
275 | if [[ -n ${KERNEL_CC} ]] ; then |
|
|
276 | echo "${KERNEL_CC}" |
|
|
277 | return |
|
|
278 | fi |
|
|
279 | |
|
|
280 | local kernel_cc |
|
|
281 | if [ -n "${KERNEL_ABI}" ]; then |
|
|
282 | # In future, an arch might want to define CC_$ABI |
|
|
283 | #kernel_cc="$(get_abi_CC)" |
|
|
284 | #[ -z "${kernel_cc}" ] && |
|
|
285 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
|
|
286 | else |
|
|
287 | kernel_cc=$(tc-getCC) |
|
|
288 | fi |
|
|
289 | echo "${kernel_cc}" |
|
|
290 | } |
|
|
291 | |
| 276 | generate_modulesd() { |
292 | generate_modulesd() { |
|
|
293 | debug-print-function ${FUNCNAME} $* |
|
|
294 | |
| 277 | # This function will generate the neccessary modules.d file from the |
295 | # This function will generate the neccessary modules.d file from the |
| 278 | # information contained in the modules exported parms |
296 | # information contained in the modules exported parms |
| 279 | |
297 | |
| 280 | local currm_path currm currm_t t myIFS myVAR |
298 | local currm_path currm currm_t t myIFS myVAR |
| 281 | local module_docs module_enabled module_aliases \ |
299 | local module_docs module_enabled module_aliases \ |
| … | |
… | |
| 403 | fi |
421 | fi |
| 404 | |
422 | |
| 405 | #----------------------------------------------------------------------- |
423 | #----------------------------------------------------------------------- |
| 406 | |
424 | |
| 407 | # then we install it |
425 | # then we install it |
|
|
426 | if kernel_is ge 2 6; then |
|
|
427 | insinto /etc/modprobe.d |
|
|
428 | else |
| 408 | insinto /etc/modules.d |
429 | insinto /etc/modules.d |
|
|
430 | fi |
| 409 | newins ${module_config} ${currm_path//*\/} |
431 | newins ${module_config} ${currm_path//*\/} |
| 410 | |
432 | |
| 411 | # and install any documentation we might have. |
433 | # and install any documentation we might have. |
| 412 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
434 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
| 413 | done |
435 | done |
| 414 | eend 0 |
436 | eend 0 |
| 415 | return 0 |
437 | return 0 |
| 416 | } |
438 | } |
| 417 | |
439 | |
| 418 | find_module_params() { |
440 | find_module_params() { |
|
|
441 | debug-print-function ${FUNCNAME} $* |
|
|
442 | |
| 419 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
443 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
| 420 | local i=0 y=0 z=0 |
444 | local i=0 y=0 z=0 |
| 421 | |
445 | |
| 422 | for((i=0; i<=${#test}; i++)) |
446 | for((i=0; i<=${#test}; i++)) |
| 423 | do |
447 | do |
| … | |
… | |
| 457 | |
481 | |
| 458 | # default ebuild functions |
482 | # default ebuild functions |
| 459 | # -------------------------------- |
483 | # -------------------------------- |
| 460 | |
484 | |
| 461 | linux-mod_pkg_setup() { |
485 | linux-mod_pkg_setup() { |
|
|
486 | debug-print-function ${FUNCNAME} $* |
|
|
487 | |
| 462 | linux-info_pkg_setup; |
488 | linux-info_pkg_setup; |
|
|
489 | require_configured_kernel |
| 463 | check_kernel_built; |
490 | check_kernel_built; |
| 464 | check_modules_supported; |
491 | strip_modulenames; |
|
|
492 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
| 465 | set_kvobj; |
493 | set_kvobj; |
|
|
494 | # Commented out with permission from johnm until a fixed version for arches |
|
|
495 | # who intentionally use different kernel and userland compilers can be |
|
|
496 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
| 466 | check_vermagic; |
497 | #check_vermagic; |
| 467 | } |
498 | } |
| 468 | |
499 | |
| 469 | linux-mod_src_compile() { |
500 | strip_modulenames() { |
| 470 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" |
501 | debug-print-function ${FUNCNAME} $* |
| 471 | ARCH="$(tc-arch-kernel)" |
|
|
| 472 | |
502 | |
| 473 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
503 | local i |
| 474 | |
|
|
| 475 | for i in ${MODULE_IGNORE} |
504 | for i in ${MODULE_IGNORE}; do |
| 476 | do |
|
|
| 477 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
505 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 478 | done |
506 | done |
|
|
507 | } |
| 479 | |
508 | |
|
|
509 | linux-mod_src_compile() { |
|
|
510 | debug-print-function ${FUNCNAME} $* |
|
|
511 | |
|
|
512 | local modulename libdir srcdir objdir i n myABI="${ABI}" |
|
|
513 | set_arch_to_kernel |
|
|
514 | ABI="${KERNEL_ABI}" |
|
|
515 | |
|
|
516 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
|
|
517 | strip_modulenames; |
|
|
518 | cd "${S}" |
| 480 | for i in ${MODULE_NAMES} |
519 | for i in ${MODULE_NAMES} |
| 481 | do |
520 | do |
| 482 | unset libdir srcdir objdir |
521 | unset libdir srcdir objdir |
| 483 | for n in $(find_module_params ${i}) |
522 | for n in $(find_module_params ${i}) |
| 484 | do |
523 | do |
| … | |
… | |
| 496 | then |
535 | then |
| 497 | econf ${ECONF_PARAMS} || \ |
536 | econf ${ECONF_PARAMS} || \ |
| 498 | die "Unable to run econf ${ECONF_PARAMS}" |
537 | die "Unable to run econf ${ECONF_PARAMS}" |
| 499 | fi |
538 | fi |
| 500 | |
539 | |
| 501 | emake ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
540 | # This looks messy, but it is needed to handle multiple variables |
| 502 | || die "Unable to make \ |
541 | # being passed in the BUILD_* stuff where the variables also have |
| 503 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
542 | # spaces that must be preserved. If don't do this, then the stuff |
|
|
543 | # inside the variables gets used as targets for Make, which then |
|
|
544 | # fails. |
|
|
545 | eval "emake HOSTCC=\"$(tc-getBUILD_CC)\" \ |
|
|
546 | CROSS_COMPILE=${CHOST}- \ |
|
|
547 | LDFLAGS=\"$(get_abi_LDFLAGS)\" \ |
|
|
548 | ${BUILD_FIXES} \ |
|
|
549 | ${BUILD_PARAMS} \ |
|
|
550 | ${BUILD_TARGETS} " \ |
|
|
551 | || die "Unable to emake HOSTCC="$(tc-getBUILD_CC)" CROSS_COMPILE=${CHOST}- LDFLAGS="$(get_abi_LDFLAGS)" ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}" |
| 504 | touch ${srcdir}/.built |
552 | touch ${srcdir}/.built |
| 505 | cd ${OLDPWD} |
553 | cd ${OLDPWD} |
| 506 | fi |
554 | fi |
| 507 | done |
555 | done |
| 508 | |
556 | |
| 509 | ARCH="${myARCH}" |
557 | set_arch_to_portage |
|
|
558 | ABI="${myABI}" |
| 510 | } |
559 | } |
| 511 | |
560 | |
| 512 | linux-mod_src_install() { |
561 | linux-mod_src_install() { |
|
|
562 | debug-print-function ${FUNCNAME} $* |
|
|
563 | |
| 513 | local modulename libdir srcdir objdir i n |
564 | local modulename libdir srcdir objdir i n |
| 514 | |
565 | |
| 515 | for i in ${MODULE_IGNORE} |
566 | strip_modulenames; |
| 516 | do |
|
|
| 517 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
| 518 | done |
|
|
| 519 | |
|
|
| 520 | for i in ${MODULE_NAMES} |
567 | for i in ${MODULE_NAMES} |
| 521 | do |
568 | do |
| 522 | unset libdir srcdir objdir |
569 | unset libdir srcdir objdir |
| 523 | for n in $(find_module_params ${i}) |
570 | for n in $(find_module_params ${i}) |
| 524 | do |
571 | do |
| … | |
… | |
| 527 | libdir=${libdir:-misc} |
574 | libdir=${libdir:-misc} |
| 528 | srcdir=${srcdir:-${S}} |
575 | srcdir=${srcdir:-${S}} |
| 529 | objdir=${objdir:-${srcdir}} |
576 | objdir=${objdir:-${srcdir}} |
| 530 | |
577 | |
| 531 | einfo "Installing ${modulename} module" |
578 | einfo "Installing ${modulename} module" |
| 532 | cd ${objdir} |
579 | cd ${objdir} || die "${objdir} does not exist" |
| 533 | insinto ${ROOT}lib/modules/${KV_FULL}/${libdir} |
580 | insinto /lib/modules/${KV_FULL}/${libdir} |
| 534 | doins ${modulename}.${KV_OBJ} |
581 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
| 535 | cd ${OLDPWD} |
582 | cd ${OLDPWD} |
| 536 | |
583 | |
| 537 | generate_modulesd ${objdir}/${modulename} |
584 | generate_modulesd ${objdir}/${modulename} |
| 538 | done |
585 | done |
| 539 | } |
586 | } |
| 540 | |
587 | |
|
|
588 | linux-mod_pkg_preinst() { |
|
|
589 | debug-print-function ${FUNCNAME} $* |
|
|
590 | |
|
|
591 | [ -d "${D}lib/modules" ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
|
|
592 | [ -d "${D}etc/modules.d" ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
|
|
593 | [ -d "${D}lib/modules" ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
|
|
594 | } |
|
|
595 | |
| 541 | linux-mod_pkg_postinst() { |
596 | linux-mod_pkg_postinst() { |
| 542 | update_depmod; |
597 | debug-print-function ${FUNCNAME} $* |
| 543 | update_modules; |
598 | |
| 544 | update_moduledb; |
599 | ${UPDATE_DEPMOD} && update_depmod; |
|
|
600 | ${UPDATE_MODULES} && update_modules; |
|
|
601 | ${UPDATE_MODULEDB} && update_moduledb; |
| 545 | } |
602 | } |
| 546 | |
603 | |
| 547 | linux-mod_pkg_postrm() { |
604 | linux-mod_pkg_postrm() { |
|
|
605 | debug-print-function ${FUNCNAME} $* |
| 548 | remove_moduledb; |
606 | remove_moduledb; |
| 549 | } |
607 | } |