| 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.67 2006/07/24 20:18:09 genstef Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.93 2008/11/05 12:00:19 dsd Exp $ |
| 4 | |
4 | |
| 5 | # Description: This eclass is used to interface with linux-info in such a way |
|
|
| 6 | # to provide the functionality required and initial functions |
|
|
| 7 | # required to install external modules against a kernel source |
|
|
| 8 | # tree. |
|
|
| 9 | # |
|
|
| 10 | # Maintainer: John Mylchreest <johnm@gentoo.org> |
5 | # Author(s): John Mylchreest <johnm@gentoo.org>, |
| 11 | # Copyright 2004 Gentoo Linux |
6 | # Stefan Schweizer <genstef@gentoo.org> |
|
|
7 | # Maintainer: kernel-misc@gentoo.org |
| 12 | # |
8 | # |
| 13 | # Please direct your bugs to the current eclass maintainer :) |
9 | # Please direct your bugs to the current eclass maintainer :) |
|
|
10 | |
|
|
11 | # @ECLASS: linux-mod.eclass |
|
|
12 | # @MAINTAINER: |
|
|
13 | # kernel-misc@gentoo.org |
|
|
14 | # @BLURB: It provides the functionality required to install external modules against a kernel source tree. |
|
|
15 | # @DESCRIPTION: |
|
|
16 | # This eclass is used to interface with linux-info.eclass in such a way |
|
|
17 | # to provide the functionality and initial functions |
|
|
18 | # required to install external modules against a kernel source |
|
|
19 | # tree. |
| 14 | |
20 | |
| 15 | # A Couple of env vars are available to effect usage of this eclass |
21 | # A Couple of env vars are available to effect usage of this eclass |
| 16 | # These are as follows: |
22 | # These are as follows: |
| 17 | # |
23 | |
| 18 | # Env Var Option Default Description |
24 | # @ECLASS-VARIABLE: KERNEL_DIR |
| 19 | # KERNEL_DIR <string> /usr/src/linux The directory containing kernel |
25 | # @DESCRIPTION: |
| 20 | # the target kernel sources. |
26 | # A string containing the directory of the target kernel sources. The default value is |
| 21 | # ECONF_PARAMS <string> The parameters to pass to econf. |
27 | # "/usr/src/linux" |
|
|
28 | |
|
|
29 | # @ECLASS-VARIABLE: ECONF_PARAMS |
|
|
30 | # @DESCRIPTION: |
|
|
31 | # It's a string containing the parameters to pass to econf. |
| 22 | # If this is not set, then econf |
32 | # If this is not set, then econf isn't run. |
| 23 | # isn't run. |
|
|
| 24 | # BUILD_PARAMS <string> The parameters to pass to emake. |
|
|
| 25 | # BUILD_TARGETS <string> clean modules The build targets to pass to |
|
|
| 26 | # make. |
|
|
| 27 | # MODULE_NAMES <string> This is the modules which are |
|
|
| 28 | # to be built automatically using |
|
|
| 29 | # the default pkg_compile/install. |
|
|
| 30 | # They are explained properly |
|
|
| 31 | # below. It will only make |
|
|
| 32 | # BUILD_TARGETS once in any |
|
|
| 33 | # directory. |
|
|
| 34 | |
33 | |
| 35 | # MODULE_NAMES - Detailed Overview |
34 | # @ECLASS-VARIABLE: BUILD_PARAMS |
|
|
35 | # @DESCRIPTION: |
|
|
36 | # It's a string with the parameters to pass to emake. |
|
|
37 | |
|
|
38 | # @ECLASS-VARIABLE: BUILD_TARGETS |
|
|
39 | # @DESCRIPTION: |
|
|
40 | # It's a string with the build targets to pass to make. The default value is "clean modules" |
|
|
41 | |
|
|
42 | # @ECLASS-VARIABLE: MODULE_NAMES |
|
|
43 | # @DESCRIPTION: |
|
|
44 | # It's a string containing the modules to be built automatically using the default |
|
|
45 | # src_compile/src_install. It will only make ${BUILD_TARGETS} once in any directory. |
| 36 | # |
46 | # |
| 37 | # The structure of each MODULE_NAMES entry is as follows: |
47 | # The structure of each MODULE_NAMES entry is as follows: |
|
|
48 | # |
| 38 | # modulename(libdir:srcdir:objdir) |
49 | # modulename(libdir:srcdir:objdir) |
|
|
50 | # |
|
|
51 | # where: |
|
|
52 | # |
|
|
53 | # modulename = name of the module file excluding the .ko |
|
|
54 | # libdir = place in system modules directory where module is installed (by default it's misc) |
|
|
55 | # srcdir = place for ebuild to cd to before running make (by default it's ${S}) |
|
|
56 | # objdir = place the .ko and objects are located after make runs (by default it's set to srcdir) |
|
|
57 | # |
|
|
58 | # To get an idea of how these variables are used, here's a few lines |
|
|
59 | # of code from around line 540 in this eclass: |
|
|
60 | # |
|
|
61 | # einfo "Installing ${modulename} module" |
|
|
62 | # cd ${objdir} || die "${objdir} does not exist" |
|
|
63 | # insinto /lib/modules/${KV_FULL}/${libdir} |
|
|
64 | # doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
|
|
65 | # |
| 39 | # for example: |
66 | # For example: |
| 40 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
67 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
| 41 | # |
68 | # |
| 42 | # what this would do is |
69 | # what this would do is |
|
|
70 | # |
| 43 | # cd ${S}/pci |
71 | # cd "${S}"/pci |
| 44 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
72 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
| 45 | # cd ${S} |
73 | # cd "${S}" |
| 46 | # insinto /lib/modules/${KV_FULL}/pci |
74 | # insinto /lib/modules/${KV_FULL}/pci |
| 47 | # doins module_pci.${KV_OBJ} |
75 | # doins module_pci.${KV_OBJ} |
| 48 | # |
76 | # |
| 49 | # cd ${S}/usb |
77 | # cd "${S}"/usb |
| 50 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
78 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
| 51 | # cd ${S} |
79 | # cd "${S}" |
| 52 | # insinto /lib/modules/${KV_FULL}/usb |
80 | # insinto /lib/modules/${KV_FULL}/usb |
| 53 | # doins module_usb.${KV_OBJ} |
81 | # doins module_usb.${KV_OBJ} |
| 54 | # |
|
|
| 55 | # if the srcdir isnt specified, it assumes ${S} |
|
|
| 56 | # if the libdir isnt specified, it assumes misc. |
|
|
| 57 | # if the objdir isnt specified, it assumes srcdir |
|
|
| 58 | |
82 | |
| 59 | # There is also support for automatyed modules.d file generation. |
83 | # 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. |
84 | # This can be explicitly enabled by setting any of the following variables. |
|
|
85 | |
|
|
86 | # @ECLASS-VARIABLE: MODULESD_<modulename>_ENABLED |
|
|
87 | # @DESCRIPTION: |
|
|
88 | # This is used to disable the modprobe.d/modules.d file generation otherwise the file will be |
|
|
89 | # always generated (unless no MODULESD_<modulename>_* variable is provided). Set to "no" to disable |
|
|
90 | # the generation of the file and the installation of the documentation. |
|
|
91 | |
|
|
92 | # @ECLASS-VARIABLE: MODULESD_<modulename>_EXAMPLES |
|
|
93 | # @DESCRIPTION: |
|
|
94 | # This is a bash array containing a list of examples which should |
|
|
95 | # be used. If you want us to try and take a guess set this to "guess". |
| 61 | # |
96 | # |
|
|
97 | # For each array_component it's added an options line in the modprobe.d/modules.d file |
| 62 | # |
98 | # |
| 63 | # MODULESD_${modulename}_ENABLED This enables the modules.d file |
99 | # options array_component |
| 64 | # generation even if we dont |
100 | # |
| 65 | # specify any additional info. |
101 | # where array_component is "<modulename> options" (see modprobe.conf(5)) |
| 66 | # MODULESD_${modulename}_EXAMPLES This is a bash array containing |
102 | |
| 67 | # a list of examples which should |
103 | # @ECLASS-VARIABLE: MODULESD_<modulename>_ALIASES |
| 68 | # be used. If you want us to try and |
104 | # @DESCRIPTION: |
| 69 | # take a guess. Set this to "guess" |
105 | # This is a bash array containing a list of associated aliases. |
| 70 | # MODULESD_${modulename}_ALIASES This is a bash array containing |
106 | # |
| 71 | # a list of associated aliases. |
107 | # For each array_component it's added an alias line in the modprobe.d/modules.d file |
| 72 | # MODULESD_${modulename}_ADDITIONS This is a bash array containing |
108 | # |
| 73 | # A list of additional things to |
109 | # alias array_component |
| 74 | # add to the bottom of the file. |
110 | # |
| 75 | # This can be absolutely anything. |
111 | # where array_component is "wildcard <modulename>" (see modprobe.conf(5)) |
|
|
112 | |
|
|
113 | # @ECLASS-VARIABLE: MODULESD_<modulename>_ADDITIONS |
|
|
114 | # @DESCRIPTION: |
|
|
115 | # This is a bash array containing a list of additional things to |
|
|
116 | # add to the bottom of the file. This can be absolutely anything. |
| 76 | # Each entry is a new line. |
117 | # Each entry is a new line. |
| 77 | # MODULES_${modulename}_DOCS This is a string list which contains |
118 | |
| 78 | # the full path to any associated |
119 | # @ECLASS-VARIABLE: MODULESD_<modulename>_DOCS |
| 79 | # documents for $modulename |
120 | # @DESCRIPTION: |
|
|
121 | # This is a string list which contains the full path to any associated |
|
|
122 | # documents for <modulename>. These files are installed in the live tree. |
|
|
123 | |
|
|
124 | # @ECLASS-VARIABLE: KV_OBJ |
|
|
125 | # @DESCRIPTION: |
|
|
126 | # It's a read-only variable. It contains the extension of the kernel modules. |
| 80 | |
127 | |
| 81 | # The order of these is important as both of linux-info and eutils contain |
128 | # 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 |
129 | # 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. |
130 | # are deprecated in favor of the ones in linux-info. |
| 84 | # See http://bugs.gentoo.org/show_bug.cgi?id=127506 |
131 | # See http://bugs.gentoo.org/show_bug.cgi?id=127506 |
| … | |
… | |
| 95 | |
142 | |
| 96 | # eclass utilities |
143 | # eclass utilities |
| 97 | # ---------------------------------- |
144 | # ---------------------------------- |
| 98 | |
145 | |
| 99 | check_vermagic() { |
146 | check_vermagic() { |
|
|
147 | debug-print-function ${FUNCNAME} $* |
|
|
148 | |
| 100 | local curr_gcc_ver=$(gcc -dumpversion) |
149 | local curr_gcc_ver=$(gcc -dumpversion) |
| 101 | local tmpfile old_chost old_gcc_ver result=0 |
150 | local tmpfile old_chost old_gcc_ver result=0 |
| 102 | |
151 | |
| 103 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
152 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
| 104 | tmpfile=${tmpfile//*usr/lib} |
153 | tmpfile=${tmpfile//*usr/lib} |
| … | |
… | |
| 131 | ewarn "to match the kernel, or recompile the kernel first." |
180 | ewarn "to match the kernel, or recompile the kernel first." |
| 132 | die "GCC Version Mismatch." |
181 | die "GCC Version Mismatch." |
| 133 | fi |
182 | fi |
| 134 | } |
183 | } |
| 135 | |
184 | |
|
|
185 | # @FUNCTION: use_m |
|
|
186 | # @RETURN: true or false |
|
|
187 | # @DESCRIPTION: |
|
|
188 | # It checks if the kernel version is greater than 2.6.5. |
| 136 | use_m() { |
189 | use_m() { |
|
|
190 | debug-print-function ${FUNCNAME} $* |
|
|
191 | |
| 137 | # if we haven't determined the version yet, we need too. |
192 | # if we haven't determined the version yet, we need too. |
| 138 | get_version; |
193 | get_version; |
| 139 | |
194 | |
| 140 | # if the kernel version is greater than 2.6.6 then we should use |
195 | # if the kernel version is greater than 2.6.6 then we should use |
| 141 | # M= instead of SUBDIRS= |
196 | # M= instead of SUBDIRS= |
| 142 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
197 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
| 143 | return 0 || return 1 |
198 | return 0 || return 1 |
| 144 | } |
199 | } |
| 145 | |
200 | |
|
|
201 | # @FUNCTION: convert_to_m |
|
|
202 | # @USAGE: /path/to/the/file |
|
|
203 | # @DESCRIPTION: |
|
|
204 | # It converts a file (e.g. a makefile) to use M= instead of SUBDIRS= |
| 146 | convert_to_m() { |
205 | convert_to_m() { |
|
|
206 | debug-print-function ${FUNCNAME} $* |
|
|
207 | |
| 147 | if use_m |
208 | if use_m |
| 148 | then |
209 | then |
| 149 | [ ! -f "${1}" ] && \ |
210 | [ ! -f "${1}" ] && \ |
| 150 | die "convert_to_m() requires a filename as an argument" |
211 | die "convert_to_m() requires a filename as an argument" |
| 151 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
212 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
| 152 | sed -i 's:SUBDIRS=:M=:g' ${1} |
213 | sed -i 's:SUBDIRS=:M=:g' ${1} |
| 153 | eend $? |
214 | eend $? |
| 154 | fi |
215 | fi |
| 155 | } |
216 | } |
| 156 | |
217 | |
|
|
218 | # internal function |
|
|
219 | # |
|
|
220 | # FUNCTION: update_depmod |
|
|
221 | # DESCRIPTION: |
|
|
222 | # It updates the modules.dep file for the current kernel. |
| 157 | update_depmod() { |
223 | update_depmod() { |
|
|
224 | debug-print-function ${FUNCNAME} $* |
|
|
225 | |
| 158 | # if we haven't determined the version yet, we need too. |
226 | # if we haven't determined the version yet, we need too. |
| 159 | get_version; |
227 | get_version; |
| 160 | |
228 | |
| 161 | ebegin "Updating module dependencies for ${KV_FULL}" |
229 | ebegin "Updating module dependencies for ${KV_FULL}" |
| 162 | if [ -r ${KV_OUT_DIR}/System.map ] |
230 | if [ -r ${KV_OUT_DIR}/System.map ] |
| … | |
… | |
| 170 | eend 1 |
238 | eend 1 |
| 171 | ewarn |
239 | ewarn |
| 172 | fi |
240 | fi |
| 173 | } |
241 | } |
| 174 | |
242 | |
|
|
243 | # internal function |
|
|
244 | # |
|
|
245 | # FUNCTION: update_modules |
|
|
246 | # DESCRIPTION: |
|
|
247 | # It calls the update-modules utility. |
| 175 | update_modules() { |
248 | update_modules() { |
|
|
249 | debug-print-function ${FUNCNAME} $* |
|
|
250 | |
| 176 | if [ -x /sbin/modules-update ] && \ |
251 | if [ -x /sbin/update-modules ] && \ |
| 177 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
252 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
| 178 | ebegin "Updating modules.conf" |
253 | ebegin "Updating modules.conf" |
| 179 | /sbin/modules-update |
254 | /sbin/update-modules |
| 180 | eend $? |
255 | eend $? |
|
|
256 | elif [ -x /sbin/update-modules ] && \ |
|
|
257 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
|
|
258 | ebegin "Updating modules.conf" |
|
|
259 | /sbin/update-modules |
|
|
260 | eend $? |
| 181 | fi |
261 | fi |
| 182 | } |
262 | } |
| 183 | |
263 | |
|
|
264 | # internal function |
|
|
265 | # |
|
|
266 | # FUNCTION: move_old_moduledb |
|
|
267 | # DESCRIPTION: |
|
|
268 | # It updates the location of the database used by the module-rebuild utility. |
| 184 | move_old_moduledb() { |
269 | move_old_moduledb() { |
|
|
270 | debug-print-function ${FUNCNAME} $* |
|
|
271 | |
| 185 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
272 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
| 186 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
273 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
| 187 | |
274 | |
| 188 | if [[ -f ${OLDDIR}/moduledb ]]; then |
275 | if [[ -f ${OLDDIR}/moduledb ]]; then |
| 189 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
276 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
| … | |
… | |
| 192 | rm -f ${OLDDIR}/* |
279 | rm -f ${OLDDIR}/* |
| 193 | rmdir ${OLDDIR} |
280 | rmdir ${OLDDIR} |
| 194 | fi |
281 | fi |
| 195 | } |
282 | } |
| 196 | |
283 | |
|
|
284 | # internal function |
|
|
285 | # |
|
|
286 | # FUNCTION: update_moduledb |
|
|
287 | # DESCRIPTION: |
|
|
288 | # It adds the package to the /var/lib/module-rebuild/moduledb database used by the module-rebuild utility. |
| 197 | update_moduledb() { |
289 | update_moduledb() { |
|
|
290 | debug-print-function ${FUNCNAME} $* |
|
|
291 | |
| 198 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
292 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
| 199 | move_old_moduledb |
293 | move_old_moduledb |
| 200 | |
294 | |
| 201 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
295 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
| 202 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
296 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
| 203 | touch ${MODULEDB_DIR}/moduledb |
297 | touch ${MODULEDB_DIR}/moduledb |
| 204 | fi |
298 | fi |
|
|
299 | |
| 205 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
300 | if ! grep -qs ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb ; then |
| 206 | einfo "Adding module to moduledb." |
301 | einfo "Adding module to moduledb." |
| 207 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
302 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
| 208 | fi |
303 | fi |
| 209 | } |
304 | } |
| 210 | |
305 | |
|
|
306 | # internal function |
|
|
307 | # |
|
|
308 | # FUNCTION: remove_moduledb |
|
|
309 | # DESCRIPTION: |
|
|
310 | # It removes the package from the /var/lib/module-rebuild/moduledb database used by |
|
|
311 | # the module-rebuild utility. |
| 211 | remove_moduledb() { |
312 | remove_moduledb() { |
|
|
313 | debug-print-function ${FUNCNAME} $* |
|
|
314 | |
| 212 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
315 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
| 213 | move_old_moduledb |
316 | move_old_moduledb |
| 214 | |
317 | |
| 215 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
318 | if grep -qs ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb ; then |
| 216 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
319 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
| 217 | sed -ie "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
320 | sed -i -e "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb |
| 218 | fi |
321 | fi |
| 219 | } |
322 | } |
| 220 | |
323 | |
|
|
324 | # @FUNCTION: set_kvobj |
|
|
325 | # @DESCRIPTION: |
|
|
326 | # It sets the KV_OBJ variable. |
| 221 | set_kvobj() { |
327 | set_kvobj() { |
|
|
328 | debug-print-function ${FUNCNAME} $* |
|
|
329 | |
| 222 | if kernel_is 2 6 |
330 | if kernel_is 2 6 |
| 223 | then |
331 | then |
| 224 | KV_OBJ="ko" |
332 | KV_OBJ="ko" |
| 225 | else |
333 | else |
| 226 | KV_OBJ="o" |
334 | KV_OBJ="o" |
| … | |
… | |
| 228 | # Do we really need to know this? |
336 | # Do we really need to know this? |
| 229 | # Lets silence it. |
337 | # Lets silence it. |
| 230 | # einfo "Using KV_OBJ=${KV_OBJ}" |
338 | # einfo "Using KV_OBJ=${KV_OBJ}" |
| 231 | } |
339 | } |
| 232 | |
340 | |
|
|
341 | get-KERNEL_CC() { |
|
|
342 | debug-print-function ${FUNCNAME} $* |
|
|
343 | |
|
|
344 | if [[ -n ${KERNEL_CC} ]] ; then |
|
|
345 | echo "${KERNEL_CC}" |
|
|
346 | return |
|
|
347 | fi |
|
|
348 | |
|
|
349 | local kernel_cc |
|
|
350 | if [ -n "${KERNEL_ABI}" ]; then |
|
|
351 | # In future, an arch might want to define CC_$ABI |
|
|
352 | #kernel_cc="$(get_abi_CC)" |
|
|
353 | #[ -z "${kernel_cc}" ] && |
|
|
354 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
|
|
355 | else |
|
|
356 | kernel_cc=$(tc-getCC) |
|
|
357 | fi |
|
|
358 | echo "${kernel_cc}" |
|
|
359 | } |
|
|
360 | |
|
|
361 | # internal function |
|
|
362 | # |
|
|
363 | # FUNCTION: |
|
|
364 | # USAGE: /path/to/the/modulename_without_extension |
|
|
365 | # RETURN: A file in /etc/modules.d/ (kernel < 2.6) or /etc/modprobe.d/ (kernel >= 2.6) |
|
|
366 | # DESCRIPTION: |
|
|
367 | # This function will generate and install the neccessary modprobe.d/modules.d file from the |
|
|
368 | # information contained in the modules exported parms. |
|
|
369 | # (see the variables MODULESD_<modulename>_ENABLED, MODULESD_<modulename>_EXAMPLES, |
|
|
370 | # MODULESD_<modulename>_ALIASES, MODULESD_<modulename>_ADDITION and MODULESD_<modulename>_DOCS). |
|
|
371 | # |
|
|
372 | # At the end the documentation specified with MODULESD_<modulename>_DOCS is installed. |
| 233 | generate_modulesd() { |
373 | generate_modulesd() { |
| 234 | # This function will generate the neccessary modules.d file from the |
374 | debug-print-function ${FUNCNAME} $* |
| 235 | # information contained in the modules exported parms |
|
|
| 236 | |
375 | |
| 237 | local currm_path currm currm_t t myIFS myVAR |
376 | local currm_path currm currm_t t myIFS myVAR |
| 238 | local module_docs module_enabled module_aliases \ |
377 | local module_docs module_enabled module_aliases \ |
| 239 | module_additions module_examples module_modinfo module_opts |
378 | module_additions module_examples module_modinfo module_opts |
| 240 | |
379 | |
| … | |
… | |
| 360 | fi |
499 | fi |
| 361 | |
500 | |
| 362 | #----------------------------------------------------------------------- |
501 | #----------------------------------------------------------------------- |
| 363 | |
502 | |
| 364 | # then we install it |
503 | # then we install it |
|
|
504 | if kernel_is ge 2 6; then |
|
|
505 | insinto /etc/modprobe.d |
|
|
506 | else |
| 365 | insinto /etc/modules.d |
507 | insinto /etc/modules.d |
|
|
508 | fi |
| 366 | newins ${module_config} ${currm_path//*\/} |
509 | newins ${module_config} ${currm_path//*\/} |
| 367 | |
510 | |
| 368 | # and install any documentation we might have. |
511 | # and install any documentation we might have. |
| 369 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
512 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
| 370 | done |
513 | done |
| 371 | eend 0 |
514 | eend 0 |
| 372 | return 0 |
515 | return 0 |
| 373 | } |
516 | } |
| 374 | |
517 | |
|
|
518 | # internal function |
|
|
519 | # |
|
|
520 | # FUNCTION: find_module_params |
|
|
521 | # USAGE: A string "NAME(LIBDIR:SRCDIR:OBJDIR)" |
|
|
522 | # RETURN: The string "modulename:NAME libdir:LIBDIR srcdir:SRCDIR objdir:OBJDIR" |
|
|
523 | # DESCRIPTION: |
|
|
524 | # Analyze the specification NAME(LIBDIR:SRCDIR:OBJDIR) of one module as described in MODULE_NAMES. |
| 375 | find_module_params() { |
525 | find_module_params() { |
|
|
526 | debug-print-function ${FUNCNAME} $* |
|
|
527 | |
| 376 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
528 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
| 377 | local i=0 y=0 z=0 |
529 | local i=0 y=0 z=0 |
| 378 | |
530 | |
| 379 | for((i=0; i<=${#test}; i++)) |
531 | for((i=0; i<=${#test}; i++)) |
| 380 | do |
532 | do |
| … | |
… | |
| 413 | } |
565 | } |
| 414 | |
566 | |
| 415 | # default ebuild functions |
567 | # default ebuild functions |
| 416 | # -------------------------------- |
568 | # -------------------------------- |
| 417 | |
569 | |
|
|
570 | # @FUNCTION: linux-mod_pkg_setup |
|
|
571 | # @DESCRIPTION: |
|
|
572 | # It checks the CONFIG_CHECK options (see linux-info.eclass(5)), verifies that the kernel is |
|
|
573 | # configured, verifies that the sources are prepared, verifies that the modules support is builtin |
|
|
574 | # in the kernel and sets the object extension KV_OBJ. |
| 418 | linux-mod_pkg_setup() { |
575 | linux-mod_pkg_setup() { |
|
|
576 | debug-print-function ${FUNCNAME} $* |
|
|
577 | |
| 419 | linux-info_pkg_setup; |
578 | linux-info_pkg_setup; |
|
|
579 | require_configured_kernel |
| 420 | check_kernel_built; |
580 | check_kernel_built; |
| 421 | strip_modulenames; |
581 | strip_modulenames; |
| 422 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
582 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
| 423 | set_kvobj; |
583 | set_kvobj; |
| 424 | # Commented out with permission from johnm until a fixed version for arches |
584 | # Commented out with permission from johnm until a fixed version for arches |
| … | |
… | |
| 426 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
586 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
| 427 | #check_vermagic; |
587 | #check_vermagic; |
| 428 | } |
588 | } |
| 429 | |
589 | |
| 430 | strip_modulenames() { |
590 | strip_modulenames() { |
|
|
591 | debug-print-function ${FUNCNAME} $* |
|
|
592 | |
| 431 | local i |
593 | local i |
| 432 | for i in ${MODULE_IGNORE}; do |
594 | for i in ${MODULE_IGNORE}; do |
| 433 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
595 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 434 | done |
596 | done |
| 435 | } |
597 | } |
| 436 | |
598 | |
|
|
599 | # @FUNCTION: linux-mod_src_compile |
|
|
600 | # @DESCRIPTION: |
|
|
601 | # It compiles all the modules specified in MODULE_NAMES. For each module the econf command is |
|
|
602 | # executed only if ECONF_PARAMS is defined, the name of the target is specified by BUILD_TARGETS |
|
|
603 | # while the options are in BUILD_PARAMS (all the modules share these variables). The compilation |
|
|
604 | # happens inside ${srcdir}. |
|
|
605 | # |
|
|
606 | # Look at the description of these variables for more details. |
| 437 | linux-mod_src_compile() { |
607 | linux-mod_src_compile() { |
|
|
608 | debug-print-function ${FUNCNAME} $* |
|
|
609 | |
| 438 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" myABI="${ABI}" |
610 | local modulename libdir srcdir objdir i n myABI="${ABI}" |
| 439 | ARCH="$(tc-arch-kernel)" |
611 | set_arch_to_kernel |
| 440 | ABI="${KERNEL_ABI}" |
612 | ABI="${KERNEL_ABI}" |
| 441 | CC_HOSTCC=$(tc-getBUILD_CC) |
|
|
| 442 | CC_CC=$(tc-getCC) |
|
|
| 443 | |
613 | |
| 444 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
614 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
|
|
615 | strip_modulenames; |
|
|
616 | cd "${S}" |
|
|
617 | touch Module.symvers |
|
|
618 | for i in ${MODULE_NAMES} |
|
|
619 | do |
|
|
620 | unset libdir srcdir objdir |
|
|
621 | for n in $(find_module_params ${i}) |
|
|
622 | do |
|
|
623 | eval ${n/:*}=${n/*:/} |
|
|
624 | done |
|
|
625 | libdir=${libdir:-misc} |
|
|
626 | srcdir=${srcdir:-${S}} |
|
|
627 | objdir=${objdir:-${srcdir}} |
|
|
628 | |
|
|
629 | if [ ! -f "${srcdir}/.built" ]; |
|
|
630 | then |
|
|
631 | cd ${srcdir} |
|
|
632 | ln -s "${S}"/Module.symvers Module.symvers |
|
|
633 | einfo "Preparing ${modulename} module" |
|
|
634 | if [[ -n ${ECONF_PARAMS} ]] |
|
|
635 | then |
|
|
636 | econf ${ECONF_PARAMS} || \ |
|
|
637 | die "Unable to run econf ${ECONF_PARAMS}" |
|
|
638 | fi |
|
|
639 | |
|
|
640 | # This looks messy, but it is needed to handle multiple variables |
|
|
641 | # being passed in the BUILD_* stuff where the variables also have |
|
|
642 | # spaces that must be preserved. If don't do this, then the stuff |
|
|
643 | # inside the variables gets used as targets for Make, which then |
|
|
644 | # fails. |
|
|
645 | eval "emake HOSTCC=\"$(tc-getBUILD_CC)\" \ |
|
|
646 | CROSS_COMPILE=${CHOST}- \ |
|
|
647 | LDFLAGS=\"$(get_abi_LDFLAGS)\" \ |
|
|
648 | ${BUILD_FIXES} \ |
|
|
649 | ${BUILD_PARAMS} \ |
|
|
650 | ${BUILD_TARGETS} " \ |
|
|
651 | || die "Unable to emake HOSTCC="$(tc-getBUILD_CC)" CROSS_COMPILE=${CHOST}- LDFLAGS="$(get_abi_LDFLAGS)" ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}" |
|
|
652 | cd ${OLDPWD} |
|
|
653 | touch ${srcdir}/.built |
|
|
654 | fi |
|
|
655 | done |
|
|
656 | |
|
|
657 | set_arch_to_portage |
|
|
658 | ABI="${myABI}" |
|
|
659 | } |
|
|
660 | |
|
|
661 | # @FUNCTION: linux-mod_src_install |
|
|
662 | # @DESCRIPTION: |
|
|
663 | # It install the modules specified in MODULES_NAME. The modules should be inside the ${objdir} |
|
|
664 | # directory and they are installed inside /lib/modules/${KV_FULL}/${libdir}. |
|
|
665 | # |
|
|
666 | # The modprobe.d/modules.d configuration file is automatically generated if the |
|
|
667 | # MODULESD_<modulename>_* variables are defined. The only way to stop this process is by |
|
|
668 | # setting MODULESD_<modulename>_ENABLED=no. At the end the documentation specified via |
|
|
669 | # MODULESD_<modulename>_DOCS is also installed. |
|
|
670 | # |
|
|
671 | # Look at the description of these variables for more details. |
|
|
672 | linux-mod_src_install() { |
|
|
673 | debug-print-function ${FUNCNAME} $* |
|
|
674 | |
|
|
675 | local modulename libdir srcdir objdir i n |
|
|
676 | |
| 445 | strip_modulenames; |
677 | strip_modulenames; |
| 446 | for i in ${MODULE_NAMES} |
678 | for i in ${MODULE_NAMES} |
| 447 | do |
679 | do |
| 448 | unset libdir srcdir objdir |
680 | unset libdir srcdir objdir |
| 449 | for n in $(find_module_params ${i}) |
681 | for n in $(find_module_params ${i}) |
| … | |
… | |
| 452 | done |
684 | done |
| 453 | libdir=${libdir:-misc} |
685 | libdir=${libdir:-misc} |
| 454 | srcdir=${srcdir:-${S}} |
686 | srcdir=${srcdir:-${S}} |
| 455 | objdir=${objdir:-${srcdir}} |
687 | objdir=${objdir:-${srcdir}} |
| 456 | |
688 | |
| 457 | if [ ! -f "${srcdir}/.built" ]; |
|
|
| 458 | then |
|
|
| 459 | cd ${srcdir} |
|
|
| 460 | einfo "Preparing ${modulename} module" |
|
|
| 461 | if [[ -n ${ECONF_PARAMS} ]] |
|
|
| 462 | then |
|
|
| 463 | econf ${ECONF_PARAMS} || \ |
|
|
| 464 | die "Unable to run econf ${ECONF_PARAMS}" |
|
|
| 465 | fi |
|
|
| 466 | |
|
|
| 467 | emake HOSTCC=${CC_HOSTCC} CC=${CC_CC}\ |
|
|
| 468 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
|
|
| 469 | || die "Unable to make ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
|
|
| 470 | touch ${srcdir}/.built |
|
|
| 471 | cd ${OLDPWD} |
|
|
| 472 | fi |
|
|
| 473 | done |
|
|
| 474 | |
|
|
| 475 | ARCH="${myARCH}" |
|
|
| 476 | ABI="${myABI}" |
|
|
| 477 | } |
|
|
| 478 | |
|
|
| 479 | linux-mod_src_install() { |
|
|
| 480 | local modulename libdir srcdir objdir i n |
|
|
| 481 | |
|
|
| 482 | strip_modulenames; |
|
|
| 483 | for i in ${MODULE_NAMES} |
|
|
| 484 | do |
|
|
| 485 | unset libdir srcdir objdir |
|
|
| 486 | for n in $(find_module_params ${i}) |
|
|
| 487 | do |
|
|
| 488 | eval ${n/:*}=${n/*:/} |
|
|
| 489 | done |
|
|
| 490 | libdir=${libdir:-misc} |
|
|
| 491 | srcdir=${srcdir:-${S}} |
|
|
| 492 | objdir=${objdir:-${srcdir}} |
|
|
| 493 | |
|
|
| 494 | einfo "Installing ${modulename} module" |
689 | einfo "Installing ${modulename} module" |
| 495 | cd ${objdir} || die "${objdir} does not exist" |
690 | cd ${objdir} || die "${objdir} does not exist" |
| 496 | insinto /lib/modules/${KV_FULL}/${libdir} |
691 | insinto /lib/modules/${KV_FULL}/${libdir} |
| 497 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
692 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
| 498 | cd ${OLDPWD} |
693 | cd ${OLDPWD} |
| 499 | |
694 | |
| 500 | generate_modulesd ${objdir}/${modulename} |
695 | generate_modulesd ${objdir}/${modulename} |
| 501 | done |
696 | done |
| 502 | } |
697 | } |
| 503 | |
698 | |
|
|
699 | # @FUNCTION: linux-mod_pkg_preinst |
|
|
700 | # @DESCRIPTION: |
|
|
701 | # It checks what to do after having merged the package. |
| 504 | linux-mod_pkg_preinst() { |
702 | linux-mod_pkg_preinst() { |
|
|
703 | debug-print-function ${FUNCNAME} $* |
|
|
704 | |
| 505 | [ -d ${IMAGE}/lib/modules ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
705 | [ -d "${D}lib/modules" ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
| 506 | [ -d ${IMAGE}/etc/modules.d ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
706 | [ -d "${D}etc/modules.d" ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
| 507 | [ -d ${IMAGE}/lib/modules ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
707 | [ -d "${D}lib/modules" ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
| 508 | } |
708 | } |
| 509 | |
709 | |
|
|
710 | # @FUNCTION: linux-mod_pkg_postinst |
|
|
711 | # @DESCRIPTION: |
|
|
712 | # It executes /sbin/depmod and adds the package to the /var/lib/module-rebuild/moduledb |
|
|
713 | # database (if ${D}/lib/modules is created) and it runs /sbin/update-modules |
|
|
714 | # (if ${D}/etc/modules.d is created). |
| 510 | linux-mod_pkg_postinst() { |
715 | linux-mod_pkg_postinst() { |
|
|
716 | debug-print-function ${FUNCNAME} $* |
|
|
717 | |
| 511 | ${UPDATE_DEPMOD} && update_depmod; |
718 | ${UPDATE_DEPMOD} && update_depmod; |
| 512 | ${UPDATE_MODULES} && update_modules; |
719 | ${UPDATE_MODULES} && update_modules; |
| 513 | ${UPDATE_MODULEDB} && update_moduledb; |
720 | ${UPDATE_MODULEDB} && update_moduledb; |
| 514 | } |
721 | } |
| 515 | |
722 | |
|
|
723 | # @FUNCTION: linux-mod_pkg_postrm |
|
|
724 | # @DESCRIPTION: |
|
|
725 | # It removes the package from the /var/lib/module-rebuild/moduledb database but it doens't |
|
|
726 | # call /sbin/depmod and /sbin/update-modules because the modules are still installed. |
| 516 | linux-mod_pkg_postrm() { |
727 | linux-mod_pkg_postrm() { |
|
|
728 | debug-print-function ${FUNCNAME} $* |
| 517 | remove_moduledb; |
729 | remove_moduledb; |
| 518 | } |
730 | } |