| 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-info.eclass,v 1.3 2004/11/27 11:26:52 johnm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.33 2005/12/30 18:22:44 johnm Exp $ |
| 4 | # |
4 | # |
| 5 | # This eclass provides functions for querying the installed kernel |
5 | # Description: This eclass is used as a central eclass for accessing kernel |
| 6 | # source version, selected kernel options etc. |
6 | # related information for sources already installed. |
|
|
7 | # It is vital for linux-mod to function correctly, and is split |
|
|
8 | # out so that any ebuild behaviour "templates" are abstracted out |
|
|
9 | # using additional eclasses. |
| 7 | # |
10 | # |
|
|
11 | # Maintainer: John Mylchreest <johnm@gentoo.org> |
|
|
12 | # Copyright 2004 Gentoo Linux |
|
|
13 | # |
|
|
14 | # Please direct your bugs to the current eclass maintainer :) |
| 8 | |
15 | |
| 9 | ECLASS=linux-info |
16 | # A Couple of env vars are available to effect usage of this eclass |
| 10 | INHERITED="$INHERITED $ECLASS" |
17 | # These are as follows: |
|
|
18 | # |
|
|
19 | # Env Var Option Description |
|
|
20 | # KERNEL_DIR <string> The directory containing kernel the target kernel |
|
|
21 | # sources. |
|
|
22 | # CONFIG_CHECK <string> a list of .config options to check for before |
|
|
23 | # proceeding with the install. ie: CONFIG_CHECK="MTRR" |
|
|
24 | # You can also check that an option doesn't exist by |
|
|
25 | # prepending it with an exclamation mark (!). |
|
|
26 | # ie: CONFIG_CHECK="!MTRR" |
|
|
27 | # ERROR_CFG <string> The error message to display when the above check |
|
|
28 | # fails. <CFG> should reference the appropriate option |
|
|
29 | # as above. ie: ERROR_MTRR="MTRR exists in the .config |
|
|
30 | # but shouldn't!!" |
|
|
31 | # KBUILD_OUTPUT <string> This is passed on commandline, or can be set from |
|
|
32 | # the kernel makefile. This contains the directory |
|
|
33 | # which is to be used as the kernel object directory. |
|
|
34 | |
|
|
35 | # There are also a couple of variables which are set by this, and shouldn't be |
|
|
36 | # set by hand. These are as follows: |
|
|
37 | # |
|
|
38 | # Env Var Option Description |
|
|
39 | # KV_FULL <string> The full kernel version. ie: 2.6.9-gentoo-johnm-r1 |
|
|
40 | # KV_MAJOR <integer> The kernel major version. ie: 2 |
|
|
41 | # KV_MINOR <integer> The kernel minor version. ie: 6 |
|
|
42 | # KV_PATCH <integer> The kernel patch version. ie: 9 |
|
|
43 | # KV_EXTRA <string> The kernel EXTRAVERSION. ie: -gentoo |
|
|
44 | # KV_LOCAL <string> The kernel LOCALVERSION concatenation. ie: -johnm |
|
|
45 | # KV_DIR <string> The kernel source directory, will be null if |
|
|
46 | # KERNEL_DIR is invalid. |
|
|
47 | # KV_OUT_DIR <string> The kernel object directory. will be KV_DIR unless |
|
|
48 | # koutput is used. This should be used for referencing |
|
|
49 | # .config. |
|
|
50 | |
|
|
51 | # And to ensure all the weirdness with crosscompile |
|
|
52 | inherit toolchain-funcs versionator |
|
|
53 | |
|
|
54 | EXPORT_FUNCTIONS pkg_setup |
| 11 | |
55 | |
| 12 | # Overwritable environment Var's |
56 | # Overwritable environment Var's |
| 13 | # --------------------------------------- |
57 | # --------------------------------------- |
| 14 | KERNEL_DIR="${KERNEL_DIR:-/usr/src/linux}" |
58 | KERNEL_DIR="${KERNEL_DIR:-${ROOT}usr/src/linux}" |
| 15 | |
59 | |
| 16 | |
60 | |
|
|
61 | # Bug fixes |
|
|
62 | # fix to bug #75034 |
|
|
63 | case ${ARCH} in |
|
|
64 | ppc) BUILD_FIXES="${BUILD_FIXES} TOUT=${T}/.tmp_gas_check";; |
|
|
65 | ppc64) BUILD_FIXES="${BUILD_FIXES} TOUT=${T}/.tmp_gas_check";; |
|
|
66 | esac |
|
|
67 | |
|
|
68 | # These are legacy wrappers for toolchain-funcs. |
|
|
69 | # I dont like them here, but oh well. |
|
|
70 | set_arch_to_kernel() { export ARCH="$(tc-arch-kernel)"; } |
|
|
71 | set_arch_to_portage() { export ARCH="$(tc-arch)"; } |
|
|
72 | |
|
|
73 | # qeinfo "Message" |
|
|
74 | # ------------------- |
|
|
75 | # qeinfo is a quiet einfo call when EBUILD_PHASE |
|
|
76 | # should not have visible output. |
|
|
77 | qout() { |
|
|
78 | local outputmsg type |
|
|
79 | type=${1} |
|
|
80 | shift |
|
|
81 | outputmsg="${@}" |
|
|
82 | case "${EBUILD_PHASE}" in |
|
|
83 | depend) unset outputmsg;; |
|
|
84 | clean) unset outputmsg;; |
|
|
85 | preinst) unset outputmsg;; |
|
|
86 | esac |
|
|
87 | [ -n "${outputmsg}" ] && ${type} "${outputmsg}" |
|
|
88 | } |
|
|
89 | |
|
|
90 | qeinfo() { qout einfo "${@}" ; } |
|
|
91 | qeerror() { qout eerror "${@}" ; } |
| 17 | |
92 | |
| 18 | # File Functions |
93 | # File Functions |
| 19 | # --------------------------------------- |
94 | # --------------------------------------- |
| 20 | |
95 | |
| 21 | # getfilevar accepts 2 vars as follows: |
96 | # getfilevar accepts 2 vars as follows: |
| 22 | # getfilevar <VARIABLE> <CONFIGFILE> |
97 | # getfilevar <VARIABLE> <CONFIGFILE> |
| 23 | |
98 | |
| 24 | getfilevar() { |
99 | getfilevar() { |
| 25 | local ERROR |
100 | local ERROR workingdir basefname basedname myARCH="${ARCH}" |
| 26 | ERROR=0 |
101 | ERROR=0 |
| 27 | |
102 | |
| 28 | [ -z "${1}" ] && ERROR=1 |
103 | [ -z "${1}" ] && ERROR=1 |
| 29 | [ -z "${2}" ] && ERROR=1 |
|
|
| 30 | [ ! -f "${2}" ] && ERROR=1 |
104 | [ ! -f "${2}" ] && ERROR=1 |
| 31 | |
105 | |
| 32 | if [ "${ERROR}" = 1 ] |
106 | if [ "${ERROR}" = 1 ] |
| 33 | then |
107 | then |
|
|
108 | echo -e "\n" |
| 34 | eerror "getfilevar requires 2 variables, with the second a valid file." |
109 | eerror "getfilevar requires 2 variables, with the second a valid file." |
| 35 | eerror " getfilevar <VARIABLE> <CONFIGFILE>" |
110 | eerror " getfilevar <VARIABLE> <CONFIGFILE>" |
| 36 | else |
111 | else |
| 37 | grep -e "^$1[= ]" $2 | sed 's: = :=:' | cut -d= -f2- |
112 | workingdir=${PWD} |
| 38 | fi |
113 | basefname=$(basename ${2}) |
| 39 | } |
114 | basedname=$(dirname ${2}) |
|
|
115 | unset ARCH |
| 40 | |
116 | |
| 41 | getfilevar_isset() { |
117 | cd ${basedname} |
|
|
118 | echo -e "include ${basefname}\ne:\n\t@echo \$(${1})" | \ |
|
|
119 | make ${BUILD_FIXES} -s -f - e 2>/dev/null |
|
|
120 | cd ${workingdir} |
|
|
121 | |
|
|
122 | ARCH=${myARCH} |
|
|
123 | fi |
|
|
124 | } |
|
|
125 | |
|
|
126 | linux_chkconfig_present() { |
| 42 | local RESULT |
127 | local RESULT |
| 43 | RESULT="$(getfilevar ${1} ${2})" |
128 | RESULT="$(getfilevar CONFIG_${1} ${KV_OUT_DIR}/.config)" |
| 44 | [ "${RESULT}" = "m" -o "${RESULT}" = "y" ] && return 0 || return 1 |
129 | [ "${RESULT}" = "m" -o "${RESULT}" = "y" ] && return 0 || return 1 |
| 45 | } |
130 | } |
| 46 | |
131 | |
| 47 | getfilevar_ismodule() { |
132 | linux_chkconfig_module() { |
| 48 | local RESULT |
133 | local RESULT |
| 49 | RESULT="$(getfilevar ${1} ${2})" |
134 | RESULT="$(getfilevar CONFIG_${1} ${KV_OUT_DIR}/.config)" |
| 50 | [ "${RESULT}" = "m" ] && return 0 || return 1 |
135 | [ "${RESULT}" = "m" ] && return 0 || return 1 |
| 51 | } |
136 | } |
| 52 | |
137 | |
| 53 | getfilevar_isbuiltin() { |
138 | linux_chkconfig_builtin() { |
| 54 | local RESULT |
139 | local RESULT |
| 55 | RESULT="$(getfilevar ${1} ${2})" |
140 | RESULT="$(getfilevar CONFIG_${1} ${KV_OUT_DIR}/.config)" |
| 56 | [ "${RESULT}" = "y" ] && return 0 || return 1 |
141 | [ "${RESULT}" = "y" ] && return 0 || return 1 |
|
|
142 | } |
|
|
143 | |
|
|
144 | linux_chkconfig_string() { |
|
|
145 | getfilevar "CONFIG_${1}" "${KV_OUT_DIR}/.config" |
| 57 | } |
146 | } |
| 58 | |
147 | |
| 59 | # Versioning Functions |
148 | # Versioning Functions |
| 60 | # --------------------------------------- |
149 | # --------------------------------------- |
| 61 | |
150 | |
| … | |
… | |
| 71 | # got the jist yet? |
160 | # got the jist yet? |
| 72 | |
161 | |
| 73 | kernel_is() { |
162 | kernel_is() { |
| 74 | # if we haven't determined the version yet, we need too. |
163 | # if we haven't determined the version yet, we need too. |
| 75 | get_version; |
164 | get_version; |
| 76 | |
165 | local operator test value x=0 y=0 z=0 |
| 77 | local RESULT |
166 | |
| 78 | RESULT=1 |
167 | case ${1} in |
| 79 | |
168 | lt) operator="-lt"; shift;; |
| 80 | if [ -n "${1}" ] |
169 | gt) operator="-gt"; shift;; |
| 81 | then |
170 | le) operator="-le"; shift;; |
| 82 | [ "${1}" = "${KV_MAJOR}" ] && RESULT=0 |
171 | ge) operator="-ge"; shift;; |
| 83 | fi |
172 | eq) operator="-eq"; shift;; |
| 84 | |
173 | *) operator="-eq";; |
| 85 | if [ -n "${2}" ] |
174 | esac |
| 86 | then |
175 | |
| 87 | RESULT=1 |
176 | for x in ${@}; do |
| 88 | [ "${2}" = "${KV_MINOR}" ] && RESULT=0 |
177 | for((y=0; y<$((3 - ${#x})); y++)); do value="${value}0"; done |
| 89 | fi |
178 | value="${value}${x}" |
| 90 | |
179 | z=$((${z} + 1)) |
| 91 | if [ -n "${3}" ] |
180 | |
| 92 | then |
181 | case ${z} in |
| 93 | RESULT=1 |
182 | 1) for((y=0; y<$((3 - ${#KV_MAJOR})); y++)); do test="${test}0"; done; |
| 94 | [ "${3}" = "${KV_PATCH}" ] && RESULT=0 |
183 | test="${test}${KV_MAJOR}";; |
| 95 | fi |
184 | 2) for((y=0; y<$((3 - ${#KV_MINOR})); y++)); do test="${test}0"; done; |
| 96 | return ${RESULT} |
185 | test="${test}${KV_MINOR}";; |
|
|
186 | 3) for((y=0; y<$((3 - ${#KV_PATCH})); y++)); do test="${test}0"; done; |
|
|
187 | test="${test}${KV_PATCH}";; |
|
|
188 | *) die "Error in kernel-2_kernel_is(): Too many parameters.";; |
|
|
189 | esac |
|
|
190 | done |
|
|
191 | |
|
|
192 | [ ${test} ${operator} ${value} ] && return 0 || return 1 |
|
|
193 | } |
|
|
194 | |
|
|
195 | get_localversion() { |
|
|
196 | local lv_list i x |
|
|
197 | |
|
|
198 | # ignore files with ~ in it. |
|
|
199 | for i in $(ls ${1}/localversion* 2>/dev/null); do |
|
|
200 | [[ -n ${i//*~*} ]] && lv_list="${lv_list} ${i}" |
|
|
201 | done |
|
|
202 | |
|
|
203 | for i in ${lv_list}; do |
|
|
204 | x="${x}$(<${i})" |
|
|
205 | done |
|
|
206 | x=${x/ /} |
|
|
207 | echo ${x} |
| 97 | } |
208 | } |
| 98 | |
209 | |
| 99 | get_version() { |
210 | get_version() { |
|
|
211 | local kbuild_output |
|
|
212 | |
| 100 | # no need to execute this twice assuming KV_FULL is populated. |
213 | # no need to execute this twice assuming KV_FULL is populated. |
| 101 | # we can force by unsetting KV_FULL |
214 | # we can force by unsetting KV_FULL |
| 102 | if [ -n "${KV_FULL}" ] |
215 | [ -n "${KV_FULL}" ] && return 0 |
| 103 | then |
|
|
| 104 | # Lets keep this quiet eh? |
|
|
| 105 | # einfo "\${KV_FULL} is already set. Not running get_version again" |
|
|
| 106 | return |
|
|
| 107 | fi |
|
|
| 108 | |
216 | |
| 109 | # if we dont know KV_FULL, then we need too. |
217 | # if we dont know KV_FULL, then we need too. |
| 110 | # make sure KV_DIR isnt set since we need to work it out via KERNEL_DIR |
218 | # make sure KV_DIR isnt set since we need to work it out via KERNEL_DIR |
| 111 | unset KV_DIR |
219 | unset KV_DIR |
| 112 | |
220 | |
| 113 | # KV_DIR will contain the full path to the sources directory we should use |
221 | # KV_DIR will contain the full path to the sources directory we should use |
| 114 | einfo "Determining the location of the kernel source code" |
222 | qeinfo "Determining the location of the kernel source code" |
| 115 | [ -h "${KERNEL_DIR}" ] && KV_DIR="$(readlink -f ${KERNEL_DIR})" |
223 | [ -h "${KERNEL_DIR}" ] && KV_DIR="$(readlink -f ${KERNEL_DIR})" |
| 116 | [ -d "${KERNEL_DIR}" ] && KV_DIR="${KERNEL_DIR}" |
224 | [ -d "${KERNEL_DIR}" ] && KV_DIR="${KERNEL_DIR}" |
| 117 | |
225 | |
| 118 | if [ -z "${KV_DIR}" ] |
226 | if [ -z "${KV_DIR}" ] |
| 119 | then |
227 | then |
| 120 | eerror "Unable to find kernel sources at ${KERNEL_DIR}" |
228 | qeerror "Unable to find kernel sources at ${KERNEL_DIR}" |
| 121 | die |
229 | qeinfo "This package requires Linux sources." |
|
|
230 | if [ "${KERNEL_DIR}" == "/usr/src/linux" ] ; then |
|
|
231 | qeinfo "Please make sure that ${KERNEL_DIR} points at your running kernel, " |
|
|
232 | qeinfo "(or the kernel you wish to build against)." |
|
|
233 | qeinfo "Alternatively, set the KERNEL_DIR environment variable to the kernel sources location" |
|
|
234 | else |
|
|
235 | qeinfo "Please ensure that the KERNEL_DIR environment variable points at full Linux sources of the kernel you wish to compile against." |
| 122 | fi |
236 | fi |
| 123 | |
237 | return 1 |
|
|
238 | fi |
|
|
239 | |
|
|
240 | qeinfo "Found kernel source directory:" |
|
|
241 | qeinfo " ${KV_DIR}" |
|
|
242 | |
|
|
243 | if [ ! -s "${KV_DIR}/Makefile" ] |
|
|
244 | then |
|
|
245 | qeerror "Could not find a Makefile in the kernel source directory." |
|
|
246 | qeerror "Please ensure that ${KERNEL_DIR} points to a complete set of Linux sources" |
|
|
247 | return 1 |
|
|
248 | fi |
|
|
249 | |
|
|
250 | # OK so now we know our sources directory, but they might be using |
|
|
251 | # KBUILD_OUTPUT, and we need this for .config and localversions-* |
|
|
252 | # so we better find it eh? |
|
|
253 | # do we pass KBUILD_OUTPUT on the CLI? |
|
|
254 | OUTPUT_DIR="${OUTPUT_DIR:-${KBUILD_OUTPUT}}" |
|
|
255 | |
|
|
256 | # And if we didn't pass it, we can take a nosey in the Makefile |
|
|
257 | kbuild_output="$(getfilevar KBUILD_OUTPUT ${KV_DIR}/Makefile)" |
|
|
258 | OUTPUT_DIR="${OUTPUT_DIR:-${kbuild_output}}" |
|
|
259 | |
| 124 | # And contrary to existing functions I feel we shouldn't trust the |
260 | # And contrary to existing functions I feel we shouldn't trust the |
| 125 | # directory name to find version information as this seems insane. |
261 | # directory name to find version information as this seems insane. |
| 126 | # so we parse ${KV_DIR}/Makefile |
262 | # so we parse ${KV_DIR}/Makefile |
| 127 | KV_MAJOR="$(getfilevar VERSION ${KV_DIR}/Makefile)" |
263 | KV_MAJOR="$(getfilevar VERSION ${KV_DIR}/Makefile)" |
| 128 | KV_MINOR="$(getfilevar PATCHLEVEL ${KV_DIR}/Makefile)" |
264 | KV_MINOR="$(getfilevar PATCHLEVEL ${KV_DIR}/Makefile)" |
| 129 | KV_PATCH="$(getfilevar SUBLEVEL ${KV_DIR}/Makefile)" |
265 | KV_PATCH="$(getfilevar SUBLEVEL ${KV_DIR}/Makefile)" |
| 130 | KV_EXTRA="$(getfilevar EXTRAVERSION ${KV_DIR}/Makefile)" |
266 | KV_EXTRA="$(getfilevar EXTRAVERSION ${KV_DIR}/Makefile)" |
|
|
267 | |
|
|
268 | if [ -z "${KV_MAJOR}" -o -z "${KV_MINOR}" -o -z "${KV_PATCH}" ] |
|
|
269 | then |
|
|
270 | qeerror "Could not detect kernel version." |
|
|
271 | qeerror "Please ensure that ${KERNEL_DIR} points to a complete set of Linux sources." |
|
|
272 | return 1 |
|
|
273 | fi |
|
|
274 | |
| 131 | # and in newer versions we can also pull LOCALVERSION if it is set. |
275 | # and in newer versions we can also pull LOCALVERSION if it is set. |
| 132 | KV_LOCAL="$(cat ${KV_DIR}/localversion* 2>/dev/null)$(getfilevar CONFIG_LOCALVERSION ${KV_DIR}/.config | sed 's:"::g')" |
276 | # but before we do this, we need to find if we use a different object directory. |
| 133 | |
277 | # This *WILL* break if the user is using localversions, but we assume it was |
|
|
278 | # caught before this if they are. |
|
|
279 | [ "${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.${KV_EXTRA}" == "$(uname -r)" ] && \ |
|
|
280 | OUTPUT_DIR="${OUTPUT_DIR:-/lib/modules/${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.${KV_EXTRA}/build}" |
|
|
281 | |
|
|
282 | [ -h "${OUTPUT_DIR}" ] && KV_OUT_DIR="$(readlink -f ${OUTPUT_DIR})" |
|
|
283 | [ -d "${OUTPUT_DIR}" ] && KV_OUT_DIR="${OUTPUT_DIR}" |
|
|
284 | if [ -n "${KV_OUT_DIR}" ]; |
|
|
285 | then |
|
|
286 | qeinfo "Found kernel object directory:" |
|
|
287 | qeinfo " ${KV_OUT_DIR}" |
|
|
288 | |
|
|
289 | KV_LOCAL="$(get_localversion ${KV_OUT_DIR})" |
|
|
290 | fi |
|
|
291 | # and if we STILL haven't got it, then we better just set it to KV_DIR |
|
|
292 | KV_OUT_DIR="${KV_OUT_DIR:-${KV_DIR}}" |
|
|
293 | |
|
|
294 | KV_LOCAL="${KV_LOCAL}$(get_localversion ${KV_DIR})" |
|
|
295 | KV_LOCAL="${KV_LOCAL}$(linux_chkconfig_string LOCALVERSION)" |
|
|
296 | KV_LOCAL="${KV_LOCAL//\"/}" |
|
|
297 | |
| 134 | # And we should set KV_FULL to the full expanded version |
298 | # And we should set KV_FULL to the full expanded version |
| 135 | KV_FULL="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${KV_EXTRA}${KV_LOCAL}" |
299 | KV_FULL="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${KV_EXTRA}${KV_LOCAL}" |
| 136 | |
300 | |
| 137 | if [ -z "${KV_FULL}" ] |
301 | qeinfo "Found sources for kernel version:" |
|
|
302 | qeinfo " ${KV_FULL}" |
|
|
303 | |
|
|
304 | if [ ! -s "${KV_OUT_DIR}/.config" ] |
| 138 | then |
305 | then |
| 139 | eerror "We are unable to find a usable kernel source tree in ${KV_DIR}" |
306 | qeerror "Could not find a usable .config in the kernel source directory." |
| 140 | eerror "Please check a kernel source exists in this directory." |
307 | qeerror "Please ensure that ${KERNEL_DIR} points to a configured set of Linux sources." |
| 141 | die |
308 | qeerror "If you are using KBUILD_OUTPUT, please set the environment var so that" |
|
|
309 | qeerror "it points to the necessary object directory so that it might find .config." |
|
|
310 | return 1 |
|
|
311 | fi |
|
|
312 | |
|
|
313 | return 0 |
|
|
314 | } |
|
|
315 | |
|
|
316 | get_running_version() { |
|
|
317 | KV_FULL=$(uname -r) |
|
|
318 | |
|
|
319 | if [[ -f ${ROOT}/lib/modules/${KV_FULL}/source/Makefile ]]; then |
|
|
320 | KERNEL_DIR=$(readlink -f ${ROOT}/lib/modules/${KV_FULL}/source) |
|
|
321 | unset KV_FULL |
|
|
322 | get_version |
|
|
323 | return $? |
|
|
324 | elif [[ -f ${ROOT}/lib/modules/${KV_FULL}/build/Makefile ]]; then |
|
|
325 | KERNEL_DIR=$(readlink -f ${ROOT}/lib/modules/${KV_FULL}/build) |
|
|
326 | unset KV_FULL |
|
|
327 | get_version |
|
|
328 | return $? |
| 142 | else |
329 | else |
| 143 | einfo "Found kernel source directory:" |
330 | KV_MAJOR=$(get_version_component_range 1 ${KV_FULL}) |
| 144 | einfo " ${KV_DIR}" |
331 | KV_MINOR=$(get_version_component_range 2 ${KV_FULL}) |
| 145 | einfo "with sources for kernel version:" |
332 | KV_PATCH=$(get_version_component_range 3- ${KV_FULL}) |
| 146 | einfo " ${KV_FULL}" |
333 | KV_PATCH=${KV_PATCH//-*} |
|
|
334 | [[ -n ${KV_FULL#*-} ]] && [[ -n ${KV_FULL//${KV_FULL#*-}} ]] \ |
|
|
335 | && KV_EXTRA="-${KV_FULL#*-}" |
| 147 | fi |
336 | fi |
|
|
337 | return 0 |
| 148 | } |
338 | } |
| 149 | |
|
|
| 150 | |
|
|
| 151 | |
339 | |
| 152 | |
340 | |
| 153 | # ebuild check functions |
341 | # ebuild check functions |
| 154 | # --------------------------------------- |
342 | # --------------------------------------- |
| 155 | |
343 | |
| 156 | check_kernel_built() { |
344 | check_kernel_built() { |
| 157 | # if we haven't determined the version yet, we need too. |
345 | # if we haven't determined the version yet, we need too. |
| 158 | get_version; |
346 | get_version; |
| 159 | |
347 | |
| 160 | if [ ! -f "${KV_DIR}/System.map" ] |
348 | if [ ! -f "${KV_OUT_DIR}/include/linux/version.h" ] |
| 161 | then |
349 | then |
| 162 | eerror "These sources have not yet been compiled." |
350 | eerror "These sources have not yet been prepared." |
| 163 | eerror "We cannot build against an uncompiled tree." |
351 | eerror "We cannot build against an unprepared tree." |
| 164 | eerror "To resolve this, please type the following:" |
352 | eerror "To resolve this, please type the following:" |
| 165 | eerror |
353 | eerror |
| 166 | eerror "# cd ${KV_DIR}" |
354 | eerror "# cd ${KV_DIR}" |
| 167 | eerror "# make oldconfig" |
355 | eerror "# make oldconfig" |
| 168 | eerror "# make bzImage modules modules_install" |
356 | eerror "# make modules_prepare" |
| 169 | eerror |
357 | eerror |
| 170 | eerror "Then please try merging this module again." |
358 | eerror "Then please try merging this module again." |
| 171 | die "Kernel sources need compiling first" |
359 | die "Kernel sources need compiling first" |
| 172 | fi |
360 | fi |
| 173 | } |
361 | } |
| 174 | |
362 | |
| 175 | check_modules_supported() { |
363 | check_modules_supported() { |
| 176 | # if we haven't determined the version yet, we need too. |
364 | # if we haven't determined the version yet, we need too. |
| 177 | get_version; |
365 | get_version; |
| 178 | |
366 | |
| 179 | getfilevar_isset CONFIG_MODULES ${KV_DIR}/.config |
367 | if ! linux_chkconfig_builtin "MODULES" |
| 180 | if [ "$?" != 0 ] |
|
|
| 181 | then |
368 | then |
| 182 | eerror "These sources do not support loading external modules." |
369 | eerror "These sources do not support loading external modules." |
| 183 | eerror "to be able to use this module please enable \"Loadable modules support\"" |
370 | eerror "to be able to use this module please enable \"Loadable modules support\"" |
| 184 | eerror "in your kernel, recompile and then try merging this module again." |
371 | eerror "in your kernel, recompile and then try merging this module again." |
| 185 | die No support for external modules in ${KV_FUll} config |
372 | die "No support for external modules in ${KV_FULL} config" |
| 186 | fi |
373 | fi |
| 187 | } |
374 | } |
| 188 | |
375 | |
| 189 | check_extra_config() { |
376 | check_extra_config() { |
| 190 | local config negate error |
377 | local config negate error local_error i n |
|
|
378 | local temp_config die reworkmodulenames |
| 191 | |
379 | |
| 192 | # if we haven't determined the version yet, we need too. |
380 | # if we haven't determined the version yet, we need too. |
| 193 | get_version; |
381 | get_version; |
| 194 | |
382 | |
| 195 | einfo "Checking for suitable kernel configuration options" |
383 | einfo "Checking for suitable kernel configuration options:" |
| 196 | for config in ${CONFIG_CHECK} |
384 | for config in ${CONFIG_CHECK} |
| 197 | do |
385 | do |
| 198 | negate="${config:0:1}" |
386 | # if we specify any fatal, ensure we honor them |
| 199 | if [ "${negate}" == "!" ]; |
387 | die=1 |
| 200 | then |
388 | error=0 |
|
|
389 | negate=0 |
|
|
390 | reworkmodulenames=0 |
|
|
391 | |
|
|
392 | if [[ -z ${config//\!*} ]]; then |
|
|
393 | negate=1 |
| 201 | config="${config:1}" |
394 | config=${config:1} |
| 202 | if getfilevar_isset ${config} ${KV_DIR}/.config ; |
395 | fi |
| 203 | then |
396 | if [[ -z ${config/\@*} ]]; then |
| 204 | eerror " ${config}:\tshould not be set in the kernel configuration, but it is." |
397 | die=2 |
|
|
398 | reworkmodulenames=1 |
|
|
399 | config=${config:1} |
|
|
400 | fi |
|
|
401 | if [[ -z ${config/\~*} ]]; then |
|
|
402 | die=0 |
|
|
403 | config=${config:1} |
|
|
404 | fi |
|
|
405 | |
|
|
406 | if [[ ${negate} == 1 ]]; then |
|
|
407 | linux_chkconfig_present ${config} && error=2 |
|
|
408 | elif [[ ${reworkmodulenames} == 1 ]]; then |
|
|
409 | temp_config="${config//*:}" |
|
|
410 | config="${config//:*}" |
|
|
411 | if linux_chkconfig_present ${config}; then |
|
|
412 | for i in ${MODULE_NAMES}; do |
|
|
413 | n="${i//${temp_config}}" |
|
|
414 | [[ -z ${n//(*} ]] && \ |
|
|
415 | MODULE_IGNORE="${MODULE_IGNORE} ${temp_config}" |
|
|
416 | done |
| 205 | error=1 |
417 | error=2 |
| 206 | fi |
418 | fi |
| 207 | else |
419 | else |
| 208 | if ! getfilevar_isset ${config} ${KV_DIR}/.config ; |
420 | linux_chkconfig_present ${config} || error=1 |
| 209 | then |
421 | fi |
| 210 | eerror " ${config}:\tshould be set in the kernel configuration, but isn't" |
422 | |
| 211 | error=1 |
423 | if [[ ${die} == 0 ]]; then |
|
|
424 | ebegin "CONFIG_${config}" |
|
|
425 | eend ${error} |
|
|
426 | else |
|
|
427 | if [[ ${error} > 0 ]]; then |
|
|
428 | local_error="${config}_ERROR" |
|
|
429 | local_error="${!local_error}" |
|
|
430 | if [[ -z "${local_error}" ]]; then |
|
|
431 | [[ ${error} == 1 ]] \ |
|
|
432 | && local_error="is not set when it should be." \ |
|
|
433 | || local_error="should not be set. But it is." |
|
|
434 | local_error="CONFIG_${config}:\t ${local_error}" |
|
|
435 | fi |
|
|
436 | eerror " ${local_error}" |
| 212 | fi |
437 | fi |
| 213 | fi |
438 | fi |
| 214 | done |
439 | done |
| 215 | |
440 | |
| 216 | if [ -n "${error}" ] ; |
441 | if [[ ${error} > 0 ]]; then |
| 217 | then |
|
|
| 218 | eerror "Please check to make sure these options are set correctly." |
442 | eerror "Please check to make sure these options are set correctly." |
|
|
443 | eerror "Failure to do so may cause unexpected problems." |
|
|
444 | if [[ ${die} == 1 ]]; then |
| 219 | eerror "Once you have satisfied these options, please try merging" |
445 | eerror "Once you have satisfied these options, please try merging" |
| 220 | eerror "this package again." |
446 | eerror "this package again." |
| 221 | die Incorrect kernel configuration options |
447 | die "Incorrect kernel configuration options" |
|
|
448 | fi |
| 222 | fi |
449 | fi |
| 223 | } |
450 | } |
| 224 | |
451 | |
| 225 | check_zlibinflate() { |
452 | check_zlibinflate() { |
| 226 | # if we haven't determined the version yet, we need too. |
453 | # if we haven't determined the version yet, we need too. |
| 227 | get_version; |
454 | get_version; |
| 228 | |
455 | |
| 229 | # although I restructured this code - I really really really dont support it! |
456 | # although I restructured this code - I really really really dont support it! |
| 230 | |
457 | |
| 231 | # bug #27882 - zlib routines are only linked into the kernel |
458 | # bug #27882 - zlib routines are only linked into the kernel |
| 232 | # if something compiled into the kernel calls them |
459 | # if something compiled into the kernel calls them |
| 233 | # |
460 | # |
| 234 | # plus, for the cloop module, it appears that there's no way |
461 | # plus, for the cloop module, it appears that there's no way |
| 235 | # to get cloop.o to include a static zlib if CONFIG_MODVERSIONS |
462 | # to get cloop.o to include a static zlib if CONFIG_MODVERSIONS |
| 236 | # is on |
463 | # is on |
| 237 | |
464 | |
| 238 | local INFLATE |
465 | local INFLATE |
| 239 | local DEFLATE |
466 | local DEFLATE |
| 240 | |
467 | |
| 241 | einfo "Determining the usability of ZLIB_INFLATE support in your kernel" |
468 | einfo "Determining the usability of ZLIB_INFLATE support in your kernel" |
| 242 | |
469 | |
| 243 | ebegin "checking ZLIB_INFLATE" |
470 | ebegin "checking ZLIB_INFLATE" |
| 244 | getfilevar_isbuiltin CONFIG_ZLIB_INFLATE ${KV_DIR}/.config |
471 | getfilevar_isbuiltin CONFIG_ZLIB_INFLATE ${KV_DIR}/.config |
| 245 | eend $? |
472 | eend $? |
| 246 | [ "$?" != 0 ] && die |
473 | [ "$?" != 0 ] && die |
| 247 | |
474 | |
| 248 | ebegin "checking ZLIB_DEFLATE" |
475 | ebegin "checking ZLIB_DEFLATE" |
| 249 | getfilevar_isbuiltin CONFIG_ZLIB_DEFLATE ${KV_DIR}/.config |
476 | getfilevar_isbuiltin CONFIG_ZLIB_DEFLATE ${KV_DIR}/.config |
| 250 | eend $? |
477 | eend $? |
| 251 | [ "$?" != 0 ] && die |
478 | [ "$?" != 0 ] && die |
| 252 | |
479 | |
| 253 | |
|
|
| 254 | local LINENO_START |
480 | local LINENO_START |
| 255 | local LINENO_END |
481 | local LINENO_END |
| 256 | local SYMBOLS |
482 | local SYMBOLS |
| 257 | local x |
483 | local x |
| 258 | |
484 | |
| 259 | LINENO_END="$(grep -n 'CONFIG_ZLIB_INFLATE y' ${KV_DIR}/lib/Config.in | cut -d : -f 1)" |
485 | LINENO_END="$(grep -n 'CONFIG_ZLIB_INFLATE y' ${KV_DIR}/lib/Config.in | cut -d : -f 1)" |
| 260 | LINENO_START="$(head -n $LINENO_END ${KV_DIR}/lib/Config.in | grep -n 'if \[' | tail -n 1 | cut -d : -f 1)" |
486 | LINENO_START="$(head -n $LINENO_END ${KV_DIR}/lib/Config.in | grep -n 'if \[' | tail -n 1 | cut -d : -f 1)" |
| 261 | (( LINENO_AMOUNT = $LINENO_END - $LINENO_START )) |
487 | (( LINENO_AMOUNT = $LINENO_END - $LINENO_START )) |
| 262 | (( LINENO_END = $LINENO_END - 1 )) |
488 | (( LINENO_END = $LINENO_END - 1 )) |
| 263 | SYMBOLS="$(head -n $LINENO_END ${KERNEL_DIR}/lib/Config.in | tail -n $LINENO_AMOUNT | sed -e 's/^.*\(CONFIG_[^\" ]*\).*/\1/g;')" |
489 | SYMBOLS="$(head -n $LINENO_END ${KV_DIR}/lib/Config.in | tail -n $LINENO_AMOUNT | sed -e 's/^.*\(CONFIG_[^\" ]*\).*/\1/g;')" |
| 264 | |
490 | |
| 265 | # okay, now we have a list of symbols |
491 | # okay, now we have a list of symbols |
| 266 | # we need to check each one in turn, to see whether it is set or not |
492 | # we need to check each one in turn, to see whether it is set or not |
| 267 | for x in $SYMBOLS ; do |
493 | for x in $SYMBOLS ; do |
| 268 | if [ "${!x}" = "y" ]; then |
494 | if [ "${!x}" = "y" ]; then |
| 269 | # we have a winner! |
495 | # we have a winner! |
| 270 | einfo "${x} ensures zlib is linked into your kernel - excellent" |
496 | einfo "${x} ensures zlib is linked into your kernel - excellent" |
| 271 | return 0 |
497 | return 0 |
| 272 | fi |
498 | fi |
| 273 | done |
499 | done |
| 274 | |
500 | |
| 275 | eerror |
501 | eerror |
| 276 | eerror "This kernel module requires ZLIB library support." |
502 | eerror "This kernel module requires ZLIB library support." |
| 277 | eerror "You have enabled zlib support in your kernel, but haven't enabled" |
503 | eerror "You have enabled zlib support in your kernel, but haven't enabled" |
| 278 | eerror "enabled any option that will ensure that zlib is linked into your" |
504 | eerror "enabled any option that will ensure that zlib is linked into your" |
| 279 | eerror "kernel." |
505 | eerror "kernel." |
| … | |
… | |
| 289 | eerror "Please remember to recompile and install your kernel, and reboot" |
515 | eerror "Please remember to recompile and install your kernel, and reboot" |
| 290 | eerror "into your new kernel before attempting to load this kernel module." |
516 | eerror "into your new kernel before attempting to load this kernel module." |
| 291 | |
517 | |
| 292 | die "Kernel doesn't include zlib support" |
518 | die "Kernel doesn't include zlib support" |
| 293 | } |
519 | } |
|
|
520 | |
|
|
521 | ################################ |
|
|
522 | # Default pkg_setup |
|
|
523 | # Also used when inheriting linux-mod to force a get_version call |
|
|
524 | |
|
|
525 | linux-info_pkg_setup() { |
|
|
526 | get_version || die "Unable to calculate Linux Kernel version" |
|
|
527 | [ -n "${CONFIG_CHECK}" ] && check_extra_config; |
|
|
528 | } |