diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-02-21 10:28:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 21:53:52 +0000 |
commit | e4c8f51dd54203203dcc8cc8e1e5f59c877238d9 (patch) | |
tree | 7c42a98368fe72aabf9a1c8cede67dadbb97bc8e /meta | |
parent | f6d963fa6d0e64d53f7ef56fd2c12d67f5811829 (diff) | |
download | poky-e4c8f51dd54203203dcc8cc8e1e5f59c877238d9.tar.gz |
weston-init: replace deprecated/disabled fbdev with drm backend
drm will default to opengl rendering by default; if this is
problematic, --use-pixman option may help, apply only where
it's proven necessary.
(From OE-Core rev: 432f24ef9af3c0e6e0c769dc2a751023138f7bae)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/wayland/weston-init.bb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init.bb b/meta/recipes-graphics/wayland/weston-init.bb index e02da0c358..8e8c0454be 100644 --- a/meta/recipes-graphics/wayland/weston-init.bb +++ b/meta/recipes-graphics/wayland/weston-init.bb | |||
@@ -19,13 +19,7 @@ PACKAGECONFIG ??= "" | |||
19 | PACKAGECONFIG[no-idle-timeout] = ",," | 19 | PACKAGECONFIG[no-idle-timeout] = ",," |
20 | 20 | ||
21 | DEFAULTBACKEND ??= "" | 21 | DEFAULTBACKEND ??= "" |
22 | DEFAULTBACKEND:qemuall ?= "fbdev" | 22 | DEFAULTBACKEND:qemuall ?= "drm" |
23 | DEFAULTBACKEND:qemuarm64 = "drm" | ||
24 | DEFAULTBACKEND:qemux86 = "drm" | ||
25 | DEFAULTBACKEND:qemux86-64 = "drm" | ||
26 | # gallium swrast was found to crash weston on startup in x32 qemu | ||
27 | DEFAULTBACKEND:qemux86-64:x86-x32 = "fbdev" | ||
28 | DEFAULTBACKEND:x86-x32 = "fbdev" | ||
29 | 23 | ||
30 | do_install() { | 24 | do_install() { |
31 | if [ "${VIRTUAL-RUNTIME_init_manager}" != "systemd" ]; then | 25 | if [ "${VIRTUAL-RUNTIME_init_manager}" != "systemd" ]; then |