summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/kernel-yocto.bbclass17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 30f07de4ca..ba139dd7f8 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -113,6 +113,8 @@ do_kernel_metadata() {
113 cd ${S} 113 cd ${S}
114 export KMETA=${KMETA} 114 export KMETA=${KMETA}
115 115
116 bbnote "do_kernel_metadata: for summary/debug, set KCONF_AUDIT_LEVEL > 0"
117
116 # if kernel tools are available in-tree, they are preferred 118 # if kernel tools are available in-tree, they are preferred
117 # and are placed on the path before any external tools. Unless 119 # and are placed on the path before any external tools. Unless
118 # the external tools flag is set, in that case we do nothing. 120 # the external tools flag is set, in that case we do nothing.
@@ -290,6 +292,21 @@ do_kernel_metadata() {
290 fi 292 fi
291 fi 293 fi
292 fi 294 fi
295
296 if [ ${KCONF_AUDIT_LEVEL} -gt 0 ]; then
297 bbnote "kernel meta data summary for ${KMACHINE} (${LINUX_KERNEL_TYPE}):"
298 bbnote "======================================================================"
299 if [ -n "${KMETA_EXTERNAL_BSPS}" ]; then
300 bbnote "Non kernel-cache (external) bsp"
301 fi
302 bbnote "BSP entry point / definition: $bsp_definition"
303 if [ -n "$in_tree_defconfig" ]; then
304 bbnote "KBUILD_DEFCONFIG: ${KBUILD_DEFCONFIG}"
305 fi
306 bbnote "Fragments from SRC_URI: $sccs_from_src_uri"
307 bbnote "KERNEL_FEATURES: $KERNEL_FEATURES_FINAL"
308 bbnote "Final scc/cfg list: $sccs_defconfig $bsp_definition $sccs $KERNEL_FEATURES_FINAL"
309 fi
293} 310}
294 311
295do_patch() { 312do_patch() {