| 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.75 2007/10/03 12:53:10 phreak 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: |
| 17 | # |
18 | # |
| 18 | # Env Var Option Default Description |
19 | # Env Var Option Default Description |
| 19 | # KERNEL_DIR <string> /usr/src/linux The directory containing kernel |
20 | # KERNEL_DIR <string> /usr/src/linux The directory containing kernel |
| 20 | # the target kernel sources. |
21 | # the target kernel sources. |
| 21 | # ECONF_PARAMS <string> The parameters to pass to econf. |
22 | # ECONF_PARAMS <string> The parameters to pass to econf. |
| 22 | # If this is not set, then econf |
23 | # If this is not set, then econf |
| 23 | # isn't run. |
24 | # isn't run. |
| 24 | # BUILD_PARAMS <string> The parameters to pass to emake. |
25 | # BUILD_PARAMS <string> The parameters to pass to emake. |
| 25 | # BUILD_TARGETS <string> clean modules The build targets to pass to |
26 | # BUILD_TARGETS <string> clean modules The build targets to pass to |
| 26 | # make. |
27 | # make. |
| 27 | # MODULE_NAMES <string> This is the modules which are |
28 | # MODULE_NAMES <string> This is the modules which are |
| 28 | # to be built automatically using |
29 | # to be built automatically using |
| 29 | # the default pkg_compile/install. |
30 | # the default pkg_compile/install. |
| 30 | # They are explained properly |
31 | # They are explained properly |
| 31 | # below. It will only make |
32 | # below. It will only make |
| 32 | # BUILD_TARGETS once in any |
33 | # BUILD_TARGETS once in any |
| 33 | # directory. |
34 | # directory. |
| 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) |
| 39 | # for example: |
40 | # for example: |
| 40 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
41 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
| 41 | # |
42 | # |
| 42 | # what this would do is |
43 | # what this would do is |
| 43 | # cd ${S}/pci |
44 | # cd ${S}/pci |
| 44 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
45 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
| 45 | # cd ${S} |
46 | # cd ${S} |
| 46 | # insinto /lib/modules/${KV_FULL}/pci |
47 | # insinto /lib/modules/${KV_FULL}/pci |
| … | |
… | |
| 76 | # Each entry is a new line. |
77 | # Each entry is a new line. |
| 77 | # MODULES_${modulename}_DOCS This is a string list which contains |
78 | # MODULES_${modulename}_DOCS This is a string list which contains |
| 78 | # the full path to any associated |
79 | # the full path to any associated |
| 79 | # documents for $modulename |
80 | # documents for $modulename |
| 80 | |
81 | |
|
|
82 | # The order of these is important as both of linux-info and eutils contain |
|
|
83 | # set_arch_to_kernel and set_arch_to_portage functions and the ones in eutils |
|
|
84 | # are deprecated in favor of the ones in linux-info. |
|
|
85 | # See http://bugs.gentoo.org/show_bug.cgi?id=127506 |
| 81 | |
86 | |
| 82 | inherit linux-info |
87 | inherit eutils linux-info multilib |
| 83 | ECLASS=linux-mod |
|
|
| 84 | INHERITED="$INHERITED $ECLASS" |
|
|
| 85 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile \ |
88 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst src_install src_compile pkg_postrm |
| 86 | src_compile_userland src_install_userland |
|
|
| 87 | |
89 | |
|
|
90 | IUSE="kernel_linux" |
| 88 | SLOT="0" |
91 | SLOT="0" |
| 89 | DESCRIPTION="Based on the $ECLASS eclass" |
92 | DESCRIPTION="Based on the $ECLASS eclass" |
| 90 | DEPEND="virtual/linux-sources |
93 | RDEPEND="kernel_linux? ( virtual/modutils )" |
|
|
94 | DEPEND="${RDEPEND} |
| 91 | sys-apps/sed |
95 | sys-apps/sed" |
| 92 | virtual/modutils" |
|
|
| 93 | |
|
|
| 94 | |
96 | |
| 95 | # eclass utilities |
97 | # eclass utilities |
| 96 | # ---------------------------------- |
98 | # ---------------------------------- |
| 97 | |
99 | |
|
|
100 | check_vermagic() { |
|
|
101 | debug-print-function ${FUNCNAME} $* |
|
|
102 | |
|
|
103 | local curr_gcc_ver=$(gcc -dumpversion) |
|
|
104 | local tmpfile old_chost old_gcc_ver result=0 |
|
|
105 | |
|
|
106 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
|
|
107 | tmpfile=${tmpfile//*usr/lib} |
|
|
108 | tmpfile=${tmpfile//\/include*} |
|
|
109 | old_chost=${tmpfile//*gcc\/} |
|
|
110 | old_chost=${old_chost//\/*} |
|
|
111 | old_gcc_ver=${tmpfile//*\/} |
|
|
112 | |
|
|
113 | if [[ -z ${old_gcc_ver} || -z ${old_chost} ]]; then |
|
|
114 | ewarn "" |
|
|
115 | ewarn "Unable to detect what version of GCC was used to compile" |
|
|
116 | ewarn "the kernel. Build will continue, but you may experience problems." |
|
|
117 | elif [[ ${curr_gcc_ver} != ${old_gcc_ver} ]]; then |
|
|
118 | ewarn "" |
|
|
119 | ewarn "The version of GCC you are using (${curr_gcc_ver}) does" |
|
|
120 | ewarn "not match the version of GCC used to compile the" |
|
|
121 | ewarn "kernel (${old_gcc_ver})." |
|
|
122 | result=1 |
|
|
123 | elif [[ ${CHOST} != ${old_chost} ]]; then |
|
|
124 | ewarn "" |
|
|
125 | ewarn "The current CHOST (${CHOST}) does not match the chost" |
|
|
126 | ewarn "used when compiling the kernel (${old_chost})." |
|
|
127 | result=1 |
|
|
128 | fi |
|
|
129 | |
|
|
130 | if [[ ${result} -gt 0 ]]; then |
|
|
131 | ewarn "" |
|
|
132 | ewarn "Build will not continue, because you will experience problems." |
|
|
133 | ewarn "To fix this either change the version of GCC you wish to use" |
|
|
134 | ewarn "to match the kernel, or recompile the kernel first." |
|
|
135 | die "GCC Version Mismatch." |
|
|
136 | fi |
|
|
137 | } |
|
|
138 | |
| 98 | use_m() { |
139 | use_m() { |
|
|
140 | debug-print-function ${FUNCNAME} $* |
|
|
141 | |
| 99 | # if we haven't determined the version yet, we need too. |
142 | # if we haven't determined the version yet, we need too. |
| 100 | get_version; |
143 | get_version; |
| 101 | |
144 | |
| 102 | # if the kernel version is greater than 2.6.6 then we should use |
145 | # if the kernel version is greater than 2.6.6 then we should use |
| 103 | # M= instead of SUBDIRS= |
146 | # M= instead of SUBDIRS= |
| 104 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
147 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
| 105 | return 0 || return 1 |
148 | return 0 || return 1 |
| 106 | } |
149 | } |
| 107 | |
150 | |
| 108 | convert_to_m() { |
151 | convert_to_m() { |
|
|
152 | debug-print-function ${FUNCNAME} $* |
|
|
153 | |
| 109 | if use_m |
154 | if use_m |
| 110 | then |
155 | then |
| 111 | [ ! -f "${1}" ] && \ |
156 | [ ! -f "${1}" ] && \ |
| 112 | die "convert_to_m() requires a filename as an argument" |
157 | die "convert_to_m() requires a filename as an argument" |
| 113 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
158 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
| … | |
… | |
| 115 | eend $? |
160 | eend $? |
| 116 | fi |
161 | fi |
| 117 | } |
162 | } |
| 118 | |
163 | |
| 119 | update_depmod() { |
164 | update_depmod() { |
|
|
165 | debug-print-function ${FUNCNAME} $* |
|
|
166 | |
| 120 | # if we haven't determined the version yet, we need too. |
167 | # if we haven't determined the version yet, we need too. |
| 121 | get_version; |
168 | get_version; |
| 122 | |
169 | |
| 123 | ebegin "Updating module dependencies for ${KV_FULL}" |
170 | ebegin "Updating module dependencies for ${KV_FULL}" |
| 124 | if [ -r ${KV_OUT_DIR}/System.map ] |
171 | if [ -r ${KV_OUT_DIR}/System.map ] |
| 125 | then |
172 | then |
| 126 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
173 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
| 127 | eend $? |
174 | eend $? |
| … | |
… | |
| 133 | ewarn |
180 | ewarn |
| 134 | fi |
181 | fi |
| 135 | } |
182 | } |
| 136 | |
183 | |
| 137 | update_modules() { |
184 | update_modules() { |
|
|
185 | debug-print-function ${FUNCNAME} $* |
|
|
186 | |
| 138 | if [ -x /sbin/modules-update ] && \ |
187 | if [ -x /sbin/update-modules ] && \ |
| 139 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
188 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
| 140 | ebegin "Updating modules.conf" |
189 | ebegin "Updating modules.conf" |
| 141 | /sbin/modules-update |
190 | /sbin/update-modules |
| 142 | eend $? |
191 | eend $? |
|
|
192 | elif [ -x /sbin/update-modules ] && \ |
|
|
193 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
|
|
194 | ebegin "Updating modules.conf" |
|
|
195 | /sbin/update-modules |
|
|
196 | eend $? |
|
|
197 | fi |
|
|
198 | } |
|
|
199 | |
|
|
200 | move_old_moduledb() { |
|
|
201 | debug-print-function ${FUNCNAME} $* |
|
|
202 | |
|
|
203 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
|
|
204 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
|
|
205 | |
|
|
206 | if [[ -f ${OLDDIR}/moduledb ]]; then |
|
|
207 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
|
|
208 | [[ ! -f ${NEWDIR}/moduledb ]] && \ |
|
|
209 | mv ${OLDDIR}/moduledb ${NEWDIR}/moduledb |
|
|
210 | rm -f ${OLDDIR}/* |
|
|
211 | rmdir ${OLDDIR} |
|
|
212 | fi |
|
|
213 | } |
|
|
214 | |
|
|
215 | update_moduledb() { |
|
|
216 | debug-print-function ${FUNCNAME} $* |
|
|
217 | |
|
|
218 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
|
|
219 | move_old_moduledb |
|
|
220 | |
|
|
221 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
|
|
222 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
|
|
223 | touch ${MODULEDB_DIR}/moduledb |
|
|
224 | fi |
|
|
225 | |
|
|
226 | if ! grep -qs ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb ; then |
|
|
227 | einfo "Adding module to moduledb." |
|
|
228 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
|
|
229 | fi |
|
|
230 | } |
|
|
231 | |
|
|
232 | remove_moduledb() { |
|
|
233 | debug-print-function ${FUNCNAME} $* |
|
|
234 | |
|
|
235 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
|
|
236 | move_old_moduledb |
|
|
237 | |
|
|
238 | if grep -qs ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb ; then |
|
|
239 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
|
|
240 | sed -i -e "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
| 143 | fi |
241 | fi |
| 144 | } |
242 | } |
| 145 | |
243 | |
| 146 | set_kvobj() { |
244 | set_kvobj() { |
|
|
245 | debug-print-function ${FUNCNAME} $* |
|
|
246 | |
| 147 | if kernel_is 2 6 |
247 | if kernel_is 2 6 |
| 148 | then |
248 | then |
| 149 | KV_OBJ="ko" |
249 | KV_OBJ="ko" |
| 150 | else |
250 | else |
| 151 | KV_OBJ="o" |
251 | KV_OBJ="o" |
| … | |
… | |
| 153 | # Do we really need to know this? |
253 | # Do we really need to know this? |
| 154 | # Lets silence it. |
254 | # Lets silence it. |
| 155 | # einfo "Using KV_OBJ=${KV_OBJ}" |
255 | # einfo "Using KV_OBJ=${KV_OBJ}" |
| 156 | } |
256 | } |
| 157 | |
257 | |
|
|
258 | get-KERNEL_CC() { |
|
|
259 | debug-print-function ${FUNCNAME} $* |
|
|
260 | |
|
|
261 | local kernel_cc |
|
|
262 | if [ -n "${KERNEL_ABI}" ]; then |
|
|
263 | # In future, an arch might want to define CC_$ABI |
|
|
264 | #kernel_cc="$(get_abi_CC)" |
|
|
265 | #[ -z "${kernel_cc}" ] && |
|
|
266 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
|
|
267 | else |
|
|
268 | kernel_cc=$(tc-getCC) |
|
|
269 | fi |
|
|
270 | echo "${kernel_cc}" |
|
|
271 | } |
|
|
272 | |
| 158 | generate_modulesd() { |
273 | generate_modulesd() { |
|
|
274 | debug-print-function ${FUNCNAME} $* |
|
|
275 | |
| 159 | # This function will generate the neccessary modules.d file from the |
276 | # This function will generate the neccessary modules.d file from the |
| 160 | # information contained in the modules exported parms |
277 | # information contained in the modules exported parms |
| 161 | |
278 | |
| 162 | local currm_path currm t myIFS myVAR |
279 | local currm_path currm currm_t t myIFS myVAR |
| 163 | local module_docs module_enabled module_aliases \ |
280 | local module_docs module_enabled module_aliases \ |
| 164 | module_additions module_examples module_modinfo module_opts |
281 | module_additions module_examples module_modinfo module_opts |
| 165 | |
282 | |
| 166 | for currm_path in ${@} |
283 | for currm_path in ${@} |
| 167 | do |
284 | do |
| 168 | currm=${currm_path//*\/} |
285 | currm=${currm_path//*\/} |
| 169 | currm=$(echo ${currm} | tr '[:lower:]' '[:upper:]') |
286 | currm=$(echo ${currm} | tr '[:lower:]' '[:upper:]') |
|
|
287 | currm_t=${currm} |
|
|
288 | while [[ -z ${currm_t//*-*} ]]; do |
|
|
289 | currm_t=${currm_t/-/_} |
|
|
290 | done |
| 170 | |
291 | |
| 171 | module_docs="$(eval echo \${MODULESD_${currm}_DOCS})" |
292 | module_docs="$(eval echo \${MODULESD_${currm_t}_DOCS})" |
| 172 | module_enabled="$(eval echo \${MODULESD_${currm}_ENABLED})" |
293 | module_enabled="$(eval echo \${MODULESD_${currm_t}_ENABLED})" |
| 173 | module_aliases="$(eval echo \${#MODULESD_${currm/-/_}_ALIASES[*]})" |
294 | module_aliases="$(eval echo \${#MODULESD_${currm_t}_ALIASES[*]})" |
| 174 | module_additions="$(eval echo \${#MODULESD_${currm/-/_}_ADDITIONS[*]})" |
295 | module_additions="$(eval echo \${#MODULESD_${currm_t}_ADDITIONS[*]})" |
| 175 | module_examples="$(eval echo \${#MODULESD_${currm/-/_}_EXAMPLES[*]})" |
296 | module_examples="$(eval echo \${#MODULESD_${currm_t}_EXAMPLES[*]})" |
| 176 | |
297 | |
| 177 | [[ ${module_aliases} -eq 0 ]] && unset module_aliases |
298 | [[ ${module_aliases} -eq 0 ]] && unset module_aliases |
| 178 | [[ ${module_additions} -eq 0 ]] && unset module_additions |
299 | [[ ${module_additions} -eq 0 ]] && unset module_additions |
| 179 | [[ ${module_examples} -eq 0 ]] && unset module_examples |
300 | [[ ${module_examples} -eq 0 ]] && unset module_examples |
| 180 | |
301 | |
| 181 | # If we specify we dont want it, then lets exit, otherwise we assume |
302 | # If we specify we dont want it, then lets exit, otherwise we assume |
| 182 | # that if its set, we do want it. |
303 | # that if its set, we do want it. |
| 183 | [[ ${module_enabled} == no ]] && return 0 |
304 | [[ ${module_enabled} == no ]] && return 0 |
| 184 | |
305 | |
| 185 | # unset any unwanted variables. |
306 | # unset any unwanted variables. |
| 186 | for t in ${!module_*} |
307 | for t in ${!module_*} |
| … | |
… | |
| 227 | echo >> ${module_config} |
348 | echo >> ${module_config} |
| 228 | echo "# Configurable module parameters" >> ${module_config} |
349 | echo "# Configurable module parameters" >> ${module_config} |
| 229 | echo "# ------------------------------" >> ${module_config} |
350 | echo "# ------------------------------" >> ${module_config} |
| 230 | myIFS="${IFS}" |
351 | myIFS="${IFS}" |
| 231 | IFS="$(echo -en "\n\b")" |
352 | IFS="$(echo -en "\n\b")" |
| 232 | |
353 | |
| 233 | for t in ${module_modinfo} |
354 | for t in ${module_modinfo} |
| 234 | do |
355 | do |
| 235 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
356 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
| 236 | if [[ -n ${myVAR} ]] |
357 | if [[ -n ${myVAR} ]] |
| 237 | then |
358 | then |
| 238 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
359 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
| 239 | fi |
360 | fi |
| 240 | echo -e "# ${t%%:*}:\t${t#*:}" >> ${module_config} |
361 | echo -e "# ${t%%:*}:\t${t#*:}" >> ${module_config} |
| 241 | done |
362 | done |
| 242 | IFS="${myIFS}" |
363 | IFS="${myIFS}" |
| 243 | echo '' >> ${module_config} |
364 | echo '' >> ${module_config} |
| 244 | fi |
365 | fi |
| 245 | |
366 | |
| 246 | #----------------------------------------------------------------------- |
367 | #----------------------------------------------------------------------- |
| … | |
… | |
| 277 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
398 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
| 278 | >> ${module_config} |
399 | >> ${module_config} |
| 279 | done |
400 | done |
| 280 | echo '' >> ${module_config} |
401 | echo '' >> ${module_config} |
| 281 | fi |
402 | fi |
| 282 | |
403 | |
| 283 | #----------------------------------------------------------------------- |
404 | #----------------------------------------------------------------------- |
| 284 | |
405 | |
| 285 | # then we install it |
406 | # then we install it |
| 286 | insinto /etc/modules.d |
407 | insinto /etc/modules.d |
| 287 | newins ${module_config} ${currm_path//*\/} |
408 | newins ${module_config} ${currm_path//*\/} |
| … | |
… | |
| 291 | done |
412 | done |
| 292 | eend 0 |
413 | eend 0 |
| 293 | return 0 |
414 | return 0 |
| 294 | } |
415 | } |
| 295 | |
416 | |
| 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() { |
417 | find_module_params() { |
|
|
418 | debug-print-function ${FUNCNAME} $* |
|
|
419 | |
| 328 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
420 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
| 329 | local i=0 y=0 z=0 |
421 | local i=0 y=0 z=0 |
| 330 | |
422 | |
| 331 | for((i=0; i<=${#test}; i++)) |
423 | for((i=0; i<=${#test}; i++)) |
| 332 | do |
424 | do |
| 333 | case ${test:${i}:1} in |
425 | case ${test:${i}:1} in |
| 334 | \() matched_offset[0]=${i};; |
426 | \() matched_offset[0]=${i};; |
| 335 | \:) matched_opts=$((${matched_opts} + 1)); |
427 | \:) matched_opts=$((${matched_opts} + 1)); |
| 336 | matched_offset[${matched_opts}]="${i}";; |
428 | matched_offset[${matched_opts}]="${i}";; |
| 337 | \)) matched_opts=$((${matched_opts} + 1)); |
429 | \)) matched_opts=$((${matched_opts} + 1)); |
| 338 | matched_offset[${matched_opts}]="${i}";; |
430 | matched_offset[${matched_opts}]="${i}";; |
| 339 | esac |
431 | esac |
| 340 | done |
432 | done |
| 341 | |
433 | |
| 342 | for((i=0; i<=${matched_opts}; i++)) |
434 | for((i=0; i<=${matched_opts}; i++)) |
| 343 | do |
435 | do |
| 344 | # i = offset were working on |
436 | # i = offset were working on |
| 345 | # y = last offset |
437 | # y = last offset |
| 346 | # z = current offset - last offset |
438 | # z = current offset - last offset |
| … | |
… | |
| 350 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
442 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
| 351 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
443 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
| 352 | z=$((${z} - 1)) |
444 | z=$((${z} - 1)) |
| 353 | tempvar=${test:${y}:${z}};; |
445 | tempvar=${test:${y}:${z}};; |
| 354 | esac |
446 | esac |
| 355 | |
447 | |
| 356 | case ${i} in |
448 | case ${i} in |
| 357 | 0) result="${result} modulename:${tempvar}";; |
449 | 0) result="${result} modulename:${tempvar}";; |
| 358 | 1) result="${result} libdir:${tempvar}";; |
450 | 1) result="${result} libdir:${tempvar}";; |
| 359 | 2) result="${result} srcdir:${tempvar}";; |
451 | 2) result="${result} srcdir:${tempvar}";; |
| 360 | 3) result="${result} objdir:${tempvar}";; |
452 | 3) result="${result} objdir:${tempvar}";; |
| 361 | esac |
453 | esac |
| 362 | done |
454 | done |
| 363 | |
455 | |
| 364 | echo ${result} |
456 | echo ${result} |
| 365 | } |
457 | } |
| 366 | |
458 | |
| 367 | # default ebuild functions |
459 | # default ebuild functions |
| 368 | # -------------------------------- |
460 | # -------------------------------- |
| 369 | |
461 | |
| 370 | linux-mod_pkg_setup() { |
462 | linux-mod_pkg_setup() { |
|
|
463 | debug-print-function ${FUNCNAME} $* |
|
|
464 | |
| 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 | debug-print-function ${FUNCNAME} $* |
| 379 | } |
|
|
| 380 | |
478 | |
| 381 | linux-mod_src_install_userland() { |
479 | local i |
| 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} |
480 | for i in ${MODULE_IGNORE}; do |
| 392 | do |
|
|
| 393 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
481 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 394 | done |
482 | done |
|
|
483 | } |
| 395 | |
484 | |
|
|
485 | linux-mod_src_compile() { |
|
|
486 | debug-print-function ${FUNCNAME} $* |
|
|
487 | |
|
|
488 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" myABI="${ABI}" |
|
|
489 | ARCH="$(tc-arch-kernel)" |
|
|
490 | ABI="${KERNEL_ABI}" |
|
|
491 | |
|
|
492 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
|
|
493 | strip_modulenames; |
| 396 | for i in ${MODULE_NAMES} |
494 | for i in ${MODULE_NAMES} |
| 397 | do |
495 | do |
| 398 | unset libdir srcdir objdir |
496 | unset libdir srcdir objdir |
| 399 | for n in $(find_module_params ${i}) |
497 | for n in $(find_module_params ${i}) |
| 400 | do |
498 | do |
| 401 | eval ${n/:*}=${n/*:/} |
499 | eval ${n/:*}=${n/*:/} |
| 402 | done |
500 | done |
| 403 | libdir=${libdir:-misc} |
501 | libdir=${libdir:-misc} |
| 404 | srcdir=${srcdir:-${S}} |
502 | srcdir=${srcdir:-${S}} |
| 405 | objdir=${objdir:-${srcdir}} |
503 | objdir=${objdir:-${srcdir}} |
| 406 | |
504 | |
| 407 | if [ ! -f "${srcdir}/.built" ]; |
505 | if [ ! -f "${srcdir}/.built" ]; |
| 408 | then |
506 | then |
| 409 | cd ${srcdir} |
507 | cd ${srcdir} |
| 410 | einfo "Preparing ${modulename} module" |
508 | einfo "Preparing ${modulename} module" |
| 411 | if [[ -n ${ECONF_PARAMS} ]] |
509 | if [[ -n ${ECONF_PARAMS} ]] |
| 412 | then |
510 | then |
| 413 | econf ${ECONF_PARAMS} || \ |
511 | econf ${ECONF_PARAMS} || \ |
| 414 | die "Unable to run econf ${ECONF_PARAMS}" |
512 | die "Unable to run econf ${ECONF_PARAMS}" |
| 415 | fi |
513 | fi |
| 416 | |
514 | |
| 417 | emake ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
515 | emake HOSTCC="$(tc-getBUILD_CC)" CC="$(get-KERNEL_CC)" LDFLAGS="$(get_abi_LDFLAGS)" \ |
| 418 | || die "Unable to make \ |
|
|
| 419 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
516 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
|
|
517 | || die "Unable to make ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
| 420 | touch ${srcdir}/.built |
518 | touch ${srcdir}/.built |
| 421 | cd ${OLDPWD} |
519 | cd ${OLDPWD} |
| 422 | fi |
520 | fi |
| 423 | done |
521 | done |
| 424 | |
522 | |
| 425 | ARCH="${myARCH}" |
523 | ARCH="${myARCH}" |
|
|
524 | ABI="${myABI}" |
| 426 | } |
525 | } |
| 427 | |
526 | |
| 428 | linux-mod_src_install() { |
527 | linux-mod_src_install() { |
|
|
528 | debug-print-function ${FUNCNAME} $* |
|
|
529 | |
| 429 | local modulename libdir srcdir objdir i n |
530 | 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 | |
531 | |
|
|
532 | strip_modulenames; |
| 436 | for i in ${MODULE_NAMES} |
533 | for i in ${MODULE_NAMES} |
| 437 | do |
534 | do |
| 438 | unset libdir srcdir objdir |
535 | unset libdir srcdir objdir |
| 439 | for n in $(find_module_params ${i}) |
536 | for n in $(find_module_params ${i}) |
| 440 | do |
537 | do |
| … | |
… | |
| 443 | libdir=${libdir:-misc} |
540 | libdir=${libdir:-misc} |
| 444 | srcdir=${srcdir:-${S}} |
541 | srcdir=${srcdir:-${S}} |
| 445 | objdir=${objdir:-${srcdir}} |
542 | objdir=${objdir:-${srcdir}} |
| 446 | |
543 | |
| 447 | einfo "Installing ${modulename} module" |
544 | einfo "Installing ${modulename} module" |
| 448 | cd ${objdir} |
545 | cd ${objdir} || die "${objdir} does not exist" |
| 449 | insinto ${ROOT}lib/modules/${KV_FULL}/${libdir} |
546 | insinto /lib/modules/${KV_FULL}/${libdir} |
| 450 | doins ${modulename}.${KV_OBJ} |
547 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
| 451 | cd ${OLDPWD} |
548 | cd ${OLDPWD} |
| 452 | |
549 | |
| 453 | generate_modulesd ${objdir}/${modulename} |
550 | generate_modulesd ${objdir}/${modulename} |
| 454 | done |
551 | done |
| 455 | } |
552 | } |
| 456 | |
553 | |
|
|
554 | linux-mod_pkg_preinst() { |
|
|
555 | debug-print-function ${FUNCNAME} $* |
|
|
556 | |
|
|
557 | [ -d ${IMAGE}/lib/modules ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
|
|
558 | [ -d ${IMAGE}/etc/modules.d ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
|
|
559 | [ -d ${IMAGE}/lib/modules ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
|
|
560 | } |
|
|
561 | |
| 457 | linux-mod_pkg_postinst() { |
562 | linux-mod_pkg_postinst() { |
| 458 | update_depmod; |
563 | debug-print-function ${FUNCNAME} $* |
| 459 | update_modules; |
564 | |
| 460 | display_postinst; |
565 | ${UPDATE_DEPMOD} && update_depmod; |
|
|
566 | ${UPDATE_MODULES} && update_modules; |
|
|
567 | ${UPDATE_MODULEDB} && update_moduledb; |
| 461 | } |
568 | } |
|
|
569 | |
|
|
570 | linux-mod_pkg_postrm() { |
|
|
571 | debug-print-function ${FUNCNAME} $* |
|
|
572 | remove_moduledb; |
|
|
573 | } |