summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>2023-01-24 19:53:48 +0300
committerKhem Raj <raj.khem@gmail.com>2023-01-25 08:57:42 -0800
commit290d4729e028a98f18d247f4cfb1fa371df43d1b (patch)
treef223bc749d920a7eff0f0eb450e59457ae8388cb
parent78b74ed90c3326f7394dacd98ad823b969b22ff1 (diff)
downloadmeta-openembedded-290d4729e028a98f18d247f4cfb1fa371df43d1b.tar.gz
edid-decode: an utility to parse EDID information
While parse-edid serves it's right to dump the xorg.conf style data, it lacks the ability to display most of the information found in the EDID. Add another utility to parse EDID information. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/edid-decode/edid-decode_git.bb17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/edid-decode/edid-decode_git.bb b/meta-oe/recipes-support/edid-decode/edid-decode_git.bb
new file mode 100644
index 0000000000..91570b6f35
--- /dev/null
+++ b/meta-oe/recipes-support/edid-decode/edid-decode_git.bb
@@ -0,0 +1,17 @@
1SUMMARY = "Decode EDID data in human-readable format"
2DESCRIPTION = "edid-decode decodes EDID monitor description data in human-readable format."
3AUTHOR = "Hans Verkuil <hverkuil-cisco@xs4all.nl>"
4HOMEPAGE = "https://hverkuil.home.xs4all.nl/edid-decode/edid-decode.html"
5
6SECTION = "console/utils"
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://LICENSE;md5=2ef696d66c156139232201f223c22592"
9
10SRC_URI= "git://git.linuxtv.org/edid-decode.git;protocol=https;branch=master"
11SRCREV = "e052f5f9fdf74ca11aa1a8edfa62eff8d0aa3d0d"
12PV = "0.0+git${SRCPV}"
13S = "${WORKDIR}/git"
14
15do_install() {
16 oe_runmake 'DESTDIR=${D}' install
17}