| 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.75 2007/10/03 12:53:10 phreak Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.81 2008/04/03 16:11:24 cardoe 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. |
| … | |
… | |
| 55 | # |
55 | # |
| 56 | # if the srcdir isnt specified, it assumes ${S} |
56 | # if the srcdir isnt specified, it assumes ${S} |
| 57 | # if the libdir isnt specified, it assumes misc. |
57 | # if the libdir isnt specified, it assumes misc. |
| 58 | # if the objdir isnt specified, it assumes srcdir |
58 | # if the objdir isnt specified, it assumes srcdir |
| 59 | |
59 | |
| 60 | # There is also support for automatyed modules.d file generation. |
60 | # There is also support for automated modprobe.d/modules.d(2.4) file generation. |
| 61 | # This can be explicitly enabled by setting any of the following variables. |
61 | # This can be explicitly enabled by setting any of the following variables. |
| 62 | # |
62 | # |
| 63 | # |
63 | # |
| 64 | # MODULESD_${modulename}_ENABLED This enables the modules.d file |
64 | # MODULESD_${modulename}_ENABLED This enables the modules.d file |
| 65 | # generation even if we dont |
65 | # generation even if we dont |
| … | |
… | |
| 402 | fi |
402 | fi |
| 403 | |
403 | |
| 404 | #----------------------------------------------------------------------- |
404 | #----------------------------------------------------------------------- |
| 405 | |
405 | |
| 406 | # then we install it |
406 | # then we install it |
|
|
407 | if kernel_is ge 2 6; then |
|
|
408 | insinto /etc/modprobe.d |
|
|
409 | else |
| 407 | insinto /etc/modules.d |
410 | insinto /etc/modules.d |
|
|
411 | fi |
| 408 | newins ${module_config} ${currm_path//*\/} |
412 | newins ${module_config} ${currm_path//*\/} |
| 409 | |
413 | |
| 410 | # and install any documentation we might have. |
414 | # and install any documentation we might have. |
| 411 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
415 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
| 412 | done |
416 | done |
| … | |
… | |
| 461 | |
465 | |
| 462 | linux-mod_pkg_setup() { |
466 | linux-mod_pkg_setup() { |
| 463 | debug-print-function ${FUNCNAME} $* |
467 | debug-print-function ${FUNCNAME} $* |
| 464 | |
468 | |
| 465 | linux-info_pkg_setup; |
469 | linux-info_pkg_setup; |
|
|
470 | require_configured_kernel |
| 466 | check_kernel_built; |
471 | check_kernel_built; |
| 467 | strip_modulenames; |
472 | strip_modulenames; |
| 468 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
473 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
| 469 | set_kvobj; |
474 | set_kvobj; |
| 470 | # Commented out with permission from johnm until a fixed version for arches |
475 | # Commented out with permission from johnm until a fixed version for arches |
| … | |
… | |
| 488 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" myABI="${ABI}" |
493 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" myABI="${ABI}" |
| 489 | ARCH="$(tc-arch-kernel)" |
494 | ARCH="$(tc-arch-kernel)" |
| 490 | ABI="${KERNEL_ABI}" |
495 | ABI="${KERNEL_ABI}" |
| 491 | |
496 | |
| 492 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
497 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
|
|
498 | strip_modulenames; |
|
|
499 | cd "${S}" |
|
|
500 | for i in ${MODULE_NAMES} |
|
|
501 | do |
|
|
502 | unset libdir srcdir objdir |
|
|
503 | for n in $(find_module_params ${i}) |
|
|
504 | do |
|
|
505 | eval ${n/:*}=${n/*:/} |
|
|
506 | done |
|
|
507 | libdir=${libdir:-misc} |
|
|
508 | srcdir=${srcdir:-${S}} |
|
|
509 | objdir=${objdir:-${srcdir}} |
|
|
510 | |
|
|
511 | if [ ! -f "${srcdir}/.built" ]; |
|
|
512 | then |
|
|
513 | cd ${srcdir} |
|
|
514 | einfo "Preparing ${modulename} module" |
|
|
515 | if [[ -n ${ECONF_PARAMS} ]] |
|
|
516 | then |
|
|
517 | econf ${ECONF_PARAMS} || \ |
|
|
518 | die "Unable to run econf ${ECONF_PARAMS}" |
|
|
519 | fi |
|
|
520 | |
|
|
521 | # This looks messy, but it is needed to handle multiple variables |
|
|
522 | # being passed in the BUILD_* stuff where the variables also have |
|
|
523 | # spaces that must be preserved. If don't do this, then the stuff |
|
|
524 | # inside the variables gets used as targets for Make, which then |
|
|
525 | # fails. |
|
|
526 | eval "emake HOSTCC=\"$(tc-getBUILD_CC)\" \ |
|
|
527 | CC=\"$(get-KERNEL_CC)\" \ |
|
|
528 | LDFLAGS=\"$(get_abi_LDFLAGS)\" \ |
|
|
529 | ${BUILD_FIXES} \ |
|
|
530 | ${BUILD_PARAMS} \ |
|
|
531 | ${BUILD_TARGETS} " \ |
|
|
532 | || die "Unable to emake HOSTCC="$(tc-getBUILD_CC)" CC="$(get-KERNEL_CC)" LDFLAGS="$(get_abi_LDFLAGS)" ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}" |
|
|
533 | touch ${srcdir}/.built |
|
|
534 | cd ${OLDPWD} |
|
|
535 | fi |
|
|
536 | done |
|
|
537 | |
|
|
538 | ARCH="${myARCH}" |
|
|
539 | ABI="${myABI}" |
|
|
540 | } |
|
|
541 | |
|
|
542 | linux-mod_src_install() { |
|
|
543 | debug-print-function ${FUNCNAME} $* |
|
|
544 | |
|
|
545 | local modulename libdir srcdir objdir i n |
|
|
546 | |
| 493 | strip_modulenames; |
547 | strip_modulenames; |
| 494 | for i in ${MODULE_NAMES} |
548 | for i in ${MODULE_NAMES} |
| 495 | do |
549 | do |
| 496 | unset libdir srcdir objdir |
550 | unset libdir srcdir objdir |
| 497 | for n in $(find_module_params ${i}) |
551 | for n in $(find_module_params ${i}) |
| … | |
… | |
| 500 | done |
554 | done |
| 501 | libdir=${libdir:-misc} |
555 | libdir=${libdir:-misc} |
| 502 | srcdir=${srcdir:-${S}} |
556 | srcdir=${srcdir:-${S}} |
| 503 | objdir=${objdir:-${srcdir}} |
557 | objdir=${objdir:-${srcdir}} |
| 504 | |
558 | |
| 505 | if [ ! -f "${srcdir}/.built" ]; |
|
|
| 506 | then |
|
|
| 507 | cd ${srcdir} |
|
|
| 508 | einfo "Preparing ${modulename} module" |
|
|
| 509 | if [[ -n ${ECONF_PARAMS} ]] |
|
|
| 510 | then |
|
|
| 511 | econf ${ECONF_PARAMS} || \ |
|
|
| 512 | die "Unable to run econf ${ECONF_PARAMS}" |
|
|
| 513 | fi |
|
|
| 514 | |
|
|
| 515 | emake HOSTCC="$(tc-getBUILD_CC)" CC="$(get-KERNEL_CC)" LDFLAGS="$(get_abi_LDFLAGS)" \ |
|
|
| 516 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
|
|
| 517 | || die "Unable to make ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
|
|
| 518 | touch ${srcdir}/.built |
|
|
| 519 | cd ${OLDPWD} |
|
|
| 520 | fi |
|
|
| 521 | done |
|
|
| 522 | |
|
|
| 523 | ARCH="${myARCH}" |
|
|
| 524 | ABI="${myABI}" |
|
|
| 525 | } |
|
|
| 526 | |
|
|
| 527 | linux-mod_src_install() { |
|
|
| 528 | debug-print-function ${FUNCNAME} $* |
|
|
| 529 | |
|
|
| 530 | local modulename libdir srcdir objdir i n |
|
|
| 531 | |
|
|
| 532 | strip_modulenames; |
|
|
| 533 | for i in ${MODULE_NAMES} |
|
|
| 534 | do |
|
|
| 535 | unset libdir srcdir objdir |
|
|
| 536 | for n in $(find_module_params ${i}) |
|
|
| 537 | do |
|
|
| 538 | eval ${n/:*}=${n/*:/} |
|
|
| 539 | done |
|
|
| 540 | libdir=${libdir:-misc} |
|
|
| 541 | srcdir=${srcdir:-${S}} |
|
|
| 542 | objdir=${objdir:-${srcdir}} |
|
|
| 543 | |
|
|
| 544 | einfo "Installing ${modulename} module" |
559 | einfo "Installing ${modulename} module" |
| 545 | cd ${objdir} || die "${objdir} does not exist" |
560 | cd ${objdir} || die "${objdir} does not exist" |
| 546 | insinto /lib/modules/${KV_FULL}/${libdir} |
561 | insinto /lib/modules/${KV_FULL}/${libdir} |
| 547 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
562 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
| 548 | cd ${OLDPWD} |
563 | cd ${OLDPWD} |
| … | |
… | |
| 552 | } |
567 | } |
| 553 | |
568 | |
| 554 | linux-mod_pkg_preinst() { |
569 | linux-mod_pkg_preinst() { |
| 555 | debug-print-function ${FUNCNAME} $* |
570 | debug-print-function ${FUNCNAME} $* |
| 556 | |
571 | |
| 557 | [ -d ${IMAGE}/lib/modules ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
572 | [ -d "${D}lib/modules" ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
| 558 | [ -d ${IMAGE}/etc/modules.d ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
573 | [ -d "${D}etc/modules.d" ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
| 559 | [ -d ${IMAGE}/lib/modules ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
574 | [ -d "${D}lib/modules" ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
| 560 | } |
575 | } |
| 561 | |
576 | |
| 562 | linux-mod_pkg_postinst() { |
577 | linux-mod_pkg_postinst() { |
| 563 | debug-print-function ${FUNCNAME} $* |
578 | debug-print-function ${FUNCNAME} $* |
| 564 | |
579 | |