summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2009-12-11 20:54:06 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2009-12-11 20:54:06 +0000
commitf60610b13bd85e802356df630e7918022deb87f1 (patch)
tree494536d1842e2111d1bdcfe11b37b60d15faa9bf /eclass/linux-info.eclass
parentold (diff)
downloadhistorical-f60610b13bd85e802356df630e7918022deb87f1.tar.gz
historical-f60610b13bd85e802356df630e7918022deb87f1.tar.bz2
historical-f60610b13bd85e802356df630e7918022deb87f1.zip
Add a QA warning if you call linux_chkconfig* and linux_config* was not called.
Diffstat (limited to 'eclass/linux-info.eclass')
-rw-r--r--eclass/linux-info.eclass36
1 files changed, 32 insertions, 4 deletions
diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass
index c350b74017c4..0f0512822cc1 100644
--- a/eclass/linux-info.eclass
+++ b/eclass/linux-info.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.74 2009/12/11 20:42:51 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.75 2009/12/11 20:54:06 robbat2 Exp $
#
# Original author: John Mylchreest <johnm@gentoo.org>
# Maintainer: kernel-misc@gentoo.org
@@ -223,12 +223,28 @@ getfilevar_noexec() {
fi
}
+# @PRIVATE-VARIABLE: _LINUX_CONFIG_EXISTS_DONE
+# @DESCRIPTION:
+# This is only set if one of the linux_config_*exists functions has been called.
+# We use it for a QA warning that the check for a config has not been performed,
+# as linux_chkconfig* in non-legacy mode WILL return an undefined value if no
+# config is available at all.
+_LINUX_CONFIG_EXISTS_DONE=
+
+linux_config_qa_check() {
+ local funcname="$1"
+ if [ -z "${_LINUX_CONFIG_EXISTS_DONE}" ]; then
+ ewarn "QA: You called $1 before any linux_config_exists!"
+ ewarn "QA: The return value of $1 will NOT gaurenteed later!"
+ fi
+}
# @FUNCTION: linux_config_src_exists
# @RETURN: true or false
# @DESCRIPTION:
# It returns true if .config exists in a build directory otherwise false
linux_config_src_exists() {
+ export _LINUX_CONFIG_EXISTS_DONE=1
[ -s "${KV_OUT_DIR}/.config" ]
}
@@ -237,6 +253,7 @@ linux_config_src_exists() {
# @DESCRIPTION:
# It returns true if .config exists in /proc, otherwise false
linux_config_bin_exists() {
+ export _LINUX_CONFIG_EXISTS_DONE=1
[ -n "${I_KNOW_WHAT_I_AM_DOING}" -a -s "/proc/config.gz" ]
}
@@ -273,7 +290,8 @@ require_configured_kernel() {
# If linux_config_exists returns false, the results of this are UNDEFINED. You
# MUST call linux_config_exists first.
linux_chkconfig_present() {
-local RESULT
+ linux_config_qa_check
+ local RESULT
[ -z "${I_KNOW_WHAT_I_AM_DOING}" ] && require_configured_kernel
local config
config="${KV_OUT_DIR}/.config"
@@ -290,7 +308,8 @@ local RESULT
# If linux_config_exists returns false, the results of this are UNDEFINED. You
# MUST call linux_config_exists first.
linux_chkconfig_module() {
-local RESULT
+ linux_config_qa_check
+ local RESULT
[ -z "${I_KNOW_WHAT_I_AM_DOING}" ] && require_configured_kernel
local config
config="${KV_OUT_DIR}/.config"
@@ -307,7 +326,8 @@ local RESULT
# If linux_config_exists returns false, the results of this are UNDEFINED. You
# MUST call linux_config_exists first.
linux_chkconfig_builtin() {
-local RESULT
+ linux_config_qa_check
+ local RESULT
[ -z "${I_KNOW_WHAT_I_AM_DOING}" ] && require_configured_kernel
local config
config="${KV_OUT_DIR}/.config"
@@ -324,6 +344,7 @@ local RESULT
# If linux_config_exists returns false, the results of this are UNDEFINED. You
# MUST call linux_config_exists first.
linux_chkconfig_string() {
+ linux_config_qa_check
[ -z "${I_KNOW_WHAT_I_AM_DOING}" ] && require_configured_kernel
local config
config="${KV_OUT_DIR}/.config"
@@ -624,6 +645,10 @@ check_modules_supported() {
check_extra_config() {
local config negate die error reworkmodulenames
local soft_errors_count=0 hard_errors_count=0 config_required=0
+ # store the value of the QA check, because otherwise we won't catch usages
+ # after if check_extra_config is called AND other direct calls are done
+ # later.
+ local old_LINUX_CONFIG_EXISTS_DONE="${_LINUX_CONFIG_EXISTS_DONE}"
# if we haven't determined the version yet, we need to
linux-info_get_any_version
@@ -652,6 +677,7 @@ check_extra_config() {
ewarn " - ${config#\~}"
done
ewarn "You're on your own to make sure they are set if needed."
+ export LINUX_CONFIG_EXISTS_DONE="${old_LINUX_CONFIG_EXISTS_DONE}"
return 0
fi
else
@@ -738,6 +764,7 @@ check_extra_config() {
eerror "Failure to do so may cause unexpected problems."
eerror "Once you have satisfied these options, please try merging"
eerror "this package again."
+ export LINUX_CONFIG_EXISTS_DONE="${old_LINUX_CONFIG_EXISTS_DONE}"
die "Incorrect kernel configuration options"
elif [[ ${soft_errors_count} > 0 ]]; then
ewarn "Please check to make sure these options are set correctly."
@@ -745,6 +772,7 @@ check_extra_config() {
else
eend 0
fi
+ export LINUX_CONFIG_EXISTS_DONE="${old_LINUX_CONFIG_EXISTS_DONE}"
}
check_zlibinflate() {