diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-03-11 12:13:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-12 22:11:46 +0000 |
commit | 8ea5cdc77633831a34aeb09ccd7592b3a5ecbd3d (patch) | |
tree | 4f8f4062b0a50b75fe8fd0959913c5451c22865b /meta/recipes-graphics/builder/files | |
parent | ff5d9f760754cf2f049a41e1dd6d2e6eeea0bfdc (diff) | |
download | poky-8ea5cdc77633831a34aeb09ccd7592b3a5ecbd3d.tar.gz |
builder: remove hob from autostart
hob has been removed so don't try and autostart it with the mini-x
session in the build appliance.
Remove the please_wait_dialog program which informed the user to
wait for Hob to start.
Rename the mini-x autostart file to reflect the removal of hob, we
now just start a matchbox-terminal with the environment configured.
(From OE-Core rev: cd43436def38a0a87f0cd330fa487ad5fc0748d0)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/builder/files')
-rw-r--r-- | meta/recipes-graphics/builder/files/builder_session.sh (renamed from meta/recipes-graphics/builder/files/builder_hob_start.sh) | 4 | ||||
-rw-r--r-- | meta/recipes-graphics/builder/files/please_wait_dialog.py | 28 |
2 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-graphics/builder/files/builder_hob_start.sh b/meta/recipes-graphics/builder/files/builder_session.sh index b394b0905e..001a03357d 100644 --- a/meta/recipes-graphics/builder/files/builder_hob_start.sh +++ b/meta/recipes-graphics/builder/files/builder_session.sh | |||
@@ -30,8 +30,4 @@ fi | |||
30 | cd /home/builder/poky | 30 | cd /home/builder/poky |
31 | . ./oe-init-build-env | 31 | . ./oe-init-build-env |
32 | 32 | ||
33 | hob & | ||
34 | |||
35 | matchbox-terminal& | 33 | matchbox-terminal& |
36 | |||
37 | /etc/mini_x/please_wait_dialog.py & | ||
diff --git a/meta/recipes-graphics/builder/files/please_wait_dialog.py b/meta/recipes-graphics/builder/files/please_wait_dialog.py deleted file mode 100644 index fd2381bc88..0000000000 --- a/meta/recipes-graphics/builder/files/please_wait_dialog.py +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | #!/usr/bin/env python | ||
2 | import glib | ||
3 | import gtk | ||
4 | |||
5 | def destroy_window_cb(widget, event): | ||
6 | gtk.main_quit() | ||
7 | |||
8 | def all_done_cb(): | ||
9 | gtk.main_quit() | ||
10 | |||
11 | def dialogue_ui(): | ||
12 | window = gtk.Window() | ||
13 | window.set_title("Please wait...") | ||
14 | window.connect("delete-event", destroy_window_cb) | ||
15 | window.show() | ||
16 | window.set_border_width(12) | ||
17 | |||
18 | msg = "Please wait while BitBake initializes Hob" | ||
19 | label = gtk.Label(msg) | ||
20 | label.show() | ||
21 | window.add(label) | ||
22 | |||
23 | glib.timeout_add_seconds(10, all_done_cb) | ||
24 | |||
25 | if __name__ == "__main__": | ||
26 | dialogue_ui() | ||
27 | gtk.main() | ||
28 | |||