1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 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.22 2005/01/16 22:54:56 johnm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.100 2011/04/24 18:55:20 ulm 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 isn't |
32 | # If this is not set, then econf isn't run. |
23 | # run. |
|
|
24 | # BUILD_PARAMS <string> The parameters to pass to emake. |
|
|
25 | # BUILD_TARGETS <string> clean modules The build targets to pass to make. |
|
|
26 | # MODULE_NAMES <string> This is the modules which are |
|
|
27 | # to be built automatically using the |
|
|
28 | # default pkg_compile/install. They |
|
|
29 | # are explained properly below. |
|
|
30 | # It will only make BUILD_TARGETS once |
|
|
31 | # in any directory. |
|
|
32 | # NO_MODULESD <string> Set this to something to prevent |
|
|
33 | # modulesd file generation |
|
|
34 | |
33 | |
|
|
34 | # @ECLASS-VARIABLE: BUILD_PARAMS |
|
|
35 | # @DESCRIPTION: |
|
|
36 | # It's a string with the parameters to pass to emake. |
35 | |
37 | |
36 | # MODULE_NAMES - Detailed Overview |
38 | # @ECLASS-VARIABLE: BUILD_TARGETS |
37 | # |
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. |
|
|
46 | # |
38 | # The structure of each MODULE_NAMES entry is as follows: |
47 | # The structure of each MODULE_NAMES entry is as follows: |
39 | # modulename(libmodulesdir:modulesourcedir) |
48 | # |
|
|
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 | # |
40 | # for example: |
66 | # For example: |
41 | # MODULE_NAMES="module_pci(pci:${S}/pci) module_usb(usb:${S}/usb)" |
67 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
42 | # |
68 | # |
43 | # what this would do is |
69 | # what this would do is |
|
|
70 | # |
44 | # cd ${S}/pci |
71 | # cd "${S}"/pci |
45 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
72 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
|
|
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} |
|
|
79 | # cd "${S}" |
51 | # insinto /lib/modules/${KV_FULL}/usb |
80 | # insinto /lib/modules/${KV_FULL}/usb |
52 | # doins module_usb.${KV_OBJ} |
81 | # doins module_usb.${KV_OBJ} |
53 | # |
|
|
54 | # if the modulessourcedir isnt specified, it assumes ${S} |
|
|
55 | # if the libmodulesdir isnt specified, it assumes misc. |
|
|
56 | # if no seperator is defined ":" then it assumes the argument is modulesourcedir |
|
|
57 | |
82 | |
58 | inherit linux-info |
83 | # There is also support for automated modprobe.d/modules.d(2.4) file generation. |
59 | ECLASS=linux-mod |
84 | # This can be explicitly enabled by setting any of the following variables. |
60 | INHERITED="$INHERITED $ECLASS" |
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". |
|
|
96 | # |
|
|
97 | # For each array_component it's added an options line in the modprobe.d/modules.d file |
|
|
98 | # |
|
|
99 | # options array_component |
|
|
100 | # |
|
|
101 | # where array_component is "<modulename> options" (see modprobe.conf(5)) |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: MODULESD_<modulename>_ALIASES |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # This is a bash array containing a list of associated aliases. |
|
|
106 | # |
|
|
107 | # For each array_component it's added an alias line in the modprobe.d/modules.d file |
|
|
108 | # |
|
|
109 | # alias array_component |
|
|
110 | # |
|
|
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. |
|
|
117 | # Each entry is a new line. |
|
|
118 | |
|
|
119 | # @ECLASS-VARIABLE: MODULESD_<modulename>_DOCS |
|
|
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. |
|
|
127 | |
|
|
128 | # The order of these is important as both of linux-info and eutils contain |
|
|
129 | # set_arch_to_kernel and set_arch_to_portage functions and the ones in eutils |
|
|
130 | # are deprecated in favor of the ones in linux-info. |
|
|
131 | # See http://bugs.gentoo.org/show_bug.cgi?id=127506 |
|
|
132 | |
|
|
133 | inherit eutils linux-info multilib |
61 | EXPORT_FUNCTIONS pkg_setup src_install pkg_postinst src_compile |
134 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst src_install src_compile pkg_postrm |
62 | |
135 | |
|
|
136 | IUSE="kernel_linux" |
|
|
137 | SLOT="0" |
63 | DESCRIPTION="Based on the $ECLASS eclass" |
138 | DESCRIPTION="Based on the $ECLASS eclass" |
64 | SLOT=0 |
139 | RDEPEND="kernel_linux? ( sys-apps/module-init-tools )" |
65 | DEPEND="virtual/linux-sources |
140 | DEPEND="${RDEPEND} |
66 | sys-apps/sed |
141 | sys-apps/sed |
67 | virtual/modutils" |
142 | kernel_linux? ( virtual/linux-sources )" |
68 | |
143 | |
69 | # eclass utilities |
144 | # eclass utilities |
70 | # ---------------------------------- |
145 | # ---------------------------------- |
71 | |
146 | |
|
|
147 | check_vermagic() { |
|
|
148 | debug-print-function ${FUNCNAME} $* |
|
|
149 | |
|
|
150 | local curr_gcc_ver=$(gcc -dumpversion) |
|
|
151 | local tmpfile old_chost old_gcc_ver result=0 |
|
|
152 | |
|
|
153 | tmpfile=`find "${KV_DIR}/" -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
|
|
154 | tmpfile=${tmpfile//*usr/lib} |
|
|
155 | tmpfile=${tmpfile//\/include*} |
|
|
156 | old_chost=${tmpfile//*gcc\/} |
|
|
157 | old_chost=${old_chost//\/*} |
|
|
158 | old_gcc_ver=${tmpfile//*\/} |
|
|
159 | |
|
|
160 | if [[ -z ${old_gcc_ver} || -z ${old_chost} ]]; then |
|
|
161 | ewarn "" |
|
|
162 | ewarn "Unable to detect what version of GCC was used to compile" |
|
|
163 | ewarn "the kernel. Build will continue, but you may experience problems." |
|
|
164 | elif [[ ${curr_gcc_ver} != ${old_gcc_ver} ]]; then |
|
|
165 | ewarn "" |
|
|
166 | ewarn "The version of GCC you are using (${curr_gcc_ver}) does" |
|
|
167 | ewarn "not match the version of GCC used to compile the" |
|
|
168 | ewarn "kernel (${old_gcc_ver})." |
|
|
169 | result=1 |
|
|
170 | elif [[ ${CHOST} != ${old_chost} ]]; then |
|
|
171 | ewarn "" |
|
|
172 | ewarn "The current CHOST (${CHOST}) does not match the chost" |
|
|
173 | ewarn "used when compiling the kernel (${old_chost})." |
|
|
174 | result=1 |
|
|
175 | fi |
|
|
176 | |
|
|
177 | if [[ ${result} -gt 0 ]]; then |
|
|
178 | ewarn "" |
|
|
179 | ewarn "Build will not continue, because you will experience problems." |
|
|
180 | ewarn "To fix this either change the version of GCC you wish to use" |
|
|
181 | ewarn "to match the kernel, or recompile the kernel first." |
|
|
182 | die "GCC Version Mismatch." |
|
|
183 | fi |
|
|
184 | } |
|
|
185 | |
|
|
186 | # @FUNCTION: use_m |
|
|
187 | # @RETURN: true or false |
|
|
188 | # @DESCRIPTION: |
|
|
189 | # It checks if the kernel version is greater than 2.6.5. |
72 | use_m() { |
190 | use_m() { |
|
|
191 | debug-print-function ${FUNCNAME} $* |
|
|
192 | |
73 | # if we haven't determined the version yet, we need too. |
193 | # if we haven't determined the version yet, we need too. |
74 | get_version; |
194 | get_version; |
75 | |
195 | |
76 | # if the kernel version is greater than 2.6.6 then we should use |
196 | # if the kernel version is greater than 2.6.6 then we should use |
77 | # M= instead of SUBDIRS= |
197 | # M= instead of SUBDIRS= |
78 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
198 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
79 | return 0 || return 1 |
199 | return 0 || return 1 |
80 | } |
200 | } |
81 | |
201 | |
|
|
202 | # @FUNCTION: convert_to_m |
|
|
203 | # @USAGE: /path/to/the/file |
|
|
204 | # @DESCRIPTION: |
|
|
205 | # It converts a file (e.g. a makefile) to use M= instead of SUBDIRS= |
82 | convert_to_m() { |
206 | convert_to_m() { |
83 | [ ! -f "${1}" ] && die "convert_to_m() requires a filename as an argument" |
207 | debug-print-function ${FUNCNAME} $* |
|
|
208 | |
84 | if use_m |
209 | if use_m |
85 | then |
210 | then |
|
|
211 | [ ! -f "${1}" ] && \ |
|
|
212 | die "convert_to_m() requires a filename as an argument" |
86 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
213 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
87 | sed -i 's:SUBDIRS=:M=:g' ${1} |
214 | sed -i 's:SUBDIRS=:M=:g' "${1}" |
88 | eend $? |
215 | eend $? |
89 | fi |
216 | fi |
90 | } |
217 | } |
91 | |
218 | |
|
|
219 | # internal function |
|
|
220 | # |
|
|
221 | # FUNCTION: update_depmod |
|
|
222 | # DESCRIPTION: |
|
|
223 | # It updates the modules.dep file for the current kernel. |
92 | update_depmod() { |
224 | update_depmod() { |
|
|
225 | debug-print-function ${FUNCNAME} $* |
|
|
226 | |
93 | # if we haven't determined the version yet, we need too. |
227 | # if we haven't determined the version yet, we need too. |
94 | get_version; |
228 | get_version; |
95 | |
229 | |
96 | ebegin "Updating module dependencies for ${KV_FULL}" |
230 | ebegin "Updating module dependencies for ${KV_FULL}" |
97 | if [ -r ${KV_OUT_DIR}/System.map ] |
231 | if [ -r "${KV_OUT_DIR}"/System.map ] |
98 | then |
232 | then |
99 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
233 | depmod -ae -F "${KV_OUT_DIR}"/System.map -b "${ROOT}" -r ${KV_FULL} |
100 | eend $? |
234 | eend $? |
101 | else |
235 | else |
102 | ewarn |
236 | ewarn |
103 | ewarn "${KV_OUT_DIR}/System.map not found." |
237 | ewarn "${KV_OUT_DIR}/System.map not found." |
104 | ewarn "You must manually update the kernel module dependencies using depmod." |
238 | ewarn "You must manually update the kernel module dependencies using depmod." |
105 | eend 1 |
239 | eend 1 |
106 | ewarn |
240 | ewarn |
107 | fi |
241 | fi |
108 | } |
242 | } |
109 | |
243 | |
|
|
244 | # internal function |
|
|
245 | # |
|
|
246 | # FUNCTION: update_modules |
|
|
247 | # DESCRIPTION: |
|
|
248 | # It calls the update-modules utility. |
110 | update_modules() { |
249 | update_modules() { |
111 | if [ -x /sbin/modules-update ] ; |
250 | debug-print-function ${FUNCNAME} $* |
112 | then |
251 | |
|
|
252 | if [ -x /sbin/update-modules ] && \ |
|
|
253 | grep -v -e "^#" -e "^$" "${D}"/etc/modules.d/* >/dev/null 2>&1; then |
113 | ebegin "Updating modules.conf" |
254 | ebegin "Updating modules.conf" |
114 | /sbin/modules-update |
255 | /sbin/update-modules |
115 | eend $? |
256 | eend $? |
|
|
257 | elif [ -x /sbin/update-modules ] && \ |
|
|
258 | grep -v -e "^#" -e "^$" "${D}"/etc/modules.d/* >/dev/null 2>&1; then |
|
|
259 | ebegin "Updating modules.conf" |
|
|
260 | /sbin/update-modules |
|
|
261 | eend $? |
116 | fi |
262 | fi |
117 | } |
263 | } |
118 | |
264 | |
|
|
265 | # internal function |
|
|
266 | # |
|
|
267 | # FUNCTION: move_old_moduledb |
|
|
268 | # DESCRIPTION: |
|
|
269 | # It updates the location of the database used by the module-rebuild utility. |
|
|
270 | move_old_moduledb() { |
|
|
271 | debug-print-function ${FUNCNAME} $* |
|
|
272 | |
|
|
273 | local OLDDIR="${ROOT}"/usr/share/module-rebuild/ |
|
|
274 | local NEWDIR="${ROOT}"/var/lib/module-rebuild/ |
|
|
275 | |
|
|
276 | if [[ -f "${OLDDIR}"/moduledb ]]; then |
|
|
277 | [[ ! -d "${NEWDIR}" ]] && mkdir -p "${NEWDIR}" |
|
|
278 | [[ ! -f "${NEWDIR}"/moduledb ]] && \ |
|
|
279 | mv "${OLDDIR}"/moduledb "${NEWDIR}"/moduledb |
|
|
280 | rm -f "${OLDDIR}"/* |
|
|
281 | rmdir "${OLDDIR}" |
|
|
282 | fi |
|
|
283 | } |
|
|
284 | |
|
|
285 | # internal function |
|
|
286 | # |
|
|
287 | # FUNCTION: update_moduledb |
|
|
288 | # DESCRIPTION: |
|
|
289 | # It adds the package to the /var/lib/module-rebuild/moduledb database used by the module-rebuild utility. |
|
|
290 | update_moduledb() { |
|
|
291 | debug-print-function ${FUNCNAME} $* |
|
|
292 | |
|
|
293 | local MODULEDB_DIR="${ROOT}"/var/lib/module-rebuild/ |
|
|
294 | move_old_moduledb |
|
|
295 | |
|
|
296 | if [[ ! -f "${MODULEDB_DIR}"/moduledb ]]; then |
|
|
297 | [[ ! -d "${MODULEDB_DIR}" ]] && mkdir -p "${MODULEDB_DIR}" |
|
|
298 | touch "${MODULEDB_DIR}"/moduledb |
|
|
299 | fi |
|
|
300 | |
|
|
301 | if ! grep -qs ${CATEGORY}/${PN}-${PVR} "${MODULEDB_DIR}"/moduledb ; then |
|
|
302 | einfo "Adding module to moduledb." |
|
|
303 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> "${MODULEDB_DIR}"/moduledb |
|
|
304 | fi |
|
|
305 | } |
|
|
306 | |
|
|
307 | # internal function |
|
|
308 | # |
|
|
309 | # FUNCTION: remove_moduledb |
|
|
310 | # DESCRIPTION: |
|
|
311 | # It removes the package from the /var/lib/module-rebuild/moduledb database used by |
|
|
312 | # the module-rebuild utility. |
|
|
313 | remove_moduledb() { |
|
|
314 | debug-print-function ${FUNCNAME} $* |
|
|
315 | |
|
|
316 | local MODULEDB_DIR="${ROOT}"/var/lib/module-rebuild/ |
|
|
317 | move_old_moduledb |
|
|
318 | |
|
|
319 | if grep -qs ${CATEGORY}/${PN}-${PVR} "${MODULEDB_DIR}"/moduledb ; then |
|
|
320 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
|
|
321 | sed -i -e "/.*${CATEGORY}\/${PN}-${PVR}.*/d" "${MODULEDB_DIR}"/moduledb |
|
|
322 | fi |
|
|
323 | } |
|
|
324 | |
|
|
325 | # @FUNCTION: set_kvobj |
|
|
326 | # @DESCRIPTION: |
|
|
327 | # It sets the KV_OBJ variable. |
119 | set_kvobj() { |
328 | set_kvobj() { |
|
|
329 | debug-print-function ${FUNCNAME} $* |
|
|
330 | |
120 | if kernel_is 2 6 |
331 | if kernel_is 2 6 |
121 | then |
332 | then |
122 | KV_OBJ="ko" |
333 | KV_OBJ="ko" |
123 | else |
334 | else |
124 | KV_OBJ="o" |
335 | KV_OBJ="o" |
125 | fi |
336 | fi |
|
|
337 | # Do we really need to know this? |
|
|
338 | # Lets silence it. |
126 | einfo "Using KV_OBJ=${KV_OBJ}" |
339 | # einfo "Using KV_OBJ=${KV_OBJ}" |
127 | } |
340 | } |
128 | |
341 | |
|
|
342 | get-KERNEL_CC() { |
|
|
343 | debug-print-function ${FUNCNAME} $* |
|
|
344 | |
|
|
345 | if [[ -n ${KERNEL_CC} ]] ; then |
|
|
346 | echo "${KERNEL_CC}" |
|
|
347 | return |
|
|
348 | fi |
|
|
349 | |
|
|
350 | local kernel_cc |
|
|
351 | if [ -n "${KERNEL_ABI}" ]; then |
|
|
352 | # In future, an arch might want to define CC_$ABI |
|
|
353 | #kernel_cc="$(get_abi_CC)" |
|
|
354 | #[ -z "${kernel_cc}" ] && |
|
|
355 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
|
|
356 | else |
|
|
357 | kernel_cc=$(tc-getCC) |
|
|
358 | fi |
|
|
359 | echo "${kernel_cc}" |
|
|
360 | } |
|
|
361 | |
|
|
362 | # internal function |
|
|
363 | # |
|
|
364 | # FUNCTION: |
|
|
365 | # USAGE: /path/to/the/modulename_without_extension |
|
|
366 | # RETURN: A file in /etc/modules.d/ (kernel < 2.6) or /etc/modprobe.d/ (kernel >= 2.6) |
|
|
367 | # DESCRIPTION: |
|
|
368 | # This function will generate and install the neccessary modprobe.d/modules.d file from the |
|
|
369 | # information contained in the modules exported parms. |
|
|
370 | # (see the variables MODULESD_<modulename>_ENABLED, MODULESD_<modulename>_EXAMPLES, |
|
|
371 | # MODULESD_<modulename>_ALIASES, MODULESD_<modulename>_ADDITION and MODULESD_<modulename>_DOCS). |
|
|
372 | # |
|
|
373 | # At the end the documentation specified with MODULESD_<modulename>_DOCS is installed. |
129 | generate_modulesd() { |
374 | generate_modulesd() { |
130 | # This function will generate the neccessary modules.d file from the |
375 | debug-print-function ${FUNCNAME} $* |
131 | # information contained in the modules exported parms |
376 | |
132 | |
377 | local currm_path currm currm_t t myIFS myVAR |
133 | local selectedmodule selectedmodule_full selectedmodulevars parameter modinfop arg xifs temp |
|
|
134 | local module_docs module_opts module_aliases module_config |
378 | local module_docs module_enabled module_aliases \ |
135 | |
379 | module_additions module_examples module_modinfo module_opts |
136 | for arg in ${@} |
380 | |
|
|
381 | for currm_path in ${@} |
137 | do |
382 | do |
138 | selectedmodule_full="${arg}" |
383 | currm=${currm_path//*\/} |
139 | # strip the directory |
384 | currm=$(echo ${currm} | tr '[:lower:]' '[:upper:]') |
140 | selectedmodule="${selectedmodule_full/*\//}" |
385 | currm_t=${currm} |
141 | # convert the modulename to uppercase |
386 | while [[ -z ${currm_t//*-*} ]]; do |
142 | selectedmodule="$(echo ${selectedmodule} | tr '[:lower:]' '[:upper:]')" |
387 | currm_t=${currm_t/-/_} |
|
|
388 | done |
143 | |
389 | |
144 | module_docs="MODULESD_${selectedmodule}_DOCS" |
390 | module_docs="$(eval echo \${MODULESD_${currm_t}_DOCS})" |
|
|
391 | module_enabled="$(eval echo \${MODULESD_${currm_t}_ENABLED})" |
145 | module_aliases="$(eval echo \$\{#MODULESD_${selectedmodule}_ALIASES[*]\})" |
392 | module_aliases="$(eval echo \${#MODULESD_${currm_t}_ALIASES[*]})" |
|
|
393 | module_additions="$(eval echo \${#MODULESD_${currm_t}_ADDITIONS[*]})" |
|
|
394 | module_examples="$(eval echo \${#MODULESD_${currm_t}_EXAMPLES[*]})" |
|
|
395 | |
146 | [ ${module_aliases} == 0 ] && unset module_aliases |
396 | [[ ${module_aliases} -eq 0 ]] && unset module_aliases |
147 | module_docs="${!module_docs}" |
397 | [[ ${module_additions} -eq 0 ]] && unset module_additions |
148 | modinfop="$(modinfo -p ${selectedmodule_full}.${KV_OBJ})" |
398 | [[ ${module_examples} -eq 0 ]] && unset module_examples |
149 | |
399 | |
150 | # By now we know if there is anything we can use to generate a file with |
400 | # If we specify we dont want it, then lets exit, otherwise we assume |
151 | # so unset empty vars and bail out if we find nothing. |
401 | # that if its set, we do want it. |
|
|
402 | [[ ${module_enabled} == no ]] && return 0 |
|
|
403 | |
|
|
404 | # unset any unwanted variables. |
152 | for parameter in ${!module_*} |
405 | for t in ${!module_*} |
153 | do |
406 | do |
154 | [ -z "${!parameter}" ] && unset ${parameter} |
407 | [[ -z ${!t} ]] && unset ${t} |
155 | done |
408 | done |
156 | [ -z "${!module_*}" -a -z "${modinfop}" ] && return |
|
|
157 | |
409 | |
158 | #so now we can set the configfilevar |
410 | [[ -z ${!module_*} ]] && return 0 |
|
|
411 | |
|
|
412 | # OK so now if we have got this far, then we know we want to continue |
|
|
413 | # and generate the modules.d file. |
|
|
414 | module_modinfo="$(modinfo -p ${currm_path}.${KV_OBJ})" |
159 | module_config="${T}/modulesd-${selectedmodule}" |
415 | module_config="${T}/modulesd-${currm}" |
160 | |
416 | |
161 | # and being working on things. |
|
|
162 | ebegin "Preparing file for modules.d" |
417 | ebegin "Preparing file for modules.d" |
|
|
418 | #----------------------------------------------------------------------- |
163 | echo "# modules.d config file for ${selectedmodule}" >> ${module_config} |
419 | echo "# modules.d configuration file for ${currm}" >> "${module_config}" |
164 | echo "# this file was automatically generated from linux-mod.eclass" >> ${module_config} |
420 | #----------------------------------------------------------------------- |
|
|
421 | [[ -n ${module_docs} ]] && \ |
|
|
422 | echo "# For more information please read:" >> "${module_config}" |
165 | for temp in ${module_docs} |
423 | for t in ${module_docs} |
166 | do |
424 | do |
167 | echo "# Please read ${temp/*\//} for more info" >> ${module_config} |
425 | echo "# ${t//*\/}" >> "${module_config}" |
168 | done |
426 | done |
|
|
427 | echo >> "${module_config}" |
169 | |
428 | |
|
|
429 | #----------------------------------------------------------------------- |
170 | if [ ${module_aliases} > 0 ]; |
430 | if [[ ${module_aliases} -gt 0 ]] |
171 | then |
431 | then |
172 | echo >> ${module_config} |
|
|
173 | echo "# Internal Aliases - Do not edit" >> ${module_config} |
432 | echo "# Internal Aliases - Do not edit" >> "${module_config}" |
174 | echo "# ------------------------------" >> ${module_config} |
433 | echo "# ------------------------------" >> "${module_config}" |
175 | |
434 | |
176 | (( module_aliases-- )) |
435 | for((t=0; t<${module_aliases}; t++)) |
177 | for temp in $(seq 0 ${module_aliases}) |
|
|
178 | do |
436 | do |
179 | echo "alias $(eval echo \$\{MODULESD_${selectedmodule}_ALIASES[$temp]\})" >> ${module_config} |
437 | echo "alias $(eval echo \${MODULESD_${currm}_ALIASES[$t]})" \ |
|
|
438 | >> "${module_config}" |
180 | done |
439 | done |
|
|
440 | echo '' >> "${module_config}" |
181 | fi |
441 | fi |
182 | |
442 | |
183 | # and then stating any module parameters defined from the module |
443 | #----------------------------------------------------------------------- |
184 | if [ -n "${modinfop}" ]; |
444 | if [[ -n ${module_modinfo} ]] |
185 | then |
445 | then |
186 | echo >> ${module_config} |
446 | echo >> "${module_config}" |
187 | echo "# Configurable module parameters" >> ${module_config} |
447 | echo "# Configurable module parameters" >> "${module_config}" |
188 | echo "# ------------------------------" >> ${module_config} |
448 | echo "# ------------------------------" >> "${module_config}" |
189 | |
449 | myIFS="${IFS}" |
190 | xifs="${IFS}" |
|
|
191 | IFS="$(echo -en "\n\b")" |
450 | IFS="$(echo -en "\n\b")" |
192 | for parameter in ${modinfop} |
451 | |
|
|
452 | for t in ${module_modinfo} |
193 | do |
453 | do |
194 | temp="$(echo ${parameter#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
454 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
195 | if [ -n "${temp}" ]; |
455 | if [[ -n ${myVAR} ]] |
196 | then |
456 | then |
197 | module_opts="${module_opts} ${parameter%%:*}:${temp}" |
457 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
198 | fi |
458 | fi |
199 | echo -e "# ${parameter%%:*}:\t${parameter#*:}" >> ${module_config} |
459 | echo -e "# ${t%%:*}:\t${t#*:}" >> "${module_config}" |
200 | done |
460 | done |
201 | IFS="${xifs}" |
461 | IFS="${myIFS}" |
|
|
462 | echo '' >> "${module_config}" |
202 | fi |
463 | fi |
203 | |
464 | |
204 | # and any examples we can gather from them |
465 | #----------------------------------------------------------------------- |
205 | if [ -n "${module_opts}" ]; |
466 | if [[ $(eval echo \${MODULESD_${currm}_ALIASES[0]}) == guess ]] |
206 | then |
467 | then |
|
|
468 | # So lets do some guesswork eh? |
|
|
469 | if [[ -n ${module_opts} ]] |
|
|
470 | then |
|
|
471 | echo "# For Example..." >> "${module_config}" |
|
|
472 | echo "# --------------" >> "${module_config}" |
|
|
473 | for t in ${module_opts} |
|
|
474 | do |
|
|
475 | echo "# options ${currm} ${t//:*}=${t//*:}" >> "${module_config}" |
|
|
476 | done |
207 | echo >> ${module_config} |
477 | echo '' >> "${module_config}" |
|
|
478 | fi |
|
|
479 | elif [[ ${module_examples} -gt 0 ]] |
|
|
480 | then |
208 | echo "# For Example..." >> ${module_config} |
481 | echo "# For Example..." >> "${module_config}" |
209 | echo "# ------------------------------" >> ${module_config} |
482 | echo "# --------------" >> "${module_config}" |
210 | for parameter in ${module_opts} |
483 | for((t=0; t<${module_examples}; t++)) |
211 | do |
484 | do |
212 | echo "# options ${selectedmodule_full/*\//} ${parameter//:*}=${parameter//*:}" >> ${module_config} |
485 | echo "options $(eval echo \${MODULESD_${currm}_EXAMPLES[$t]})" \ |
|
|
486 | >> "${module_config}" |
213 | done |
487 | done |
|
|
488 | echo '' >> "${module_config}" |
214 | fi |
489 | fi |
215 | |
490 | |
|
|
491 | #----------------------------------------------------------------------- |
|
|
492 | if [[ ${module_additions} -gt 0 ]] |
|
|
493 | then |
|
|
494 | for((t=0; t<${module_additions}; t++)) |
|
|
495 | do |
|
|
496 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
|
|
497 | >> "${module_config}" |
|
|
498 | done |
|
|
499 | echo '' >> "${module_config}" |
|
|
500 | fi |
|
|
501 | |
|
|
502 | #----------------------------------------------------------------------- |
|
|
503 | |
216 | # then we install it |
504 | # then we install it |
|
|
505 | if kernel_is ge 2 6; then |
|
|
506 | insinto /etc/modprobe.d |
|
|
507 | else |
217 | insinto /etc/modules.d |
508 | insinto /etc/modules.d |
218 | newins ${module_config} ${selectedmodule_full/*\//} |
509 | fi |
219 | |
510 | newins "${module_config}" "${currm_path//*\/}.conf" |
|
|
511 | |
220 | # and install any documentation we might have. |
512 | # and install any documentation we might have. |
221 | [ -n "${module_docs}" ] && dodoc ${module_docs} |
513 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
222 | done |
514 | done |
223 | eend 0 |
515 | eend 0 |
|
|
516 | return 0 |
224 | } |
517 | } |
225 | |
518 | |
226 | display_postinst() { |
519 | # internal function |
227 | # if we haven't determined the version yet, we need too. |
520 | # |
228 | get_version; |
521 | # FUNCTION: find_module_params |
229 | |
522 | # USAGE: A string "NAME(LIBDIR:SRCDIR:OBJDIR)" |
230 | local modulename moduledir sourcedir moduletemp file i |
523 | # RETURN: The string "modulename:NAME libdir:LIBDIR srcdir:SRCDIR objdir:OBJDIR" |
231 | |
524 | # DESCRIPTION: |
232 | file=${ROOT}/etc/modules.autoload.d/kernel-${KV_MAJOR}.${KV_MINOR} |
525 | # Analyze the specification NAME(LIBDIR:SRCDIR:OBJDIR) of one module as described in MODULE_NAMES. |
233 | file=${file/\/\///} |
|
|
234 | |
|
|
235 | for i in ${MODULE_IGNORE} |
|
|
236 | do |
|
|
237 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
238 | done |
|
|
239 | |
|
|
240 | if [[ -n ${MODULE_NAMES} ]] |
|
|
241 | then |
|
|
242 | einfo "If you would like to load this module automatically upon boot" |
|
|
243 | einfo "please type the following as root:" |
|
|
244 | for i in ${MODULE_NAMES} |
|
|
245 | do |
|
|
246 | for n in $(find_module_params ${i}) |
|
|
247 | do |
|
|
248 | eval ${n/:*}=${n/*:/} |
|
|
249 | done |
|
|
250 | einfo " # echo \"${modulename}\" >> ${file}" |
|
|
251 | done |
|
|
252 | einfo |
|
|
253 | fi |
|
|
254 | } |
|
|
255 | |
|
|
256 | find_module_params() { |
526 | find_module_params() { |
|
|
527 | debug-print-function ${FUNCNAME} $* |
|
|
528 | |
257 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
529 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
258 | local i=0 y=0 z=0 |
530 | local i=0 y=0 z=0 |
259 | |
531 | |
260 | for((i=0; i<=${#test}; i++)) |
532 | for((i=0; i<=${#test}; i++)) |
261 | do |
533 | do |
262 | case ${test:${i}:1} in |
534 | case ${test:${i}:1} in |
263 | \() matched_offset[0]=${i};; |
535 | \() matched_offset[0]=${i};; |
264 | \:) matched_opts=$((${matched_opts} + 1)); |
536 | \:) matched_opts=$((${matched_opts} + 1)); |
265 | matched_offset[${matched_opts}]="${i}";; |
537 | matched_offset[${matched_opts}]="${i}";; |
266 | \)) matched_opts=$((${matched_opts} + 1)); |
538 | \)) matched_opts=$((${matched_opts} + 1)); |
267 | matched_offset[${matched_opts}]="${i}";; |
539 | matched_offset[${matched_opts}]="${i}";; |
268 | esac |
540 | esac |
269 | done |
541 | done |
270 | |
542 | |
271 | for((i=0; i<=${matched_opts}; i++)) |
543 | for((i=0; i<=${matched_opts}; i++)) |
272 | do |
544 | do |
273 | # i = offset were working on |
545 | # i = offset were working on |
274 | # y = last offset |
546 | # y = last offset |
275 | # z = current offset - last offset |
547 | # z = current offset - last offset |
… | |
… | |
279 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
551 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
280 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
552 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
281 | z=$((${z} - 1)) |
553 | z=$((${z} - 1)) |
282 | tempvar=${test:${y}:${z}};; |
554 | tempvar=${test:${y}:${z}};; |
283 | esac |
555 | esac |
284 | |
556 | |
285 | case ${i} in |
557 | case ${i} in |
286 | 0) result="${result} modulename:${tempvar}";; |
558 | 0) result="${result} modulename:${tempvar}";; |
287 | 1) result="${result} libdir:${tempvar}";; |
559 | 1) result="${result} libdir:${tempvar}";; |
288 | 2) result="${result} srcdir:${tempvar}";; |
560 | 2) result="${result} srcdir:${tempvar}";; |
289 | 3) result="${result} objdir:${tempvar}";; |
561 | 3) result="${result} objdir:${tempvar}";; |
290 | esac |
562 | esac |
291 | done |
563 | done |
292 | |
564 | |
293 | echo ${result} |
565 | echo ${result} |
294 | } |
566 | } |
295 | |
567 | |
296 | # default ebuild functions |
568 | # default ebuild functions |
297 | # -------------------------------- |
569 | # -------------------------------- |
298 | |
570 | |
|
|
571 | # @FUNCTION: linux-mod_pkg_setup |
|
|
572 | # @DESCRIPTION: |
|
|
573 | # It checks the CONFIG_CHECK options (see linux-info.eclass(5)), verifies that the kernel is |
|
|
574 | # configured, verifies that the sources are prepared, verifies that the modules support is builtin |
|
|
575 | # in the kernel and sets the object extension KV_OBJ. |
299 | linux-mod_pkg_setup() { |
576 | linux-mod_pkg_setup() { |
|
|
577 | debug-print-function ${FUNCNAME} $* |
|
|
578 | |
|
|
579 | # If we are installing a binpkg, take a different path. |
|
|
580 | if [[ $EMERGE_FROM == binary ]]; then |
|
|
581 | linux-mod_pkg_setup_binary |
|
|
582 | return |
|
|
583 | fi |
|
|
584 | |
300 | linux-info_pkg_setup; |
585 | linux-info_pkg_setup; |
|
|
586 | require_configured_kernel |
301 | check_kernel_built; |
587 | check_kernel_built; |
302 | check_modules_supported; |
588 | strip_modulenames; |
|
|
589 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
303 | set_kvobj; |
590 | set_kvobj; |
|
|
591 | # Commented out with permission from johnm until a fixed version for arches |
|
|
592 | # who intentionally use different kernel and userland compilers can be |
|
|
593 | # introduced - Jason Wever <weeve@gentoo.org>, 23 Oct 2005 |
|
|
594 | #check_vermagic; |
304 | } |
595 | } |
305 | |
596 | |
306 | linux-mod_src_compile() { |
597 | # @FUNCTION: linux-mod_pkg_setup_binary |
307 | local modulename libdir srcdir objdir i n myARCH=${ARCH} |
598 | # @DESCRIPTION: |
308 | unset ARCH |
599 | # Perform all kernel option checks non-fatally, as the .config and |
309 | |
600 | # /proc/config.gz might not be present. Do not do anything that requires kernel |
310 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
601 | # sources. |
311 | |
602 | linux-mod_pkg_setup_binary() { |
|
|
603 | debug-print-function ${FUNCNAME} $* |
|
|
604 | local new_CONFIG_CHECK |
|
|
605 | # ~ needs always to be quoted, else bash expands it. |
|
|
606 | for config in $CONFIG_CHECK ; do |
|
|
607 | optional='~' |
|
|
608 | [[ ${config:0:1} == "~" ]] && optional='' |
|
|
609 | new_CONFIG_CHECK="${new_CONFIG_CHECK} ${optional}${config}" |
|
|
610 | done |
|
|
611 | export CONFIG_CHECK="${new_CONFIG_CHECK}" |
|
|
612 | linux-info_pkg_setup; |
|
|
613 | } |
|
|
614 | |
|
|
615 | strip_modulenames() { |
|
|
616 | debug-print-function ${FUNCNAME} $* |
|
|
617 | |
|
|
618 | local i |
312 | for i in ${MODULE_IGNORE} |
619 | for i in ${MODULE_IGNORE}; do |
313 | do |
|
|
314 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
620 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
315 | done |
621 | done |
|
|
622 | } |
316 | |
623 | |
|
|
624 | # @FUNCTION: linux-mod_src_compile |
|
|
625 | # @DESCRIPTION: |
|
|
626 | # It compiles all the modules specified in MODULE_NAMES. For each module the econf command is |
|
|
627 | # executed only if ECONF_PARAMS is defined, the name of the target is specified by BUILD_TARGETS |
|
|
628 | # while the options are in BUILD_PARAMS (all the modules share these variables). The compilation |
|
|
629 | # happens inside ${srcdir}. |
|
|
630 | # |
|
|
631 | # Look at the description of these variables for more details. |
|
|
632 | linux-mod_src_compile() { |
|
|
633 | debug-print-function ${FUNCNAME} $* |
|
|
634 | |
|
|
635 | local modulename libdir srcdir objdir i n myABI="${ABI}" |
|
|
636 | set_arch_to_kernel |
|
|
637 | ABI="${KERNEL_ABI}" |
|
|
638 | |
|
|
639 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
|
|
640 | strip_modulenames; |
|
|
641 | cd "${S}" |
|
|
642 | touch Module.symvers |
317 | for i in ${MODULE_NAMES} |
643 | for i in ${MODULE_NAMES} |
318 | do |
644 | do |
|
|
645 | unset libdir srcdir objdir |
319 | for n in $(find_module_params ${i}) |
646 | for n in $(find_module_params ${i}) |
320 | do |
647 | do |
321 | eval ${n/:*}=${n/*:/} |
648 | eval ${n/:*}=${n/*:/} |
322 | done |
649 | done |
323 | libdir=${libdir:-misc} |
650 | libdir=${libdir:-misc} |
324 | srcdir=${srcdir:-${S}} |
651 | srcdir=${srcdir:-${S}} |
325 | objdir=${objdir:-${srcdir}} |
652 | objdir=${objdir:-${srcdir}} |
326 | |
653 | |
327 | if [ ! -f "${srcdir}/.built" ]; |
654 | if [ ! -f "${srcdir}/.built" ]; |
328 | then |
655 | then |
329 | cd ${srcdir} |
656 | cd "${srcdir}" |
|
|
657 | ln -s "${S}"/Module.symvers Module.symvers |
330 | einfo "Preparing ${modulename} module" |
658 | einfo "Preparing ${modulename} module" |
331 | if [[ -n ${ECONF_PARAMS} ]] |
659 | if [[ -n ${ECONF_PARAMS} ]] |
332 | then |
660 | then |
333 | econf ${ECONF_PARAMS} || \ |
661 | econf ${ECONF_PARAMS} || \ |
334 | die "Unable to run econf ${ECONF_PARAMS}" |
662 | die "Unable to run econf ${ECONF_PARAMS}" |
335 | fi |
663 | fi |
336 | |
664 | |
337 | emake ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
665 | # This looks messy, but it is needed to handle multiple variables |
338 | || die "Unable to make \ |
666 | # being passed in the BUILD_* stuff where the variables also have |
339 | ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}." |
667 | # spaces that must be preserved. If don't do this, then the stuff |
|
|
668 | # inside the variables gets used as targets for Make, which then |
|
|
669 | # fails. |
|
|
670 | eval "emake HOSTCC=\"$(tc-getBUILD_CC)\" \ |
|
|
671 | CROSS_COMPILE=${CHOST}- \ |
|
|
672 | LDFLAGS=\"$(get_abi_LDFLAGS)\" \ |
|
|
673 | ${BUILD_FIXES} \ |
|
|
674 | ${BUILD_PARAMS} \ |
|
|
675 | ${BUILD_TARGETS} " \ |
|
|
676 | || die "Unable to emake HOSTCC="$(tc-getBUILD_CC)" CROSS_COMPILE=${CHOST}- LDFLAGS="$(get_abi_LDFLAGS)" ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS}" |
|
|
677 | cd "${OLDPWD}" |
340 | touch ${srcdir}/.built |
678 | touch "${srcdir}"/.built |
341 | cd ${OLDPWD} |
|
|
342 | fi |
679 | fi |
343 | done |
680 | done |
344 | |
|
|
345 | ARCH=${myARCH} |
|
|
346 | } |
|
|
347 | |
681 | |
|
|
682 | set_arch_to_portage |
|
|
683 | ABI="${myABI}" |
|
|
684 | } |
|
|
685 | |
|
|
686 | # @FUNCTION: linux-mod_src_install |
|
|
687 | # @DESCRIPTION: |
|
|
688 | # It install the modules specified in MODULES_NAME. The modules should be inside the ${objdir} |
|
|
689 | # directory and they are installed inside /lib/modules/${KV_FULL}/${libdir}. |
|
|
690 | # |
|
|
691 | # The modprobe.d/modules.d configuration file is automatically generated if the |
|
|
692 | # MODULESD_<modulename>_* variables are defined. The only way to stop this process is by |
|
|
693 | # setting MODULESD_<modulename>_ENABLED=no. At the end the documentation specified via |
|
|
694 | # MODULESD_<modulename>_DOCS is also installed. |
|
|
695 | # |
|
|
696 | # Look at the description of these variables for more details. |
348 | linux-mod_src_install() { |
697 | linux-mod_src_install() { |
|
|
698 | debug-print-function ${FUNCNAME} $* |
|
|
699 | |
349 | local modulename libdir srcdir objdir i n |
700 | local modulename libdir srcdir objdir i n |
350 | |
|
|
351 | for i in ${MODULE_IGNORE} |
|
|
352 | do |
|
|
353 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
354 | done |
|
|
355 | |
701 | |
|
|
702 | strip_modulenames; |
356 | for i in ${MODULE_NAMES} |
703 | for i in ${MODULE_NAMES} |
357 | do |
704 | do |
|
|
705 | unset libdir srcdir objdir |
358 | for n in $(find_module_params ${i}) |
706 | for n in $(find_module_params ${i}) |
359 | do |
707 | do |
360 | eval ${n/:*}=${n/*:/} |
708 | eval ${n/:*}=${n/*:/} |
361 | done |
709 | done |
362 | libdir=${libdir:-misc} |
710 | libdir=${libdir:-misc} |
363 | srcdir=${srcdir:-${S}} |
711 | srcdir=${srcdir:-${S}} |
364 | objdir=${objdir:-${srcdir}} |
712 | objdir=${objdir:-${srcdir}} |
365 | |
713 | |
366 | einfo "Installing ${modulename} module" |
714 | einfo "Installing ${modulename} module" |
367 | cd ${objdir} |
715 | cd "${objdir}" || die "${objdir} does not exist" |
368 | |
|
|
369 | insinto /lib/modules/${KV_FULL}/${libdir} |
716 | insinto /lib/modules/${KV_FULL}/${libdir} |
370 | doins ${modulename}.${KV_OBJ} |
717 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
371 | cd ${OLDPWD} |
718 | cd "${OLDPWD}" |
372 | |
719 | |
373 | [ -z "${NO_MODULESD}" ] && generate_modulesd ${objdir}/${modulename} |
720 | generate_modulesd "${objdir}/${modulename}" |
374 | done |
721 | done |
375 | } |
722 | } |
376 | |
723 | |
|
|
724 | # @FUNCTION: linux-mod_pkg_preinst |
|
|
725 | # @DESCRIPTION: |
|
|
726 | # It checks what to do after having merged the package. |
|
|
727 | linux-mod_pkg_preinst() { |
|
|
728 | debug-print-function ${FUNCNAME} $* |
|
|
729 | |
|
|
730 | [ -d "${D}lib/modules" ] && UPDATE_DEPMOD=true || UPDATE_DEPMOD=false |
|
|
731 | [ -d "${D}etc/modules.d" ] && UPDATE_MODULES=true || UPDATE_MODULES=false |
|
|
732 | [ -d "${D}lib/modules" ] && UPDATE_MODULEDB=true || UPDATE_MODULEDB=false |
|
|
733 | } |
|
|
734 | |
|
|
735 | # @FUNCTION: linux-mod_pkg_postinst |
|
|
736 | # @DESCRIPTION: |
|
|
737 | # It executes /sbin/depmod and adds the package to the /var/lib/module-rebuild/moduledb |
|
|
738 | # database (if ${D}/lib/modules is created) and it runs /sbin/update-modules |
|
|
739 | # (if ${D}/etc/modules.d is created). |
377 | linux-mod_pkg_postinst() { |
740 | linux-mod_pkg_postinst() { |
378 | update_depmod; |
741 | debug-print-function ${FUNCNAME} $* |
379 | update_modules; |
742 | |
380 | display_postinst; |
743 | ${UPDATE_DEPMOD} && update_depmod; |
|
|
744 | ${UPDATE_MODULES} && update_modules; |
|
|
745 | ${UPDATE_MODULEDB} && update_moduledb; |
381 | } |
746 | } |
|
|
747 | |
|
|
748 | # @FUNCTION: linux-mod_pkg_postrm |
|
|
749 | # @DESCRIPTION: |
|
|
750 | # It removes the package from the /var/lib/module-rebuild/moduledb database but it doens't |
|
|
751 | # call /sbin/depmod and /sbin/update-modules because the modules are still installed. |
|
|
752 | linux-mod_pkg_postrm() { |
|
|
753 | debug-print-function ${FUNCNAME} $* |
|
|
754 | remove_moduledb; |
|
|
755 | } |