| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2012 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.54 2005/10/22 17:35:39 johnm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.107 2012/08/30 23:52:59 mpagano 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> |
|
|
| 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 module" |
|
|
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 | |
|
|
116 | # @ECLASS-VARIABLE: MODULESD_<modulename>_DOCS |
|
|
117 | # @DESCRIPTION: |
|
|
118 | # This is a string list which contains the full path to any associated |
|
|
119 | # documents for <modulename>. These files are installed in the live tree. |
| 81 | |
120 | |
| 82 | inherit linux-info |
121 | # @ECLASS-VARIABLE: KV_OBJ |
|
|
122 | # @DESCRIPTION: |
|
|
123 | # It's a read-only variable. It contains the extension of the kernel modules. |
|
|
124 | |
|
|
125 | inherit eutils linux-info multilib |
| 83 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile pkg_postrm |
126 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst src_install src_compile pkg_postrm |
| 84 | |
127 | |
| 85 | IUSE="" # don't put pcmcia here, rather in the ebuilds that actually support pcmcia |
128 | IUSE="kernel_linux" |
| 86 | SLOT="0" |
129 | SLOT="0" |
| 87 | DESCRIPTION="Based on the $ECLASS eclass" |
130 | DESCRIPTION="Based on the $ECLASS eclass" |
| 88 | RDEPEND="virtual/modutils |
131 | RDEPEND="kernel_linux? ( virtual/modutils )" |
| 89 | pcmcia? ( virtual/pcmcia )" |
132 | DEPEND="${RDEPEND} |
| 90 | DEPEND="virtual/linux-sources |
|
|
| 91 | sys-apps/sed |
133 | sys-apps/sed |
| 92 | pcmcia? ( virtual/pcmcia )" |
134 | kernel_linux? ( virtual/linux-sources )" |
| 93 | |
135 | |
| 94 | # eclass utilities |
136 | # eclass utilities |
| 95 | # ---------------------------------- |
137 | # ---------------------------------- |
| 96 | |
138 | |
| 97 | check_vermagic() { |
139 | check_vermagic() { |
|
|
140 | debug-print-function ${FUNCNAME} $* |
|
|
141 | |
| 98 | local curr_gcc_ver=$(gcc -dumpversion) |
142 | local curr_gcc_ver=$(gcc -dumpversion) |
| 99 | local tmpfile old_chost old_gcc_ver result=0 |
143 | local tmpfile old_chost old_gcc_ver result=0 |
| 100 | |
144 | |
| 101 | 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` |
| 102 | tmpfile=${tmpfile//*usr/lib} |
146 | tmpfile=${tmpfile//*usr/lib} |
| 103 | tmpfile=${tmpfile//\/include*} |
147 | tmpfile=${tmpfile//\/include*} |
| 104 | old_chost=${tmpfile//*gcc\/} |
148 | old_chost=${tmpfile//*gcc\/} |
| 105 | old_chost=${old_chost//\/*} |
149 | old_chost=${old_chost//\/*} |
| 106 | old_gcc_ver=${tmpfile//*\/} |
150 | old_gcc_ver=${tmpfile//*\/} |
| … | |
… | |
| 129 | ewarn "to match the kernel, or recompile the kernel first." |
173 | ewarn "to match the kernel, or recompile the kernel first." |
| 130 | die "GCC Version Mismatch." |
174 | die "GCC Version Mismatch." |
| 131 | fi |
175 | fi |
| 132 | } |
176 | } |
| 133 | |
177 | |
| 134 | unpack_pcmcia_sources() { |
178 | # @FUNCTION: use_m |
| 135 | # So while the two eclasses exist side-by-side and also the ebuilds inherit |
179 | # @RETURN: true or false |
| 136 | # both we need to check for PCMCIA_SOURCE_DIR, and if we find it, then we |
180 | # @DESCRIPTION: |
| 137 | # bail out and assume pcmcia.eclass is working on it. |
181 | # It checks if the kernel version is greater than 2.6.5. |
| 138 | [[ -n ${PCMCIA_SOURCE_DIR} ]] && return 1 |
|
|
| 139 | |
|
|
| 140 | if [[ -f "${1}" ]]; then |
|
|
| 141 | PCMCIA_SOURCE_DIR="${WORKDIR}/pcmcia-cs/" |
|
|
| 142 | |
|
|
| 143 | ebegin "Decompressing pcmcia-cs sources" |
|
|
| 144 | mkdir -p ${PCMCIA_SOURCE_DIR} |
|
|
| 145 | tar -xjf ${1} -C ${PCMCIA_SOURCE_DIR} |
|
|
| 146 | eend $? |
|
|
| 147 | |
|
|
| 148 | if [[ -f ${PCMCIA_SOURCE_DIR}/pcmcia-cs-version ]]; then |
|
|
| 149 | PCMCIA_VERSION=$(cat ${PCMCIA_SOURCE_DIR}/pcmcia-cs-version) |
|
|
| 150 | einfo "Found pcmcia-cs-${PCMCIA_VERSION}" |
|
|
| 151 | fi |
|
|
| 152 | fi |
|
|
| 153 | } |
|
|
| 154 | |
|
|
| 155 | # Dummy function for compatibility. |
|
|
| 156 | pcmcia_configure() { return 0; } |
|
|
| 157 | |
|
|
| 158 | pcmcia_src_unpack() { |
|
|
| 159 | local pcmcia_tbz="${ROOT}/usr/src/pcmcia-cs/pcmcia-cs-build-env.tbz2" |
|
|
| 160 | |
|
|
| 161 | # if the kernel has pcmcia support built in, then we just ignore all this. |
|
|
| 162 | if linux_chkconfig_present PCMCIA; then |
|
|
| 163 | einfo "Kernel based PCMCIA support has been detected." |
|
|
| 164 | else |
|
|
| 165 | if kernel_is 2 4; then |
|
|
| 166 | unpack_pcmcia_sources ${pcmcia_tbz}; |
|
|
| 167 | else |
|
|
| 168 | einfo "We have detected that you are running a 2.6 kernel" |
|
|
| 169 | einfo "but you are not using the built-in PCMCIA support." |
|
|
| 170 | einfo "We will assume you know what you are doing, but please" |
|
|
| 171 | einfo "consider using the built in PCMCIA support instead." |
|
|
| 172 | sleep 10 |
|
|
| 173 | |
|
|
| 174 | unpack_pcmcia_sources ${pcmcia_tbz}; |
|
|
| 175 | fi |
|
|
| 176 | fi |
|
|
| 177 | } |
|
|
| 178 | |
|
|
| 179 | use_m() { |
182 | use_m() { |
|
|
183 | debug-print-function ${FUNCNAME} $* |
|
|
184 | |
| 180 | # if we haven't determined the version yet, we need too. |
185 | # if we haven't determined the version yet, we need too. |
| 181 | get_version; |
186 | get_version; |
| 182 | |
187 | |
| 183 | # 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 |
| 184 | # M= instead of SUBDIRS= |
189 | # M= instead of SUBDIRS= |
|
|
190 | [ ${KV_MAJOR} -eq 3 ] && return 0 |
| 185 | [ ${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 ] && \ |
| 186 | return 0 || return 1 |
192 | return 0 || return 1 |
| 187 | } |
193 | } |
| 188 | |
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= |
| 189 | convert_to_m() { |
199 | convert_to_m() { |
|
|
200 | debug-print-function ${FUNCNAME} $* |
|
|
201 | |
| 190 | if use_m |
202 | if use_m |
| 191 | then |
203 | then |
| 192 | [ ! -f "${1}" ] && \ |
204 | [ ! -f "${1}" ] && \ |
| 193 | die "convert_to_m() requires a filename as an argument" |
205 | die "convert_to_m() requires a filename as an argument" |
| 194 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
206 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
| 195 | sed -i 's:SUBDIRS=:M=:g' ${1} |
207 | sed -i 's:SUBDIRS=:M=:g' "${1}" |
| 196 | eend $? |
208 | eend $? |
| 197 | fi |
209 | fi |
| 198 | } |
210 | } |
| 199 | |
211 | |
|
|
212 | # internal function |
|
|
213 | # |
|
|
214 | # FUNCTION: update_depmod |
|
|
215 | # DESCRIPTION: |
|
|
216 | # It updates the modules.dep file for the current kernel. |
| 200 | update_depmod() { |
217 | update_depmod() { |
|
|
218 | debug-print-function ${FUNCNAME} $* |
|
|
219 | |
| 201 | # if we haven't determined the version yet, we need too. |
220 | # if we haven't determined the version yet, we need too. |
| 202 | get_version; |
221 | get_version; |
| 203 | |
222 | |
| 204 | ebegin "Updating module dependencies for ${KV_FULL}" |
223 | ebegin "Updating module dependencies for ${KV_FULL}" |
| 205 | if [ -r ${KV_OUT_DIR}/System.map ] |
224 | if [ -r "${KV_OUT_DIR}"/System.map ] |
| 206 | then |
225 | then |
| 207 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
226 | depmod -ae -F "${KV_OUT_DIR}"/System.map -b "${ROOT}" ${KV_FULL} |
| 208 | eend $? |
227 | eend $? |
| 209 | else |
228 | else |
| 210 | ewarn |
229 | ewarn |
| 211 | ewarn "${KV_OUT_DIR}/System.map not found." |
230 | ewarn "${KV_OUT_DIR}/System.map not found." |
| 212 | ewarn "You must manually update the kernel module dependencies using depmod." |
231 | ewarn "You must manually update the kernel module dependencies using depmod." |
| 213 | eend 1 |
232 | eend 1 |
| 214 | ewarn |
233 | ewarn |
| 215 | fi |
234 | fi |
| 216 | } |
235 | } |
| 217 | |
236 | |
|
|
237 | # internal function |
|
|
238 | # |
|
|
239 | # FUNCTION: update_modules |
|
|
240 | # DESCRIPTION: |
|
|
241 | # It calls the update-modules utility. |
| 218 | update_modules() { |
242 | update_modules() { |
|
|
243 | debug-print-function ${FUNCNAME} $* |
|
|
244 | |
| 219 | if [ -x /sbin/modules-update ] && \ |
245 | if [ -x /sbin/update-modules ] && \ |
| 220 | 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 |
| 221 | ebegin "Updating modules.conf" |
247 | ebegin "Updating modules.conf" |
| 222 | /sbin/modules-update |
248 | /sbin/update-modules |
| 223 | 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 $? |
| 224 | fi |
255 | fi |
| 225 | } |
256 | } |
| 226 | |
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. |
| 227 | move_old_moduledb() { |
263 | move_old_moduledb() { |
|
|
264 | debug-print-function ${FUNCNAME} $* |
|
|
265 | |
| 228 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
266 | local OLDDIR="${ROOT}"/usr/share/module-rebuild/ |
| 229 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
267 | local NEWDIR="${ROOT}"/var/lib/module-rebuild/ |
| 230 | |
268 | |
| 231 | if [[ -f ${OLDDIR}/moduledb ]]; then |
269 | if [[ -f "${OLDDIR}"/moduledb ]]; then |
| 232 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
270 | [[ ! -d "${NEWDIR}" ]] && mkdir -p "${NEWDIR}" |
| 233 | [[ ! -f ${NEWDIR}/moduledb ]] && \ |
271 | [[ ! -f "${NEWDIR}"/moduledb ]] && \ |
| 234 | mv ${OLDDIR}/moduledb ${NEWDIR}/moduledb |
272 | mv "${OLDDIR}"/moduledb "${NEWDIR}"/moduledb |
| 235 | rm -f ${OLDDIR}/* |
273 | rm -f "${OLDDIR}"/* |
| 236 | rmdir ${OLDDIR} |
274 | rmdir "${OLDDIR}" |
| 237 | fi |
275 | fi |
| 238 | } |
276 | } |
| 239 | |
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. |
| 240 | update_moduledb() { |
283 | update_moduledb() { |
|
|
284 | debug-print-function ${FUNCNAME} $* |
|
|
285 | |
| 241 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
286 | local MODULEDB_DIR="${ROOT}"/var/lib/module-rebuild/ |
| 242 | move_old_moduledb |
287 | move_old_moduledb |
| 243 | |
288 | |
| 244 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
289 | if [[ ! -f "${MODULEDB_DIR}"/moduledb ]]; then |
| 245 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
290 | [[ ! -d "${MODULEDB_DIR}" ]] && mkdir -p "${MODULEDB_DIR}" |
| 246 | touch ${MODULEDB_DIR}/moduledb |
291 | touch "${MODULEDB_DIR}"/moduledb |
| 247 | fi |
292 | fi |
|
|
293 | |
| 248 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
294 | if ! grep -qs ${CATEGORY}/${PN}-${PVR} "${MODULEDB_DIR}"/moduledb ; then |
| 249 | einfo "Adding module to moduledb." |
295 | einfo "Adding module to moduledb." |
| 250 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
296 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> "${MODULEDB_DIR}"/moduledb |
| 251 | fi |
297 | fi |
| 252 | } |
298 | } |
| 253 | |
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. |
| 254 | remove_moduledb() { |
306 | remove_moduledb() { |
|
|
307 | debug-print-function ${FUNCNAME} $* |
|
|
308 | |
| 255 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
309 | local MODULEDB_DIR="${ROOT}"/var/lib/module-rebuild/ |
| 256 | move_old_moduledb |
310 | move_old_moduledb |
| 257 | |
311 | |
| 258 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
312 | if grep -qs ${CATEGORY}/${PN}-${PVR} "${MODULEDB_DIR}"/moduledb ; then |
| 259 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
313 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
| 260 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${MODULEDB_DIR}/moduledb |
314 | sed -i -e "/.*${CATEGORY}\/${PN}-${PVR}.*/d" "${MODULEDB_DIR}"/moduledb |
| 261 | fi |
315 | fi |
| 262 | } |
316 | } |
| 263 | |
317 | |
|
|
318 | # @FUNCTION: set_kvobj |
|
|
319 | # @DESCRIPTION: |
|
|
320 | # It sets the KV_OBJ variable. |
| 264 | set_kvobj() { |
321 | set_kvobj() { |
|
|
322 | debug-print-function ${FUNCNAME} $* |
|
|
323 | |
| 265 | if kernel_is 2 6 |
324 | if kernel_is ge 2 6 |
| 266 | then |
325 | then |
| 267 | KV_OBJ="ko" |
326 | KV_OBJ="ko" |
| 268 | else |
327 | else |
| 269 | KV_OBJ="o" |
328 | KV_OBJ="o" |
| 270 | fi |
329 | fi |
| 271 | # Do we really need to know this? |
330 | # Do we really need to know this? |
| 272 | # Lets silence it. |
331 | # Lets silence it. |
| 273 | # einfo "Using KV_OBJ=${KV_OBJ}" |
332 | # einfo "Using KV_OBJ=${KV_OBJ}" |
| 274 | } |
333 | } |
| 275 | |
334 | |
|
|
335 | get-KERNEL_CC() { |
|
|
336 | debug-print-function ${FUNCNAME} $* |
|
|
337 | |
|
|
338 | if [[ -n ${KERNEL_CC} ]] ; then |
|
|
339 | echo "${KERNEL_CC}" |
|
|
340 | return |
|
|
341 | fi |
|
|
342 | |
|
|
343 | local kernel_cc |
|
|
344 | if [ -n "${KERNEL_ABI}" ]; then |
|
|
345 | # In future, an arch might want to define CC_$ABI |
|
|
346 | #kernel_cc="$(get_abi_CC)" |
|
|
347 | #[ -z "${kernel_cc}" ] && |
|
|
348 | kernel_cc="$(tc-getCC $(ABI=${KERNEL_ABI} get_abi_CHOST))" |
|
|
349 | else |
|
|
350 | kernel_cc=$(tc-getCC) |
|
|
351 | fi |
|
|
352 | echo "${kernel_cc}" |
|
|
353 | } |
|
|
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. |
| 276 | generate_modulesd() { |
367 | generate_modulesd() { |
| 277 | # This function will generate the neccessary modules.d file from the |
368 | debug-print-function ${FUNCNAME} $* |
| 278 | # information contained in the modules exported parms |
|
|
| 279 | |
369 | |
| 280 | local currm_path currm currm_t t myIFS myVAR |
370 | local currm_path currm currm_t t myIFS myVAR |
| 281 | local module_docs module_enabled module_aliases \ |
371 | local module_docs module_enabled module_aliases \ |
| 282 | module_additions module_examples module_modinfo module_opts |
372 | module_additions module_examples module_modinfo module_opts |
| 283 | |
373 | |
| … | |
… | |
| 317 | module_modinfo="$(modinfo -p ${currm_path}.${KV_OBJ})" |
407 | module_modinfo="$(modinfo -p ${currm_path}.${KV_OBJ})" |
| 318 | module_config="${T}/modulesd-${currm}" |
408 | module_config="${T}/modulesd-${currm}" |
| 319 | |
409 | |
| 320 | ebegin "Preparing file for modules.d" |
410 | ebegin "Preparing file for modules.d" |
| 321 | #----------------------------------------------------------------------- |
411 | #----------------------------------------------------------------------- |
| 322 | echo "# modules.d configuration file for ${currm}" >> ${module_config} |
412 | echo "# modules.d configuration file for ${currm}" >> "${module_config}" |
| 323 | #----------------------------------------------------------------------- |
413 | #----------------------------------------------------------------------- |
| 324 | [[ -n ${module_docs} ]] && \ |
414 | [[ -n ${module_docs} ]] && \ |
| 325 | echo "# For more information please read:" >> ${module_config} |
415 | echo "# For more information please read:" >> "${module_config}" |
| 326 | for t in ${module_docs} |
416 | for t in ${module_docs} |
| 327 | do |
417 | do |
| 328 | echo "# ${t//*\/}" >> ${module_config} |
418 | echo "# ${t//*\/}" >> "${module_config}" |
| 329 | done |
419 | done |
| 330 | echo >> ${module_config} |
420 | echo >> "${module_config}" |
| 331 | |
421 | |
| 332 | #----------------------------------------------------------------------- |
422 | #----------------------------------------------------------------------- |
| 333 | if [[ ${module_aliases} -gt 0 ]] |
423 | if [[ ${module_aliases} -gt 0 ]] |
| 334 | then |
424 | then |
| 335 | echo "# Internal Aliases - Do not edit" >> ${module_config} |
425 | echo "# Internal Aliases - Do not edit" >> "${module_config}" |
| 336 | echo "# ------------------------------" >> ${module_config} |
426 | echo "# ------------------------------" >> "${module_config}" |
| 337 | |
427 | |
| 338 | for((t=0; t<${module_aliases}; t++)) |
428 | for((t=0; t<${module_aliases}; t++)) |
| 339 | do |
429 | do |
| 340 | echo "alias $(eval echo \${MODULESD_${currm}_ALIASES[$t]})" \ |
430 | echo "alias $(eval echo \${MODULESD_${currm}_ALIASES[$t]})" \ |
| 341 | >> ${module_config} |
431 | >> "${module_config}" |
| 342 | done |
432 | done |
| 343 | echo '' >> ${module_config} |
433 | echo '' >> "${module_config}" |
| 344 | fi |
434 | fi |
| 345 | |
435 | |
| 346 | #----------------------------------------------------------------------- |
436 | #----------------------------------------------------------------------- |
| 347 | if [[ -n ${module_modinfo} ]] |
437 | if [[ -n ${module_modinfo} ]] |
| 348 | then |
438 | then |
| 349 | echo >> ${module_config} |
439 | echo >> "${module_config}" |
| 350 | echo "# Configurable module parameters" >> ${module_config} |
440 | echo "# Configurable module parameters" >> "${module_config}" |
| 351 | echo "# ------------------------------" >> ${module_config} |
441 | echo "# ------------------------------" >> "${module_config}" |
| 352 | myIFS="${IFS}" |
442 | myIFS="${IFS}" |
| 353 | IFS="$(echo -en "\n\b")" |
443 | IFS="$(echo -en "\n\b")" |
| 354 | |
444 | |
| 355 | for t in ${module_modinfo} |
445 | for t in ${module_modinfo} |
| 356 | do |
446 | do |
| 357 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
447 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
| 358 | if [[ -n ${myVAR} ]] |
448 | if [[ -n ${myVAR} ]] |
| 359 | then |
449 | then |
| 360 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
450 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
| 361 | fi |
451 | fi |
| 362 | echo -e "# ${t%%:*}:\t${t#*:}" >> ${module_config} |
452 | echo -e "# ${t%%:*}:\t${t#*:}" >> "${module_config}" |
| 363 | done |
453 | done |
| 364 | IFS="${myIFS}" |
454 | IFS="${myIFS}" |
| 365 | echo '' >> ${module_config} |
455 | echo '' >> "${module_config}" |
| 366 | fi |
456 | fi |
| 367 | |
457 | |
| 368 | #----------------------------------------------------------------------- |
458 | #----------------------------------------------------------------------- |
| 369 | if [[ $(eval echo \${MODULESD_${currm}_ALIASES[0]}) == guess ]] |
459 | if [[ $(eval echo \${MODULESD_${currm}_ALIASES[0]}) == guess ]] |
| 370 | then |
460 | then |
| 371 | # So lets do some guesswork eh? |
461 | # So lets do some guesswork eh? |
| 372 | if [[ -n ${module_opts} ]] |
462 | if [[ -n ${module_opts} ]] |
| 373 | then |
463 | then |
| 374 | echo "# For Example..." >> ${module_config} |
464 | echo "# For Example..." >> "${module_config}" |
| 375 | echo "# --------------" >> ${module_config} |
465 | echo "# --------------" >> "${module_config}" |
| 376 | for t in ${module_opts} |
466 | for t in ${module_opts} |
| 377 | do |
467 | do |
| 378 | echo "# options ${currm} ${t//:*}=${t//*:}" >> ${module_config} |
468 | echo "# options ${currm} ${t//:*}=${t//*:}" >> "${module_config}" |
| 379 | done |
469 | done |
| 380 | echo '' >> ${module_config} |
470 | echo '' >> "${module_config}" |
| 381 | fi |
471 | fi |
| 382 | elif [[ ${module_examples} -gt 0 ]] |
472 | elif [[ ${module_examples} -gt 0 ]] |
| 383 | then |
473 | then |
| 384 | echo "# For Example..." >> ${module_config} |
474 | echo "# For Example..." >> "${module_config}" |
| 385 | echo "# --------------" >> ${module_config} |
475 | echo "# --------------" >> "${module_config}" |
| 386 | for((t=0; t<${module_examples}; t++)) |
476 | for((t=0; t<${module_examples}; t++)) |
| 387 | do |
477 | do |
| 388 | echo "options $(eval echo \${MODULESD_${currm}_EXAMPLES[$t]})" \ |
478 | echo "options $(eval echo \${MODULESD_${currm}_EXAMPLES[$t]})" \ |
| 389 | >> ${module_config} |
479 | >> "${module_config}" |
| 390 | done |
480 | done |
| 391 | echo '' >> ${module_config} |
481 | echo '' >> "${module_config}" |
| 392 | fi |
482 | fi |
| 393 | |
483 | |
| 394 | #----------------------------------------------------------------------- |
484 | #----------------------------------------------------------------------- |
| 395 | if [[ ${module_additions} -gt 0 ]] |
485 | if [[ ${module_additions} -gt 0 ]] |
| 396 | then |
486 | then |
| 397 | for((t=0; t<${module_additions}; t++)) |
487 | for((t=0; t<${module_additions}; t++)) |
| 398 | do |
488 | do |
| 399 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
489 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
| 400 | >> ${module_config} |
490 | >> "${module_config}" |
| 401 | done |
491 | done |
| 402 | echo '' >> ${module_config} |
492 | echo '' >> "${module_config}" |
| 403 | fi |
493 | fi |
| 404 | |
494 | |
| 405 | #----------------------------------------------------------------------- |
495 | #----------------------------------------------------------------------- |
| 406 | |
496 | |
| 407 | # then we install it |
497 | # then we install it |
|
|
498 | if kernel_is ge 2 6; then |
|
|
499 | insinto /etc/modprobe.d |
|
|
500 | else |
| 408 | insinto /etc/modules.d |
501 | insinto /etc/modules.d |
|
|
502 | fi |
| 409 | newins ${module_config} ${currm_path//*\/} |
503 | newins "${module_config}" "${currm_path//*\/}.conf" |
| 410 | |
504 | |
| 411 | # and install any documentation we might have. |
505 | # and install any documentation we might have. |
| 412 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
506 | [[ -n ${module_docs} ]] && dodoc ${module_docs} |
| 413 | done |
507 | done |
| 414 | eend 0 |
508 | eend 0 |
| 415 | return 0 |
509 | return 0 |
| 416 | } |
510 | } |
| 417 | |
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. |
| 418 | find_module_params() { |
519 | find_module_params() { |
|
|
520 | debug-print-function ${FUNCNAME} $* |
|
|
521 | |
| 419 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
522 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
| 420 | local i=0 y=0 z=0 |
523 | local i=0 y=0 z=0 |
| 421 | |
524 | |
| 422 | for((i=0; i<=${#test}; i++)) |
525 | for((i=0; i<=${#test}; i++)) |
| 423 | do |
526 | do |
| … | |
… | |
| 456 | } |
559 | } |
| 457 | |
560 | |
| 458 | # default ebuild functions |
561 | # default ebuild functions |
| 459 | # -------------------------------- |
562 | # -------------------------------- |
| 460 | |
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. |
| 461 | linux-mod_pkg_setup() { |
569 | linux-mod_pkg_setup() { |
|
|
570 | debug-print-function ${FUNCNAME} $* |
|
|
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 | |
| 462 | linux-info_pkg_setup; |
585 | linux-info_pkg_setup; |
|
|
586 | require_configured_kernel |
| 463 | check_kernel_built; |
587 | check_kernel_built; |
| 464 | check_modules_supported; |
588 | strip_modulenames; |
|
|
589 | [[ -n ${MODULE_NAMES} ]] && check_modules_supported |
| 465 | 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 |
| 466 | check_vermagic; |
594 | #check_vermagic; |
| 467 | } |
595 | } |
| 468 | |
596 | |
| 469 | linux-mod_src_compile() { |
597 | # @FUNCTION: linux-mod_pkg_setup_binary |
| 470 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" |
598 | # @DESCRIPTION: |
| 471 | ARCH="$(tc-arch-kernel)" |
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 | } |
| 472 | |
614 | |
| 473 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
615 | strip_modulenames() { |
|
|
616 | debug-print-function ${FUNCNAME} $* |
| 474 | |
617 | |
|
|
618 | local i |
| 475 | for i in ${MODULE_IGNORE} |
619 | for i in ${MODULE_IGNORE}; do |
| 476 | do |
|
|
| 477 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
620 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 478 | done |
621 | done |
|
|
622 | } |
| 479 | |
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 |
| 480 | for i in ${MODULE_NAMES} |
643 | for i in ${MODULE_NAMES} |
| 481 | do |
644 | do |
| 482 | unset libdir srcdir objdir |
645 | unset libdir srcdir objdir |
| 483 | for n in $(find_module_params ${i}) |
646 | for n in $(find_module_params ${i}) |
| 484 | do |
647 | do |
| … | |
… | |
| 488 | srcdir=${srcdir:-${S}} |
651 | srcdir=${srcdir:-${S}} |
| 489 | objdir=${objdir:-${srcdir}} |
652 | objdir=${objdir:-${srcdir}} |
| 490 | |
653 | |
| 491 | if [ ! -f "${srcdir}/.built" ]; |
654 | if [ ! -f "${srcdir}/.built" ]; |
| 492 | then |
655 | then |
| 493 | cd ${srcdir} |
656 | cd "${srcdir}" |
|
|
657 | ln -s "${S}"/Module.symvers Module.symvers |
| 494 | einfo "Preparing ${modulename} module" |
658 | einfo "Preparing ${modulename} module" |
| 495 | if [[ -n ${ECONF_PARAMS} ]] |
659 | if [[ -n ${ECONF_PARAMS} ]] |
| 496 | then |
660 | then |
| 497 | econf ${ECONF_PARAMS} || \ |
661 | econf ${ECONF_PARAMS} || \ |
| 498 | die "Unable to run econf ${ECONF_PARAMS}" |
662 | die "Unable to run econf ${ECONF_PARAMS}" |
| 499 | fi |
663 | fi |
| 500 | |
664 | |
| 501 | emake ${BUILD_FIXES} ${BUILD_PARAMS} ${BUILD_TARGETS} \ |
665 | # This looks messy, but it is needed to handle multiple variables |
| 502 | || die "Unable to make \ |
666 | # being passed in the BUILD_* stuff where the variables also have |
| 503 | ${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}" |
| 504 | touch ${srcdir}/.built |
678 | touch "${srcdir}"/.built |
| 505 | cd ${OLDPWD} |
|
|
| 506 | fi |
679 | fi |
| 507 | done |
680 | done |
| 508 | |
681 | |
| 509 | ARCH="${myARCH}" |
682 | set_arch_to_portage |
|
|
683 | ABI="${myABI}" |
| 510 | } |
684 | } |
| 511 | |
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. |
| 512 | linux-mod_src_install() { |
697 | linux-mod_src_install() { |
|
|
698 | debug-print-function ${FUNCNAME} $* |
|
|
699 | |
| 513 | local modulename libdir srcdir objdir i n |
700 | local modulename libdir srcdir objdir i n |
| 514 | |
701 | |
| 515 | for i in ${MODULE_IGNORE} |
702 | strip_modulenames; |
| 516 | do |
|
|
| 517 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
| 518 | done |
|
|
| 519 | |
|
|
| 520 | for i in ${MODULE_NAMES} |
703 | for i in ${MODULE_NAMES} |
| 521 | do |
704 | do |
| 522 | unset libdir srcdir objdir |
705 | unset libdir srcdir objdir |
| 523 | for n in $(find_module_params ${i}) |
706 | for n in $(find_module_params ${i}) |
| 524 | do |
707 | do |
| … | |
… | |
| 527 | libdir=${libdir:-misc} |
710 | libdir=${libdir:-misc} |
| 528 | srcdir=${srcdir:-${S}} |
711 | srcdir=${srcdir:-${S}} |
| 529 | objdir=${objdir:-${srcdir}} |
712 | objdir=${objdir:-${srcdir}} |
| 530 | |
713 | |
| 531 | einfo "Installing ${modulename} module" |
714 | einfo "Installing ${modulename} module" |
| 532 | cd ${objdir} |
715 | cd "${objdir}" || die "${objdir} does not exist" |
| 533 | insinto ${ROOT}lib/modules/${KV_FULL}/${libdir} |
716 | insinto /lib/modules/${KV_FULL}/${libdir} |
| 534 | doins ${modulename}.${KV_OBJ} |
717 | doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" |
| 535 | cd ${OLDPWD} |
718 | cd "${OLDPWD}" |
| 536 | |
719 | |
| 537 | generate_modulesd ${objdir}/${modulename} |
720 | generate_modulesd "${objdir}/${modulename}" |
| 538 | done |
721 | done |
| 539 | } |
722 | } |
| 540 | |
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). |
| 541 | linux-mod_pkg_postinst() { |
740 | linux-mod_pkg_postinst() { |
| 542 | update_depmod; |
741 | debug-print-function ${FUNCNAME} $* |
| 543 | update_modules; |
|
|
| 544 | update_moduledb; |
|
|
| 545 | } |
|
|
| 546 | |
742 | |
|
|
743 | ${UPDATE_DEPMOD} && update_depmod; |
|
|
744 | ${UPDATE_MODULES} && update_modules; |
|
|
745 | ${UPDATE_MODULEDB} && update_moduledb; |
|
|
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. |
| 547 | linux-mod_pkg_postrm() { |
752 | linux-mod_pkg_postrm() { |
|
|
753 | debug-print-function ${FUNCNAME} $* |
| 548 | remove_moduledb; |
754 | remove_moduledb; |
| 549 | } |
755 | } |