diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-04-20 23:33:56 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-04-20 23:33:56 +0200 |
commit | d8a159ad1fdc64c65453484c4a5750a3426f765e (patch) | |
tree | 030d07b3efdb7d95a86b15f19cb025df251efdbb /recipes-support/qemu-set-display | |
parent | 63960ca3c91849920bdbaa96090e208816d344ea (diff) |
Add helper to enable both displays in qemu
This supports testing the drm-leasemanager in qemu.
We can bring up two outputs, but the 2nd output is disabled until it is connected.
See https://jira.automotivelinux.org/browse/SPEC-4464
and
https://gitlab.com/qemu-project/qemu/-/issues/1107
This adds a helper tool that will bring up the 2nd screen.
Bug-AGL: SPEC-4464
Change-Id: I145a1b947916337daa9c8e7aed38e64919b35df8
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-support/qemu-set-display')
-rw-r--r-- | recipes-support/qemu-set-display/qemu-set-display_git.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes-support/qemu-set-display/qemu-set-display_git.bb b/recipes-support/qemu-set-display/qemu-set-display_git.bb new file mode 100644 index 000000000..870ac6b86 --- /dev/null +++ b/recipes-support/qemu-set-display/qemu-set-display_git.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Helper tool to enable the secondandary vnc displays" +LICENSE = "GPL-2.0-or-later" +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f" + + +SRC_URI = "git://github.com/dhobsong/qemu-set-display.git;protocol=https;branch=main" +SRCREV = "${AUTOREV}" +S = "${WORKDIR}/git" + +DEPENDS += "libvncserver" + +inherit meson pkgconfig + +PV = "0.1+git${SRCPV}" |