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