diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-11-09 09:31:30 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-11 10:08:12 +0000 |
commit | fb8b3eeed9946e8991a9c745809e8d1415825ad2 (patch) | |
tree | 1f841905bdc3a5e6a09ad7d125046a55ddf9ab95 /meta | |
parent | a839c9ba881ea3fae06a3a4d85e27832a9b2762d (diff) | |
download | poky-fb8b3eeed9946e8991a9c745809e8d1415825ad2.tar.gz |
weston-init: fall back to fbdev under x32
Otherwise, there's a crash in swrast - the same issue as with
X11.
(From OE-Core rev: 09ef3dacc55544143a146190c3d66fcf5dc697ad)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/wayland/weston-init.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init.bb b/meta/recipes-graphics/wayland/weston-init.bb index 4b2a6ca983..0cc32985c1 100644 --- a/meta/recipes-graphics/wayland/weston-init.bb +++ b/meta/recipes-graphics/wayland/weston-init.bb | |||
@@ -24,6 +24,9 @@ DEFAULTBACKEND_qemuall ?= "fbdev" | |||
24 | DEFAULTBACKEND_qemuarm64 = "drm" | 24 | DEFAULTBACKEND_qemuarm64 = "drm" |
25 | DEFAULTBACKEND_qemux86 = "drm" | 25 | DEFAULTBACKEND_qemux86 = "drm" |
26 | DEFAULTBACKEND_qemux86-64 = "drm" | 26 | DEFAULTBACKEND_qemux86-64 = "drm" |
27 | # gallium swrast was found to crash weston on startup in x32 qemu | ||
28 | DEFAULTBACKEND_qemux86-64_x86-x32 = "fbdev" | ||
29 | DEFAULTBACKEND_x86-x32 = "fbdev" | ||
27 | 30 | ||
28 | do_install() { | 31 | do_install() { |
29 | if [ "${VIRTUAL-RUNTIME_init_manager}" != "systemd" ]; then | 32 | if [ "${VIRTUAL-RUNTIME_init_manager}" != "systemd" ]; then |