summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/kernel-yocto.bbclass24
-rw-r--r--meta/recipes-kernel/kern-tools/kern-tools-native_git.bb2
-rw-r--r--meta/recipes-kernel/linux/linux-yocto.inc6
3 files changed, 24 insertions, 8 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 223825e546..0cbbb5f2d2 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -253,8 +253,6 @@ addtask kernel_configme after do_patch
253python do_kernel_configcheck() { 253python do_kernel_configcheck() {
254 import re, string, sys 254 import re, string, sys
255 255
256 bb.plain("NOTE: validating kernel config, see log.do_kernel_configcheck for details")
257
258 # if KMETA isn't set globally by a recipe using this routine, we need to 256 # if KMETA isn't set globally by a recipe using this routine, we need to
259 # set the default to 'meta'. Otherwise, kconf_check is not passed a valid 257 # set the default to 'meta'. Otherwise, kconf_check is not passed a valid
260 # meta-series for processing 258 # meta-series for processing
@@ -266,11 +264,23 @@ python do_kernel_configcheck() {
266 cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta) 264 cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta)
267 ret, result = oe.utils.getstatusoutput("%s%s" % (pathprefix, cmd)) 265 ret, result = oe.utils.getstatusoutput("%s%s" % (pathprefix, cmd))
268 266
269 config_check_visibility = d.getVar( "KCONF_AUDIT_LEVEL", True ) or 1 267 config_check_visibility = int(d.getVar( "KCONF_AUDIT_LEVEL", True ) or 0)
270 if config_check_visibility == 1: 268
271 bb.debug( 1, "%s" % result ) 269 # if config check visibility is non-zero, report dropped configuration values
272 else: 270 mismatch_file = "${S}/" + kmeta + "/" + "mismatch.cfg"
273 bb.note( "%s" % result ) 271 if os.path.exists(mismatch_file):
272 if config_check_visibility:
273 with open (mismatch_file, "r") as myfile:
274 results = myfile.read()
275 bb.warn( "[kernel config]: specified values did not make it into the kernel's final configuration:\n\n%s" % results)
276
277 # if config check visibility is level 2 or higher, report non-hardware options
278 nonhw_file = "${S}/" + kmeta + "/" + "nonhw_report.cfg"
279 if os.path.exists(nonhw_file):
280 if config_check_visibility > 1:
281 with open (nonhw_file, "r") as myfile:
282 results = myfile.read()
283 bb.warn( "[kernel config]: BSP specified non-hw configuration:\n\n%s" % results)
274} 284}
275 285
276# Ensure that the branches (BSP and meta) are on the locations specified by 286# Ensure that the branches (BSP and meta) are on the locations specified by
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
index 3278398648..80d26f9874 100644
--- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
+++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=d8d1d729a70c
4 4
5DEPENDS = "git-native" 5DEPENDS = "git-native"
6 6
7SRCREV = "daab4442c22c09a98a823c32d7219316b6832182" 7SRCREV = "cab17f884998b43692244a863dea6f505c7f67af"
8PR = "r12" 8PR = "r12"
9PV = "0.2+git${SRCPV}" 9PV = "0.2+git${SRCPV}"
10 10
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc
index 7416af99f5..79b3f256f4 100644
--- a/meta/recipes-kernel/linux/linux-yocto.inc
+++ b/meta/recipes-kernel/linux/linux-yocto.inc
@@ -23,6 +23,12 @@ KBRANCH ?= "master"
23KMACHINE ?= "${MACHINE}" 23KMACHINE ?= "${MACHINE}"
24SRCREV_FORMAT ?= "meta_machine" 24SRCREV_FORMAT ?= "meta_machine"
25 25
26# LEVELS:
27# 0: no reporting
28# 1: report options that are specified, but not in the final config
29# 2: report options that are not hardware related, but set by a BSP
30KCONF_AUDIT_LEVEL ?= "1"
31
26LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}" 32LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}"
27 33
28do_patch[depends] = "kern-tools-native:do_populate_sysroot" 34do_patch[depends] = "kern-tools-native:do_populate_sysroot"