1 From f2e5939476630add3bf2c9254f72a0b57101f848 Mon Sep 17 00:00:00 2001
2 From: Marius Vlad <marius.vlad@collabora.com>
3 Date: Mon, 10 Jun 2024 12:02:33 +0300
4 Subject: [PATCH] compositor: Add missing drm-lease-name
6 This was an oversight from commit 7963529fc8e3e, 'Add drm-lease
7 support', which backported the drm-lease support in the AGL compositor
10 Without a drm-lease-name, the device_id will be an negative integer
11 resulting in not using the parameter. This should fix leasing with the
15 Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
16 Change-Id: I4282c115d2038852f6a56a77ce6ab81f2b8f62b4
18 src/compositor.c | 1 +
19 1 file changed, 1 insertion(+)
21 diff --git a/src/compositor.c b/src/compositor.c
22 index 156a0ae..65c61d8 100644
23 --- a/src/compositor.c
24 +++ b/src/compositor.c
25 @@ -1076,6 +1076,7 @@ load_drm_backend(struct ivi_compositor *ivi, int *argc, char *argv[],
26 const struct weston_option options[] = {
27 { WESTON_OPTION_STRING, "seat", 0, &config.seat_id },
28 { WESTON_OPTION_STRING, "drm-device", 0, &config.specific_device },
29 + { WESTON_OPTION_STRING, "drm-lease-name", 0, &drm_lease_name },
30 { WESTON_OPTION_BOOLEAN, "current-mode", 0, &use_current_mode },
31 { WESTON_OPTION_BOOLEAN, "use-pixman", 0, &force_pixman },
32 { WESTON_OPTION_BOOLEAN, "continue-without-input", false, &without_input }