diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-10-29 23:48:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-10 12:07:22 +0000 |
commit | 9e7c7e39a32b29386bee64b75cec949d30e3d2e7 (patch) | |
tree | 34bd14d86af81a7c4ed09d52cc69590bc9f5f72b /meta | |
parent | 3348e9b02b922b89ecbece7922d1c6b583e1fb1d (diff) | |
download | openembedded-core-9e7c7e39a32b29386bee64b75cec949d30e3d2e7.tar.gz openembedded-core-9e7c7e39a32b29386bee64b75cec949d30e3d2e7.tar.bz2 openembedded-core-9e7c7e39a32b29386bee64b75cec949d30e3d2e7.zip |
task-core-x11: use VIRTUAL-RUNTIME variables for xserver_common and graphical_init_manager
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/tasks/task-core-x11.bb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/meta/recipes-sato/tasks/task-core-x11.bb b/meta/recipes-sato/tasks/task-core-x11.bb index 26d550add2..106bc0f7fb 100644 --- a/meta/recipes-sato/tasks/task-core-x11.bb +++ b/meta/recipes-sato/tasks/task-core-x11.bb @@ -30,6 +30,12 @@ ALLOW_EMPTY = "1" FILEMANAGER ?= "pcmanfm" FILEMANAGER_mips ?= "" +# xserver-common, x11-common +VIRTUAL-RUNTIME_xserver_common ?= "x11-common" + +# elsa, xserver-nodm-init +VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init" + RDEPENDS_task-core-x11-base = "\ dbus \ @@ -42,8 +48,8 @@ RDEPENDS_task-core-x11-base = "\ matchbox-desktop \ matchbox-session \ ${XSERVER} \ - x11-common \ - xserver-nodm-init \ + ${VIRTUAL-RUNTIME_xserver_common} \ + ${VIRTUAL-RUNTIME_graphical_init_manager} \ liberation-fonts \ xauth \ xhost \ |