diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2016-10-24 15:24:57 +0300 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2016-10-24 15:03:47 +0000 |
commit | f6320f5660db15a207f69fbe2ea6e837bd832b34 (patch) | |
tree | 21988012108f4a816a5447db253a339e395cf45b | |
parent | 557b015963c8f0b54baa772595252b101d9012eb (diff) |
weston: Launch even without input devices
Launch Weston even if there are no input devices
such a keyboard or a mouse.
Bug-AGL: SPEC-297
Change-Id: I3187b310b1024ef77d4696a06b325bface5de2b3
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
-rw-r--r-- | meta-agl/recipes-graphics/wayland/weston/0001-compositor-drm.c-Launch-without-input-devices.patch | 28 | ||||
-rw-r--r-- | meta-agl/recipes-graphics/wayland/weston_1.9.0.bb | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-agl/recipes-graphics/wayland/weston/0001-compositor-drm.c-Launch-without-input-devices.patch b/meta-agl/recipes-graphics/wayland/weston/0001-compositor-drm.c-Launch-without-input-devices.patch new file mode 100644 index 000000000..0d7b9ee61 --- /dev/null +++ b/meta-agl/recipes-graphics/wayland/weston/0001-compositor-drm.c-Launch-without-input-devices.patch @@ -0,0 +1,28 @@ +From d46538cde290f2638d3631a8789f659b433c2d2a Mon Sep 17 00:00:00 2001 +From: Leon Anavi <leon.anavi@konsulko.com> +Date: Mon, 24 Oct 2016 14:54:02 +0300 +Subject: [PATCH] compositor-drm.c: Launch without input devices + +Launch Weston 1.9 even if input devices (such as +a keyboard or a mouse) are not present. + +Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> +--- + src/compositor-drm.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/src/compositor-drm.c b/src/compositor-drm.c +index 6777bf8..ab493ad 100644 +--- a/src/compositor-drm.c ++++ b/src/compositor-drm.c +@@ -3149,7 +3149,6 @@ drm_backend_create(struct weston_compositor *compositor, + if (udev_input_init(&b->input, + compositor, b->udev, param->seat_id) < 0) { + weston_log("failed to create input devices\n"); +- goto err_sprite; + } + + if (create_outputs(b, param->connector, drm_device) < 0) { +-- +2.7.4 + diff --git a/meta-agl/recipes-graphics/wayland/weston_1.9.0.bb b/meta-agl/recipes-graphics/wayland/weston_1.9.0.bb index 5d51992bc..bee457a90 100644 --- a/meta-agl/recipes-graphics/wayland/weston_1.9.0.bb +++ b/meta-agl/recipes-graphics/wayland/weston_1.9.0.bb @@ -11,6 +11,7 @@ SRC_URI = "http://wayland.freedesktop.org/releases/${BPN}-${PV}.tar.xz \ file://make-lcms-explicitly-configurable.patch \ file://make-libwebp-explicitly-configurable.patch \ file://0001-make-error-portable.patch \ + file://0001-compositor-drm.c-Launch-without-input-devices.patch \ " SRC_URI[md5sum] = "66bbba12f546570b4d97f676bc79a28e" SRC_URI[sha256sum] = "9c1b03f3184fa0b0dfdf67e215048085156e1a2ca344af6613fed36794ac48cf" |