From 98c18177fd70c8be0d69c6984aeb8fb98b9b89ae Mon Sep 17 00:00:00 2001 From: Hiago De Franco Date: Sun, 3 Nov 2024 15:31:01 -0300 Subject: [PATCH] drm-info: add recipe This recipe provides information about DRM devices, useful for debugging and checking information about DRM. Signed-off-by: Hiago De Franco Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/drm/drm-info_2.7.0.bb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 meta-oe/recipes-graphics/drm/drm-info_2.7.0.bb diff --git a/meta-oe/recipes-graphics/drm/drm-info_2.7.0.bb b/meta-oe/recipes-graphics/drm/drm-info_2.7.0.bb new file mode 100644 index 0000000000..9f1cbb47fb --- /dev/null +++ b/meta-oe/recipes-graphics/drm/drm-info_2.7.0.bb @@ -0,0 +1,13 @@ +SUMMARY = "Small utility to dump info about DRM devices" +HOMEPAGE = "https://gitlab.freedesktop.org/emersion/drm_info" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=32fd56d355bd6a61017655d8da26b67c" + +SRC_URI = "git://gitlab.freedesktop.org/emersion/drm_info.git;branch=master;protocol=https" +SRCREV = "c1f5ca4cf750b26eb26c1d9d5c2ef057acbcfefc" + +S = "${WORKDIR}/git" + +inherit meson pkgconfig + +DEPENDS = "json-c libdrm"