| 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.68 2006/10/16 14:10:46 genstef Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.70 2007/01/01 22:27:01 swegener 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. |
| … | |
… | |
| 95 | |
95 | |
| 96 | # eclass utilities |
96 | # eclass utilities |
| 97 | # ---------------------------------- |
97 | # ---------------------------------- |
| 98 | |
98 | |
| 99 | check_vermagic() { |
99 | check_vermagic() { |
|
|
100 | debug-print-function ${FUNCNAME} $* |
|
|
101 | |
| 100 | local curr_gcc_ver=$(gcc -dumpversion) |
102 | local curr_gcc_ver=$(gcc -dumpversion) |
| 101 | local tmpfile old_chost old_gcc_ver result=0 |
103 | local tmpfile old_chost old_gcc_ver result=0 |
| 102 | |
104 | |
| 103 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
105 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
| 104 | tmpfile=${tmpfile//*usr/lib} |
106 | tmpfile=${tmpfile//*usr/lib} |
| … | |
… | |
| 132 | die "GCC Version Mismatch." |
134 | die "GCC Version Mismatch." |
| 133 | fi |
135 | fi |
| 134 | } |
136 | } |
| 135 | |
137 | |
| 136 | use_m() { |
138 | use_m() { |
|
|
139 | debug-print-function ${FUNCNAME} $* |
|
|
140 | |
| 137 | # if we haven't determined the version yet, we need too. |
141 | # if we haven't determined the version yet, we need too. |
| 138 | get_version; |
142 | get_version; |
| 139 | |
143 | |
| 140 | # if the kernel version is greater than 2.6.6 then we should use |
144 | # if the kernel version is greater than 2.6.6 then we should use |
| 141 | # M= instead of SUBDIRS= |
145 | # M= instead of SUBDIRS= |
| 142 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
146 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
| 143 | return 0 || return 1 |
147 | return 0 || return 1 |
| 144 | } |
148 | } |
| 145 | |
149 | |
| 146 | convert_to_m() { |
150 | convert_to_m() { |
|
|
151 | debug-print-function ${FUNCNAME} $* |
|
|
152 | |
| 147 | if use_m |
153 | if use_m |
| 148 | then |
154 | then |
| 149 | [ ! -f "${1}" ] && \ |
155 | [ ! -f "${1}" ] && \ |
| 150 | die "convert_to_m() requires a filename as an argument" |
156 | die "convert_to_m() requires a filename as an argument" |
| 151 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
157 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
| … | |
… | |
| 153 | eend $? |
159 | eend $? |
| 154 | fi |
160 | fi |
| 155 | } |
161 | } |
| 156 | |
162 | |
| 157 | update_depmod() { |
163 | update_depmod() { |
|
|
164 | debug-print-function ${FUNCNAME} $* |
|
|
165 | |
| 158 | # if we haven't determined the version yet, we need too. |
166 | # if we haven't determined the version yet, we need too. |
| 159 | get_version; |
167 | get_version; |
| 160 | |
168 | |
| 161 | ebegin "Updating module dependencies for ${KV_FULL}" |
169 | ebegin "Updating module dependencies for ${KV_FULL}" |
| 162 | if [ -r ${KV_OUT_DIR}/System.map ] |
170 | if [ -r ${KV_OUT_DIR}/System.map ] |
| … | |
… | |
| 171 | ewarn |
179 | ewarn |
| 172 | fi |
180 | fi |
| 173 | } |
181 | } |
| 174 | |
182 | |
| 175 | update_modules() { |
183 | update_modules() { |
|
|
184 | debug-print-function ${FUNCNAME} $* |
|
|
185 | |
| 176 | if [ -x /sbin/modules-update ] && \ |
186 | if [ -x /sbin/modules-update ] && \ |
| 177 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
187 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
| 178 | ebegin "Updating modules.conf" |
188 | ebegin "Updating modules.conf" |
| 179 | /sbin/modules-update |
189 | /sbin/modules-update |
| 180 | eend $? |
190 | eend $? |
| 181 | fi |
191 | fi |
| 182 | } |
192 | } |
| 183 | |
193 | |
| 184 | move_old_moduledb() { |
194 | move_old_moduledb() { |
|
|
195 | debug-print-function ${FUNCNAME} $* |
|
|
196 | |
| 185 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
197 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
| 186 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
198 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
| 187 | |
199 | |
| 188 | if [[ -f ${OLDDIR}/moduledb ]]; then |
200 | if [[ -f ${OLDDIR}/moduledb ]]; then |
| 189 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
201 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
| … | |
… | |
| 193 | rmdir ${OLDDIR} |
205 | rmdir ${OLDDIR} |
| 194 | fi |
206 | fi |
| 195 | } |
207 | } |
| 196 | |
208 | |
| 197 | update_moduledb() { |
209 | update_moduledb() { |
|
|
210 | debug-print-function ${FUNCNAME} $* |
|
|
211 | |
| 198 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
212 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
| 199 | move_old_moduledb |
213 | move_old_moduledb |
| 200 | |
214 | |
| 201 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
215 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
| 202 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
216 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
| … | |
… | |
| 207 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
221 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
| 208 | fi |
222 | fi |
| 209 | } |
223 | } |
| 210 | |
224 | |
| 211 | remove_moduledb() { |
225 | remove_moduledb() { |
|
|
226 | debug-print-function ${FUNCNAME} $* |
|
|
227 | |
| 212 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
228 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
| 213 | move_old_moduledb |
229 | move_old_moduledb |
| 214 | |
230 | |
| 215 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
231 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
| 216 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
232 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
| 217 | sed -ie "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
233 | sed -ie "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
| 218 | fi |
234 | fi |
| 219 | } |
235 | } |
| 220 | |
236 | |
| 221 | set_kvobj() { |
237 | set_kvobj() { |
|
|
238 | debug-print-function ${FUNCNAME} $* |
|
|
239 | |
| 222 | if kernel_is 2 6 |
240 | if kernel_is 2 6 |
| 223 | then |
241 | then |
| 224 | KV_OBJ="ko" |
242 | KV_OBJ="ko" |
| 225 | else |
243 | else |
| 226 | KV_OBJ="o" |
244 | KV_OBJ="o" |
| … | |
… | |
| 229 | # Lets silence it. |
247 | # Lets silence it. |
| 230 | # einfo "Using KV_OBJ=${KV_OBJ}" |
248 | # einfo "Using KV_OBJ=${KV_OBJ}" |
| 231 | } |
249 | } |
| 232 | |
250 | |
| 233 | get-KERNEL_CC() { |
251 | get-KERNEL_CC() { |
|
|
252 | debug-print-function ${FUNCNAME} $* |
|
|
253 | |
| 234 | local kernel_cc |
254 | local kernel_cc |
| 235 | if [ -n "${KERNEL_ABI}" ]; then |
255 | if [ -n "${KERNEL_ABI}" ]; then |
| 236 | # In future, an arch might want to define CC_$ABI |
256 | # In future, an arch might want to define CC_$ABI |
| 237 | #kernel_cc="$(get_abi_CC)" |
257 | #kernel_cc="$(get_abi_CC)" |
| 238 | #[ -z "${kernel_cc}" ] && |
258 | #[ -z "${kernel_cc}" ] && |
| 239 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
259 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
| 240 | else |
260 | else |
| 241 | kernel_cc=$(tc-getCC) |
261 | kernel_cc=$(tc-getCC) |
| 242 | fi |
262 | fi |
| 243 | echo "${kernel_cc}" |
263 | echo "${kernel_cc}" |
| 244 | } |
264 | } |
| 245 | |
265 | |
| 246 | generate_modulesd() { |
266 | generate_modulesd() { |
|
|
267 | debug-print-function ${FUNCNAME} $* |
|
|
268 | |
| 247 | # This function will generate the neccessary modules.d file from the |
269 | # This function will generate the neccessary modules.d file from the |
| 248 | # information contained in the modules exported parms |
270 | # information contained in the modules exported parms |
| 249 | |
271 | |
| 250 | local currm_path currm currm_t t myIFS myVAR |
272 | local currm_path currm currm_t t myIFS myVAR |
| 251 | local module_docs module_enabled module_aliases \ |
273 | local module_docs module_enabled module_aliases \ |
| … | |
… | |
| 384 | eend 0 |
406 | eend 0 |
| 385 | return 0 |
407 | return 0 |
| 386 | } |
408 | } |
| 387 | |
409 | |
| 388 | find_module_params() { |
410 | find_module_params() { |
|
|
411 | debug-print-function ${FUNCNAME} $* |
|
|
412 | |
| 389 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
413 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
| 390 | local i=0 y=0 z=0 |
414 | local i=0 y=0 z=0 |
| 391 | |
415 | |
| 392 | for((i=0; i<=${#test}; i++)) |
416 | for((i=0; i<=${#test}; i++)) |
| 393 | do |
417 | do |
| … | |
… | |
| 427 | |
451 | |
| 428 | # default ebuild functions |
452 | # default ebuild functions |
| 429 | # -------------------------------- |
453 | # -------------------------------- |
| 430 | |
454 | |
| 431 | linux-mod_pkg_setup() { |
455 | linux-mod_pkg_setup() { |
|
|
456 | debug-print-function ${FUNCNAME} $* |
|
|
457 | |
| 432 | linux-info_pkg_setup; |
458 | linux-info_pkg_setup; |
| 433 | check_kernel_built; |
459 | check_kernel_built; |
| 434 | strip_modulenames; |
460 | strip_modulenames; |
| 435 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
461 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
| 436 | set_kvobj; |
462 | set_kvobj; |
| … | |
… | |
| 439 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
465 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
| 440 | #check_vermagic; |
466 | #check_vermagic; |
| 441 | } |
467 | } |
| 442 | |
468 | |
| 443 | strip_modulenames() { |
469 | strip_modulenames() { |
|
|
470 | debug-print-function ${FUNCNAME} $* |
|
|
471 | |
| 444 | local i |
472 | local i |
| 445 | for i in ${MODULE_IGNORE}; do |
473 | for i in ${MODULE_IGNORE}; do |
| 446 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
474 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 447 | done |
475 | done |
| 448 | } |
476 | } |
| 449 | |
477 | |
| 450 | linux-mod_src_compile() { |
478 | linux-mod_src_compile() { |
|
|
479 | debug-print-function ${FUNCNAME} $* |
|
|
480 | |
| 451 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" myABI="${ABI}" |
481 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" myABI="${ABI}" |
| 452 | ARCH="$(tc-arch-kernel)" |
482 | ARCH="$(tc-arch-kernel)" |
| 453 | ABI="${KERNEL_ABI}" |
483 | ABI="${KERNEL_ABI}" |
| 454 | CC_HOSTCC=$(tc-getBUILD_CC) |
|
|
| 455 | CC_CC=$(get-KERNEL_CC) |
|
|
| 456 | |
484 | |
| 457 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
485 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
| 458 | strip_modulenames; |
486 | strip_modulenames; |
| 459 | for i in ${MODULE_NAMES} |
487 | for i in ${MODULE_NAMES} |
| 460 | do |
488 | do |
| … | |
… | |
| 475 | then |
503 | then |
| 476 | econf ${ECONF_PARAMS} || \ |
504 | econf ${ECONF_PARAMS} || \ |
| 477 | die "Unable to run econf ${ECONF_PARAMS}" |
505 | die "Unable to run econf ${ECONF_PARAMS}" |
| 478 | fi |
506 | fi |
| 479 | |
507 | |
| 480 | emake HOSTCC=${CC_HOSTCC} CC=${CC_CC} LDFLAGS="$(get_abi_LDFLAGS)" \ |
508 | emake HOSTCC="$(tc-getBUILD_CC)" CC="$(get-KERNEL_CC)" LDFLAGS="$(get_abi_LDFLAGS)" \ |
| 481 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
509 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
| 482 | || die "Unable to make ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
510 | || die "Unable to make ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
| 483 | touch ${srcdir}/.built |
511 | touch ${srcdir}/.built |
| 484 | cd ${OLDPWD} |
512 | cd ${OLDPWD} |
| 485 | fi |
513 | fi |
| … | |
… | |
| 488 | ARCH="${myARCH}" |
516 | ARCH="${myARCH}" |
| 489 | ABI="${myABI}" |
517 | ABI="${myABI}" |
| 490 | } |
518 | } |
| 491 | |
519 | |
| 492 | linux-mod_src_install() { |
520 | linux-mod_src_install() { |
|
|
521 | debug-print-function ${FUNCNAME} $* |
|
|
522 | |
| 493 | local modulename libdir srcdir objdir i n |
523 | local modulename libdir srcdir objdir i n |
| 494 | |
524 | |
| 495 | strip_modulenames; |
525 | strip_modulenames; |
| 496 | for i in ${MODULE_NAMES} |
526 | for i in ${MODULE_NAMES} |
| 497 | do |
527 | do |
| … | |
… | |
| 513 | generate_modulesd ${objdir}/${modulename} |
543 | generate_modulesd ${objdir}/${modulename} |
| 514 | done |
544 | done |
| 515 | } |
545 | } |
| 516 | |
546 | |
| 517 | linux-mod_pkg_preinst() { |
547 | linux-mod_pkg_preinst() { |
|
|
548 | debug-print-function ${FUNCNAME} $* |
|
|
549 | |
| 518 | [ -d ${IMAGE}/lib/modules ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
550 | [ -d ${IMAGE}/lib/modules ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
| 519 | [ -d ${IMAGE}/etc/modules.d ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
551 | [ -d ${IMAGE}/etc/modules.d ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
| 520 | [ -d ${IMAGE}/lib/modules ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
552 | [ -d ${IMAGE}/lib/modules ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
| 521 | } |
553 | } |
| 522 | |
554 | |
| 523 | linux-mod_pkg_postinst() { |
555 | linux-mod_pkg_postinst() { |
|
|
556 | debug-print-function ${FUNCNAME} $* |
|
|
557 | |
| 524 | ${UPDATE_DEPMOD} && update_depmod; |
558 | ${UPDATE_DEPMOD} && update_depmod; |
| 525 | ${UPDATE_MODULES} && update_modules; |
559 | ${UPDATE_MODULES} && update_modules; |
| 526 | ${UPDATE_MODULEDB} && update_moduledb; |
560 | ${UPDATE_MODULEDB} && update_moduledb; |
| 527 | } |
561 | } |
| 528 | |
562 | |
| 529 | linux-mod_pkg_postrm() { |
563 | linux-mod_pkg_postrm() { |
|
|
564 | debug-print-function ${FUNCNAME} $* |
| 530 | remove_moduledb; |
565 | remove_moduledb; |
| 531 | } |
566 | } |