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