diff options
author | Enrico Scholz <enrico.scholz@sigma-chemnitz.de> | 2012-05-20 17:19:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-23 11:35:11 +0100 |
commit | 358016f463958640c694d031a481264a0e770802 (patch) | |
tree | b10f7e84ad6af5ae62374355de2bda4df52478ee /bitbake/bin | |
parent | 8b8be74ed21b878b2fe30d5b76ff0648e6e48c18 (diff) | |
download | poky-358016f463958640c694d031a481264a0e770802.tar.gz |
bitbake: support $BITBAKE_UI environment
Patch adds support for a $BITBAKE_UI environment variable which allows
to configure the preferred user interface. Although an '-u' option
(which will override the environment variable) exists already, it was
required to specify this option on every invocation of bitbake.
Because user interface is instanciated very early in the program it is
not possible to use bitbake.conf for setting up a default. An
environment variable (which acts in a similar category like $PAGER or
$EDITOR) is a simple way for configuring the default.
(Bitbake rev: e3c213015953d1a0afb5ef4be59e1264990e5cee)
Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 420e69d0c9..478ac06124 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -56,10 +56,11 @@ class BBConfiguration(object): | |||
56 | 56 | ||
57 | 57 | ||
58 | def get_ui(config): | 58 | def get_ui(config): |
59 | if config.ui: | 59 | if not config.ui: |
60 | interface = config.ui | 60 | # modify 'ui' attribute because it is also read by cooker |
61 | else: | 61 | config.ui = os.environ.get('BITBAKE_UI', 'knotty') |
62 | interface = 'knotty' | 62 | |
63 | interface = config.ui | ||
63 | 64 | ||
64 | try: | 65 | try: |
65 | # Dynamically load the UI based on the ui name. Although we | 66 | # Dynamically load the UI based on the ui name. Although we |