diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-27 17:13:39 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 16:46:29 +0100 |
commit | 8e864c55e53ce0cb8d11e472e69fdc97d71523a1 (patch) | |
tree | 60ba929ad1c0eb78d1f362a0f6ca7761a6fb97d8 /meta/classes | |
parent | 1ab1c8be6c77eb6e8610edf070444e81179b0f4f (diff) | |
download | poky-8e864c55e53ce0cb8d11e472e69fdc97d71523a1.tar.gz |
base bbclass: add TUNE_FEATURES to the default banner
This makes debugging the new tune code easier since it doesn't involve staring at 'bitbake -e' output anymore.
(From OE-Core rev: c1903b1221e9b419aefe49e40a8acd61575de797)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index a0a189f818..ff960cd0e3 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -173,7 +173,7 @@ python base_eventhandler() { | |||
173 | 173 | ||
174 | if name.startswith("BuildStarted"): | 174 | if name.startswith("BuildStarted"): |
175 | bb.data.setVar( 'BB_VERSION', bb.__version__, e.data ) | 175 | bb.data.setVar( 'BB_VERSION', bb.__version__, e.data ) |
176 | statusvars = ['BB_VERSION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'DISTRO_VERSION','TARGET_FPU'] | 176 | statusvars = ['BB_VERSION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'DISTRO_VERSION','TUNE_FEATURES', 'TARGET_FPU'] |
177 | statuslines = ["%-17s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars] | 177 | statuslines = ["%-17s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars] |
178 | 178 | ||
179 | layers = (data.getVar("BBLAYERS", e.data, 1) or "").split() | 179 | layers = (data.getVar("BBLAYERS", e.data, 1) or "").split() |