diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index aaee441979..b336e43ffe 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -207,7 +207,7 @@ do_kernel_configme() { | |||
207 | python do_kernel_configcheck() { | 207 | python do_kernel_configcheck() { |
208 | import re, string, sys, commands | 208 | import re, string, sys, commands |
209 | 209 | ||
210 | bb.plain("NOTE: validating kernel configuration") | 210 | bb.plain("NOTE: validating kernel config, see log.do_kernel_configcheck for details") |
211 | 211 | ||
212 | # if KMETA isn't set globally by a recipe using this routine, we need to | 212 | # if KMETA isn't set globally by a recipe using this routine, we need to |
213 | # set the default to 'meta'. Otherwise, kconf_check is not passed a valid | 213 | # set the default to 'meta'. Otherwise, kconf_check is not passed a valid |
@@ -218,7 +218,11 @@ python do_kernel_configcheck() { | |||
218 | cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta) | 218 | cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta) |
219 | ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd)) | 219 | ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd)) |
220 | 220 | ||
221 | bb.plain( "%s" % result ) | 221 | config_check_visibility = d.getVar( "KCONF_AUDIT_LEVEL", True ) or 1 |
222 | if config_check_visibility == 1: | ||
223 | bb.debug( 1, "%s" % result ) | ||
224 | else: | ||
225 | bb.note( "%s" % result ) | ||
222 | } | 226 | } |
223 | 227 | ||
224 | # Ensure that the branches (BSP and meta) are on the locations specified by | 228 | # Ensure that the branches (BSP and meta) are on the locations specified by |