diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-03-02 09:17:45 +0100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-03-21 14:36:40 +0000 |
commit | 975d053dec34c40142725fdbc7d75d597d51920e (patch) | |
tree | 43c59b25f7bdc2540424ce3eb5bb8f0a7ce50e2a /meta-rcar-gen2/recipes-graphics/wayland/weston/0002-Get-DMA-fd-on-bo.patch | |
parent | 8fff09a2d58e7f21f9ee2da001601d36f18b2281 (diff) |
Remove fix Add-gst-recorder for gen2
The patches for gst-recorder are not compliant with weston 1.11.
Bug-AGL: SPEC-473
* Remove both weston.service and weston_%.bbappend
because all lines in these files only for supporting
to share screen using H.264.
Bug-AGL: SPEC-471
Bug-AGL: SPEC-411
Change-Id: I09ad20f5eadcc269aceb2d6de75cc84d00a07bb9
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'meta-rcar-gen2/recipes-graphics/wayland/weston/0002-Get-DMA-fd-on-bo.patch')
-rw-r--r-- | meta-rcar-gen2/recipes-graphics/wayland/weston/0002-Get-DMA-fd-on-bo.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-rcar-gen2/recipes-graphics/wayland/weston/0002-Get-DMA-fd-on-bo.patch b/meta-rcar-gen2/recipes-graphics/wayland/weston/0002-Get-DMA-fd-on-bo.patch deleted file mode 100644 index 2683afe..0000000 --- a/meta-rcar-gen2/recipes-graphics/wayland/weston/0002-Get-DMA-fd-on-bo.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 6c320c1319f0ef0888d9a9be614c13e5756a3228 Mon Sep 17 00:00:00 2001 -From: Grigory Kletsko <grigory.kletsko@cogentembedded.com> -Date: Wed, 2 Nov 2016 17:16:29 +0300 -Subject: [PATCH 2/2] Get DMA fd on bo - ---- - src/compositor-drm.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/compositor-drm.c b/src/compositor-drm.c -index 09611a4..85c7d0a 100644 ---- a/src/compositor-drm.c -+++ b/src/compositor-drm.c -@@ -143,6 +143,7 @@ struct drm_fb { - struct drm_output *output; - uint32_t fb_id, stride, handle, size; - int fd; -+ int dmafd; - int is_client_buffer; - struct weston_buffer_reference buffer_ref; - -@@ -411,6 +412,8 @@ drm_fb_get_from_bo(struct gbm_bo *bo, - goto err_free; - } - -+ fb->dmafd = gbm_bo_get_fd(bo); -+ - gbm_bo_set_user_data(bo, fb, drm_fb_destroy_callback); - - return fb; --- -2.7.4 - |