]> code.ossystems Code Review - openembedded-core.git/commitdiff
base bbclass: add TUNE_FEATURES to the default banner
authorKoen Kooi <koen@dominion.thruhere.net>
Wed, 27 Jul 2011 15:13:39 +0000 (17:13 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 Jul 2011 15:32:01 +0000 (16:32 +0100)
This makes debugging the new tune code easier since it doesn't involve staring at 'bitbake -e' output anymore.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/base.bbclass

index a0a189f818629a1d44ca932ac4c6eca19a44082a..ff960cd0e352ae5d3fa5fe19dbb37748a933aae0 100644 (file)
@@ -173,7 +173,7 @@ python base_eventhandler() {
 
        if name.startswith("BuildStarted"):
                bb.data.setVar( 'BB_VERSION', bb.__version__, e.data )
-               statusvars = ['BB_VERSION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'DISTRO_VERSION','TARGET_FPU']
+               statusvars = ['BB_VERSION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'DISTRO_VERSION','TUNE_FEATURES', 'TARGET_FPU']
                statuslines = ["%-17s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars]
 
                layers = (data.getVar("BBLAYERS", e.data, 1) or "").split()