diff options
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/kernel-yocto.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes-recipe/kernel-yocto.bbclass b/meta/classes-recipe/kernel-yocto.bbclass index e73adcc725..a5d89dc2c8 100644 --- a/meta/classes-recipe/kernel-yocto.bbclass +++ b/meta/classes-recipe/kernel-yocto.bbclass | |||
@@ -568,6 +568,11 @@ python do_config_analysis() { | |||
568 | python do_kernel_configcheck() { | 568 | python do_kernel_configcheck() { |
569 | import re, string, sys, subprocess | 569 | import re, string, sys, subprocess |
570 | 570 | ||
571 | audit_flag = d.getVar( "KMETA_AUDIT" ) | ||
572 | if not audit_flag: | ||
573 | bb.note( "kernel config audit disabled, skipping .." ) | ||
574 | return | ||
575 | |||
571 | s = d.getVar('S') | 576 | s = d.getVar('S') |
572 | 577 | ||
573 | # if KMETA isn't set globally by a recipe using this routine, use kgit to | 578 | # if KMETA isn't set globally by a recipe using this routine, use kgit to |