| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.30 2005/03/08 21:41:31 johnm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.54 2005/10/22 17:35:39 johnm Exp $ |
| 4 | |
4 | |
| 5 | # Description: This eclass is used to interface with linux-info in such a way |
5 | # Description: This eclass is used to interface with linux-info in such a way |
| 6 | # to provide the functionality required and initial functions |
6 | # to provide the functionality required and initial functions |
| 7 | # required to install external modules against a kernel source |
7 | # required to install external modules against a kernel source |
| 8 | # tree. |
8 | # tree. |
| … | |
… | |
| 12 | # |
12 | # |
| 13 | # Please direct your bugs to the current eclass maintainer :) |
13 | # Please direct your bugs to the current eclass maintainer :) |
| 14 | |
14 | |
| 15 | # A Couple of env vars are available to effect usage of this eclass |
15 | # A Couple of env vars are available to effect usage of this eclass |
| 16 | # These are as follows: |
16 | # These are as follows: |
| 17 | # |
17 | # |
| 18 | # Env Var Option Default Description |
18 | # Env Var Option Default Description |
| 19 | # KERNEL_DIR <string> /usr/src/linux The directory containing kernel |
19 | # KERNEL_DIR <string> /usr/src/linux The directory containing kernel |
| 20 | # the target kernel sources. |
20 | # the target kernel sources. |
| 21 | # ECONF_PARAMS <string> The parameters to pass to econf. |
21 | # ECONF_PARAMS <string> The parameters to pass to econf. |
| 22 | # If this is not set, then econf |
22 | # If this is not set, then econf |
| 23 | # isn't run. |
23 | # isn't run. |
| 24 | # BUILD_PARAMS <string> The parameters to pass to emake. |
24 | # BUILD_PARAMS <string> The parameters to pass to emake. |
| 25 | # BUILD_TARGETS <string> clean modules The build targets to pass to |
25 | # BUILD_TARGETS <string> clean modules The build targets to pass to |
| 26 | # make. |
26 | # make. |
| 27 | # MODULE_NAMES <string> This is the modules which are |
27 | # MODULE_NAMES <string> This is the modules which are |
| 28 | # to be built automatically using |
28 | # to be built automatically using |
| 29 | # the default pkg_compile/install. |
29 | # the default pkg_compile/install. |
| 30 | # They are explained properly |
30 | # They are explained properly |
| 31 | # below. It will only make |
31 | # below. It will only make |
| 32 | # BUILD_TARGETS once in any |
32 | # BUILD_TARGETS once in any |
| 33 | # directory. |
33 | # directory. |
| 34 | |
34 | |
| 35 | # MODULE_NAMES - Detailed Overview |
35 | # MODULE_NAMES - Detailed Overview |
| 36 | # |
36 | # |
| 37 | # The structure of each MODULE_NAMES entry is as follows: |
37 | # The structure of each MODULE_NAMES entry is as follows: |
| 38 | # modulename(libdir:srcdir:objdir) |
38 | # modulename(libdir:srcdir:objdir) |
| 39 | # for example: |
39 | # for example: |
| 40 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
40 | # MODULE_NAMES="module_pci(pci:${S}/pci:${S}) module_usb(usb:${S}/usb:${S})" |
| 41 | # |
41 | # |
| 42 | # what this would do is |
42 | # what this would do is |
| 43 | # cd ${S}/pci |
43 | # cd ${S}/pci |
| 44 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
44 | # make ${BUILD_PARAMS} ${BUILD_TARGETS} |
| 45 | # cd ${S} |
45 | # cd ${S} |
| 46 | # insinto /lib/modules/${KV_FULL}/pci |
46 | # insinto /lib/modules/${KV_FULL}/pci |
| … | |
… | |
| 78 | # the full path to any associated |
78 | # the full path to any associated |
| 79 | # documents for $modulename |
79 | # documents for $modulename |
| 80 | |
80 | |
| 81 | |
81 | |
| 82 | inherit linux-info |
82 | inherit linux-info |
| 83 | ECLASS=linux-mod |
|
|
| 84 | INHERITED="$INHERITED $ECLASS" |
|
|
| 85 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile \ |
83 | EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile pkg_postrm |
| 86 | src_compile_userland src_install_userland |
|
|
| 87 | |
84 | |
|
|
85 | IUSE="" # don't put pcmcia here, rather in the ebuilds that actually support pcmcia |
| 88 | SLOT="0" |
86 | SLOT="0" |
| 89 | DESCRIPTION="Based on the $ECLASS eclass" |
87 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
88 | RDEPEND="virtual/modutils |
|
|
89 | pcmcia? ( virtual/pcmcia )" |
| 90 | DEPEND="virtual/linux-sources |
90 | DEPEND="virtual/linux-sources |
| 91 | sys-apps/sed |
91 | sys-apps/sed |
| 92 | virtual/modutils" |
92 | pcmcia? ( virtual/pcmcia )" |
| 93 | |
|
|
| 94 | |
93 | |
| 95 | # eclass utilities |
94 | # eclass utilities |
| 96 | # ---------------------------------- |
95 | # ---------------------------------- |
|
|
96 | |
|
|
97 | check_vermagic() { |
|
|
98 | local curr_gcc_ver=$(gcc -dumpversion) |
|
|
99 | local tmpfile old_chost old_gcc_ver result=0 |
|
|
100 | |
|
|
101 | tmpfile=`find ${KV_DIR}/ -iname "*.o.cmd" -exec grep usr/lib/gcc {} \; -quit` |
|
|
102 | tmpfile=${tmpfile//*usr/lib} |
|
|
103 | tmpfile=${tmpfile//\/include*} |
|
|
104 | old_chost=${tmpfile//*gcc\/} |
|
|
105 | old_chost=${old_chost//\/*} |
|
|
106 | old_gcc_ver=${tmpfile//*\/} |
|
|
107 | |
|
|
108 | if [[ -z ${old_gcc_ver} || -z ${old_chost} ]]; then |
|
|
109 | ewarn "" |
|
|
110 | ewarn "Unable to detect what version of GCC was used to compile" |
|
|
111 | ewarn "the kernel. Build will continue, but you may experience problems." |
|
|
112 | elif [[ ${curr_gcc_ver} != ${old_gcc_ver} ]]; then |
|
|
113 | ewarn "" |
|
|
114 | ewarn "The version of GCC you are using (${curr_gcc_ver}) does" |
|
|
115 | ewarn "not match the version of GCC used to compile the" |
|
|
116 | ewarn "kernel (${old_gcc_ver})." |
|
|
117 | result=1 |
|
|
118 | elif [[ ${CHOST} != ${old_chost} ]]; then |
|
|
119 | ewarn "" |
|
|
120 | ewarn "The current CHOST (${CHOST}) does not match the chost" |
|
|
121 | ewarn "used when compiling the kernel (${old_chost})." |
|
|
122 | result=1 |
|
|
123 | fi |
|
|
124 | |
|
|
125 | if [[ ${result} -gt 0 ]]; then |
|
|
126 | ewarn "" |
|
|
127 | ewarn "Build will not continue, because you will experience problems." |
|
|
128 | ewarn "To fix this either change the version of GCC you wish to use" |
|
|
129 | ewarn "to match the kernel, or recompile the kernel first." |
|
|
130 | die "GCC Version Mismatch." |
|
|
131 | fi |
|
|
132 | } |
|
|
133 | |
|
|
134 | unpack_pcmcia_sources() { |
|
|
135 | # So while the two eclasses exist side-by-side and also the ebuilds inherit |
|
|
136 | # both we need to check for PCMCIA_SOURCE_DIR, and if we find it, then we |
|
|
137 | # bail out and assume pcmcia.eclass is working on it. |
|
|
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 | } |
| 97 | |
178 | |
| 98 | use_m() { |
179 | use_m() { |
| 99 | # if we haven't determined the version yet, we need too. |
180 | # if we haven't determined the version yet, we need too. |
| 100 | get_version; |
181 | get_version; |
| 101 | |
182 | |
| 102 | # if the kernel version is greater than 2.6.6 then we should use |
183 | # if the kernel version is greater than 2.6.6 then we should use |
| 103 | # M= instead of SUBDIRS= |
184 | # M= instead of SUBDIRS= |
| 104 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
185 | [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -gt 5 -a ${KV_PATCH} -gt 5 ] && \ |
| 105 | return 0 || return 1 |
186 | return 0 || return 1 |
| 106 | } |
187 | } |
| 107 | |
188 | |
| 108 | convert_to_m() { |
189 | convert_to_m() { |
| 109 | [ ! -f "${1}" ] && die "convert_to_m() requires a filename as an argument" |
|
|
| 110 | if use_m |
190 | if use_m |
| 111 | then |
191 | then |
|
|
192 | [ ! -f "${1}" ] && \ |
|
|
193 | die "convert_to_m() requires a filename as an argument" |
| 112 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
194 | ebegin "Converting ${1/${WORKDIR}\//} to use M= instead of SUBDIRS=" |
| 113 | sed -i 's:SUBDIRS=:M=:g' ${1} |
195 | sed -i 's:SUBDIRS=:M=:g' ${1} |
| 114 | eend $? |
196 | eend $? |
| 115 | fi |
197 | fi |
| 116 | } |
198 | } |
| 117 | |
199 | |
| 118 | update_depmod() { |
200 | update_depmod() { |
| 119 | # if we haven't determined the version yet, we need too. |
201 | # if we haven't determined the version yet, we need too. |
| 120 | get_version; |
202 | get_version; |
| 121 | |
203 | |
| 122 | ebegin "Updating module dependencies for ${KV_FULL}" |
204 | ebegin "Updating module dependencies for ${KV_FULL}" |
| 123 | if [ -r ${KV_OUT_DIR}/System.map ] |
205 | if [ -r ${KV_OUT_DIR}/System.map ] |
| 124 | then |
206 | then |
| 125 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
207 | depmod -ae -F ${KV_OUT_DIR}/System.map -b ${ROOT} -r ${KV_FULL} |
| 126 | eend $? |
208 | eend $? |
| … | |
… | |
| 132 | ewarn |
214 | ewarn |
| 133 | fi |
215 | fi |
| 134 | } |
216 | } |
| 135 | |
217 | |
| 136 | update_modules() { |
218 | update_modules() { |
| 137 | if [ -x /sbin/modules-update -a \ |
219 | if [ -x /sbin/modules-update ] && \ |
| 138 | -n "$(grep -v -e "^#" -e "^$" ${D}/etc/modules.d/*)" ] ; then |
220 | grep -v -e "^#" -e "^$" ${D}/etc/modules.d/* >/dev/null 2>&1; then |
| 139 | ebegin "Updating modules.conf" |
221 | ebegin "Updating modules.conf" |
| 140 | /sbin/modules-update |
222 | /sbin/modules-update |
| 141 | eend $? |
223 | eend $? |
|
|
224 | fi |
|
|
225 | } |
|
|
226 | |
|
|
227 | move_old_moduledb() { |
|
|
228 | local OLDDIR=${ROOT}/usr/share/module-rebuild/ |
|
|
229 | local NEWDIR=${ROOT}/var/lib/module-rebuild/ |
|
|
230 | |
|
|
231 | if [[ -f ${OLDDIR}/moduledb ]]; then |
|
|
232 | [[ ! -d ${NEWDIR} ]] && mkdir -p ${NEWDIR} |
|
|
233 | [[ ! -f ${NEWDIR}/moduledb ]] && \ |
|
|
234 | mv ${OLDDIR}/moduledb ${NEWDIR}/moduledb |
|
|
235 | rm -f ${OLDDIR}/* |
|
|
236 | rmdir ${OLDDIR} |
|
|
237 | fi |
|
|
238 | } |
|
|
239 | |
|
|
240 | update_moduledb() { |
|
|
241 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
|
|
242 | move_old_moduledb |
|
|
243 | |
|
|
244 | if [[ ! -f ${MODULEDB_DIR}/moduledb ]]; then |
|
|
245 | [[ ! -d ${MODULEDB_DIR} ]] && mkdir -p ${MODULEDB_DIR} |
|
|
246 | touch ${MODULEDB_DIR}/moduledb |
|
|
247 | fi |
|
|
248 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
|
|
249 | einfo "Adding module to moduledb." |
|
|
250 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${MODULEDB_DIR}/moduledb |
|
|
251 | fi |
|
|
252 | } |
|
|
253 | |
|
|
254 | remove_moduledb() { |
|
|
255 | local MODULEDB_DIR=${ROOT}/var/lib/module-rebuild/ |
|
|
256 | move_old_moduledb |
|
|
257 | |
|
|
258 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then |
|
|
259 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb." |
|
|
260 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${MODULEDB_DIR}/moduledb |
| 142 | fi |
261 | fi |
| 143 | } |
262 | } |
| 144 | |
263 | |
| 145 | set_kvobj() { |
264 | set_kvobj() { |
| 146 | if kernel_is 2 6 |
265 | if kernel_is 2 6 |
| … | |
… | |
| 156 | |
275 | |
| 157 | generate_modulesd() { |
276 | generate_modulesd() { |
| 158 | # This function will generate the neccessary modules.d file from the |
277 | # This function will generate the neccessary modules.d file from the |
| 159 | # information contained in the modules exported parms |
278 | # information contained in the modules exported parms |
| 160 | |
279 | |
| 161 | local currm_path currm t myIFS myVAR |
280 | local currm_path currm currm_t t myIFS myVAR |
| 162 | local module_docs module_enabled module_aliases \ |
281 | local module_docs module_enabled module_aliases \ |
| 163 | module_additions module_examples module_modinfo module_opts |
282 | module_additions module_examples module_modinfo module_opts |
| 164 | |
283 | |
| 165 | for currm_path in ${@} |
284 | for currm_path in ${@} |
| 166 | do |
285 | do |
| 167 | currm=${currm_path//*\/} |
286 | currm=${currm_path//*\/} |
| 168 | currm=$(echo ${currm} | tr '[:lower:]' '[:upper:]') |
287 | currm=$(echo ${currm} | tr '[:lower:]' '[:upper:]') |
|
|
288 | currm_t=${currm} |
|
|
289 | while [[ -z ${currm_t//*-*} ]]; do |
|
|
290 | currm_t=${currm_t/-/_} |
|
|
291 | done |
| 169 | |
292 | |
| 170 | module_docs="$(eval echo \${MODULESD_${currm}_DOCS})" |
293 | module_docs="$(eval echo \${MODULESD_${currm_t}_DOCS})" |
| 171 | module_enabled="$(eval echo \${MODULESD_${currm}_ENABLED})" |
294 | module_enabled="$(eval echo \${MODULESD_${currm_t}_ENABLED})" |
| 172 | module_aliases="$(eval echo \${#MODULESD_${currm/-/_}_ALIASES[*]})" |
295 | module_aliases="$(eval echo \${#MODULESD_${currm_t}_ALIASES[*]})" |
| 173 | module_additions="$(eval echo \${#MODULESD_${currm/-/_}_ADDITIONS[*]})" |
296 | module_additions="$(eval echo \${#MODULESD_${currm_t}_ADDITIONS[*]})" |
| 174 | module_examples="$(eval echo \${#MODULESD_${currm/-/_}_EXAMPLES[*]})" |
297 | module_examples="$(eval echo \${#MODULESD_${currm_t}_EXAMPLES[*]})" |
| 175 | |
298 | |
| 176 | [[ ${module_aliases} -eq 0 ]] && unset module_aliases |
299 | [[ ${module_aliases} -eq 0 ]] && unset module_aliases |
| 177 | [[ ${module_additions} -eq 0 ]] && unset module_additions |
300 | [[ ${module_additions} -eq 0 ]] && unset module_additions |
| 178 | [[ ${module_examples} -eq 0 ]] && unset module_examples |
301 | [[ ${module_examples} -eq 0 ]] && unset module_examples |
| 179 | |
302 | |
| 180 | # If we specify we dont want it, then lets exit, otherwise we assume |
303 | # If we specify we dont want it, then lets exit, otherwise we assume |
| 181 | # that if its set, we do want it. |
304 | # that if its set, we do want it. |
| 182 | [[ ${module_enabled} == no ]] && return 0 |
305 | [[ ${module_enabled} == no ]] && return 0 |
| 183 | |
306 | |
| 184 | # unset any unwanted variables. |
307 | # unset any unwanted variables. |
| 185 | for t in ${!module_*} |
308 | for t in ${!module_*} |
| … | |
… | |
| 226 | echo >> ${module_config} |
349 | echo >> ${module_config} |
| 227 | echo "# Configurable module parameters" >> ${module_config} |
350 | echo "# Configurable module parameters" >> ${module_config} |
| 228 | echo "# ------------------------------" >> ${module_config} |
351 | echo "# ------------------------------" >> ${module_config} |
| 229 | myIFS="${IFS}" |
352 | myIFS="${IFS}" |
| 230 | IFS="$(echo -en "\n\b")" |
353 | IFS="$(echo -en "\n\b")" |
| 231 | |
354 | |
| 232 | for t in ${module_modinfo} |
355 | for t in ${module_modinfo} |
| 233 | do |
356 | do |
| 234 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
357 | myVAR="$(echo ${t#*:} | grep -e " [0-9][ =]" | sed "s:.*\([01][= ]\).*:\1:")" |
| 235 | if [[ -n ${myVAR} ]] |
358 | if [[ -n ${myVAR} ]] |
| 236 | then |
359 | then |
| 237 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
360 | module_opts="${module_opts} ${t%%:*}:${myVAR}" |
| 238 | fi |
361 | fi |
| 239 | echo -e "# ${t%%:*}:\t${t#*:}" >> ${module_config} |
362 | echo -e "# ${t%%:*}:\t${t#*:}" >> ${module_config} |
| 240 | done |
363 | done |
| 241 | IFS="${myIFS}" |
364 | IFS="${myIFS}" |
| 242 | echo '' >> ${module_config} |
365 | echo '' >> ${module_config} |
| 243 | fi |
366 | fi |
| 244 | |
367 | |
| 245 | #----------------------------------------------------------------------- |
368 | #----------------------------------------------------------------------- |
| … | |
… | |
| 276 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
399 | echo "$(eval echo \${MODULESD_${currm}_ADDITIONS[$t]})" \ |
| 277 | >> ${module_config} |
400 | >> ${module_config} |
| 278 | done |
401 | done |
| 279 | echo '' >> ${module_config} |
402 | echo '' >> ${module_config} |
| 280 | fi |
403 | fi |
| 281 | |
404 | |
| 282 | #----------------------------------------------------------------------- |
405 | #----------------------------------------------------------------------- |
| 283 | |
406 | |
| 284 | # then we install it |
407 | # then we install it |
| 285 | insinto /etc/modules.d |
408 | insinto /etc/modules.d |
| 286 | newins ${module_config} ${currm_path//*\/} |
409 | newins ${module_config} ${currm_path//*\/} |
| … | |
… | |
| 290 | done |
413 | done |
| 291 | eend 0 |
414 | eend 0 |
| 292 | return 0 |
415 | return 0 |
| 293 | } |
416 | } |
| 294 | |
417 | |
| 295 | display_postinst() { |
|
|
| 296 | # if we haven't determined the version yet, we need too. |
|
|
| 297 | get_version; |
|
|
| 298 | |
|
|
| 299 | local modulename moduledir sourcedir moduletemp file i |
|
|
| 300 | |
|
|
| 301 | file=${ROOT}/etc/modules.autoload.d/kernel-${KV_MAJOR}.${KV_MINOR} |
|
|
| 302 | file=${file/\/\///} |
|
|
| 303 | |
|
|
| 304 | for i in ${MODULE_IGNORE} |
|
|
| 305 | do |
|
|
| 306 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
|
|
| 307 | done |
|
|
| 308 | |
|
|
| 309 | if [[ -n ${MODULE_NAMES} ]] |
|
|
| 310 | then |
|
|
| 311 | einfo "If you would like to load this module automatically upon boot" |
|
|
| 312 | einfo "please type the following as root:" |
|
|
| 313 | for i in ${MODULE_NAMES} |
|
|
| 314 | do |
|
|
| 315 | unset libdir srcdir objdir |
|
|
| 316 | for n in $(find_module_params ${i}) |
|
|
| 317 | do |
|
|
| 318 | eval ${n/:*}=${n/*:/} |
|
|
| 319 | done |
|
|
| 320 | einfo " # echo \"${modulename}\" >> ${file}" |
|
|
| 321 | done |
|
|
| 322 | einfo |
|
|
| 323 | fi |
|
|
| 324 | } |
|
|
| 325 | |
|
|
| 326 | find_module_params() { |
418 | find_module_params() { |
| 327 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
419 | local matched_offset=0 matched_opts=0 test="${@}" temp_var result |
| 328 | local i=0 y=0 z=0 |
420 | local i=0 y=0 z=0 |
| 329 | |
421 | |
| 330 | for((i=0; i<=${#test}; i++)) |
422 | for((i=0; i<=${#test}; i++)) |
| 331 | do |
423 | do |
| 332 | case ${test:${i}:1} in |
424 | case ${test:${i}:1} in |
| 333 | \() matched_offset[0]=${i};; |
425 | \() matched_offset[0]=${i};; |
| 334 | \:) matched_opts=$((${matched_opts} + 1)); |
426 | \:) matched_opts=$((${matched_opts} + 1)); |
| 335 | matched_offset[${matched_opts}]="${i}";; |
427 | matched_offset[${matched_opts}]="${i}";; |
| 336 | \)) matched_opts=$((${matched_opts} + 1)); |
428 | \)) matched_opts=$((${matched_opts} + 1)); |
| 337 | matched_offset[${matched_opts}]="${i}";; |
429 | matched_offset[${matched_opts}]="${i}";; |
| 338 | esac |
430 | esac |
| 339 | done |
431 | done |
| 340 | |
432 | |
| 341 | for((i=0; i<=${matched_opts}; i++)) |
433 | for((i=0; i<=${matched_opts}; i++)) |
| 342 | do |
434 | do |
| 343 | # i = offset were working on |
435 | # i = offset were working on |
| 344 | # y = last offset |
436 | # y = last offset |
| 345 | # z = current offset - last offset |
437 | # z = current offset - last offset |
| … | |
… | |
| 349 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
441 | *) y=$((${matched_offset[$((${i} - 1))]} + 1)) |
| 350 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
442 | z=$((${matched_offset[${i}]} - ${matched_offset[$((${i} - 1))]})); |
| 351 | z=$((${z} - 1)) |
443 | z=$((${z} - 1)) |
| 352 | tempvar=${test:${y}:${z}};; |
444 | tempvar=${test:${y}:${z}};; |
| 353 | esac |
445 | esac |
| 354 | |
446 | |
| 355 | case ${i} in |
447 | case ${i} in |
| 356 | 0) result="${result} modulename:${tempvar}";; |
448 | 0) result="${result} modulename:${tempvar}";; |
| 357 | 1) result="${result} libdir:${tempvar}";; |
449 | 1) result="${result} libdir:${tempvar}";; |
| 358 | 2) result="${result} srcdir:${tempvar}";; |
450 | 2) result="${result} srcdir:${tempvar}";; |
| 359 | 3) result="${result} objdir:${tempvar}";; |
451 | 3) result="${result} objdir:${tempvar}";; |
| 360 | esac |
452 | esac |
| 361 | done |
453 | done |
| 362 | |
454 | |
| 363 | echo ${result} |
455 | echo ${result} |
| 364 | } |
456 | } |
| 365 | |
457 | |
| 366 | # default ebuild functions |
458 | # default ebuild functions |
| 367 | # -------------------------------- |
459 | # -------------------------------- |
| … | |
… | |
| 369 | linux-mod_pkg_setup() { |
461 | linux-mod_pkg_setup() { |
| 370 | linux-info_pkg_setup; |
462 | linux-info_pkg_setup; |
| 371 | check_kernel_built; |
463 | check_kernel_built; |
| 372 | check_modules_supported; |
464 | check_modules_supported; |
| 373 | set_kvobj; |
465 | set_kvobj; |
| 374 | } |
466 | check_vermagic; |
| 375 | |
|
|
| 376 | linux-mod_src_compile_userland() { |
|
|
| 377 | return 0 |
|
|
| 378 | } |
|
|
| 379 | |
|
|
| 380 | linux-mod_src_install_userland() { |
|
|
| 381 | return 0 |
|
|
| 382 | } |
467 | } |
| 383 | |
468 | |
| 384 | linux-mod_src_compile() { |
469 | linux-mod_src_compile() { |
| 385 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" |
470 | local modulename libdir srcdir objdir i n myARCH="${ARCH}" |
| 386 | unset ARCH |
471 | ARCH="$(tc-arch-kernel)" |
| 387 | |
472 | |
| 388 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
473 | BUILD_TARGETS=${BUILD_TARGETS:-clean module} |
| 389 | |
474 | |
| 390 | for i in ${MODULE_IGNORE} |
475 | for i in ${MODULE_IGNORE} |
| 391 | do |
476 | do |
| 392 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
477 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 393 | done |
478 | done |
| 394 | |
479 | |
| … | |
… | |
| 400 | eval ${n/:*}=${n/*:/} |
485 | eval ${n/:*}=${n/*:/} |
| 401 | done |
486 | done |
| 402 | libdir=${libdir:-misc} |
487 | libdir=${libdir:-misc} |
| 403 | srcdir=${srcdir:-${S}} |
488 | srcdir=${srcdir:-${S}} |
| 404 | objdir=${objdir:-${srcdir}} |
489 | objdir=${objdir:-${srcdir}} |
| 405 | |
490 | |
| 406 | if [ ! -f "${srcdir}/.built" ]; |
491 | if [ ! -f "${srcdir}/.built" ]; |
| 407 | then |
492 | then |
| 408 | cd ${srcdir} |
493 | cd ${srcdir} |
| 409 | einfo "Preparing ${modulename} module" |
494 | einfo "Preparing ${modulename} module" |
| 410 | if [[ -n ${ECONF_PARAMS} ]] |
495 | if [[ -n ${ECONF_PARAMS} ]] |
| … | |
… | |
| 424 | ARCH="${myARCH}" |
509 | ARCH="${myARCH}" |
| 425 | } |
510 | } |
| 426 | |
511 | |
| 427 | linux-mod_src_install() { |
512 | linux-mod_src_install() { |
| 428 | local modulename libdir srcdir objdir i n |
513 | local modulename libdir srcdir objdir i n |
| 429 | |
514 | |
| 430 | for i in ${MODULE_IGNORE} |
515 | for i in ${MODULE_IGNORE} |
| 431 | do |
516 | do |
| 432 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
517 | MODULE_NAMES=${MODULE_NAMES//${i}(*} |
| 433 | done |
518 | done |
| 434 | |
519 | |
| … | |
… | |
| 446 | einfo "Installing ${modulename} module" |
531 | einfo "Installing ${modulename} module" |
| 447 | cd ${objdir} |
532 | cd ${objdir} |
| 448 | insinto ${ROOT}lib/modules/${KV_FULL}/${libdir} |
533 | insinto ${ROOT}lib/modules/${KV_FULL}/${libdir} |
| 449 | doins ${modulename}.${KV_OBJ} |
534 | doins ${modulename}.${KV_OBJ} |
| 450 | cd ${OLDPWD} |
535 | cd ${OLDPWD} |
| 451 | |
536 | |
| 452 | generate_modulesd ${objdir}/${modulename} |
537 | generate_modulesd ${objdir}/${modulename} |
| 453 | done |
538 | done |
| 454 | } |
539 | } |
| 455 | |
540 | |
| 456 | linux-mod_pkg_postinst() { |
541 | linux-mod_pkg_postinst() { |
| 457 | update_depmod; |
542 | update_depmod; |
| 458 | update_modules; |
543 | update_modules; |
| 459 | display_postinst; |
544 | update_moduledb; |
| 460 | } |
545 | } |
|
|
546 | |
|
|
547 | linux-mod_pkg_postrm() { |
|
|
548 | remove_moduledb; |
|
|
549 | } |