diff options
author | Einar Gunnarsson <tolvupostur@gmail.com> | 2024-09-10 12:49:36 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-09-10 07:20:42 -0700 |
commit | f3f3e9b1b451a4b33ca65d504faddc958152643f (patch) | |
tree | e23e3dfdf9a058e7b39fd76cb669acc94979aedc /meta-oe/recipes-multimedia | |
parent | cd69b51b61e57ed199b988122d2903627dd557b6 (diff) | |
download | meta-openembedded-f3f3e9b1b451a4b33ca65d504faddc958152643f.tar.gz |
yavta: Update to kernel 6.8
Additional changes:
Use https protocol for git fetch
Build with meson
Signed-off-by: Einar Jon Gunnarsson <tolvupostur@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia')
-rw-r--r-- | meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb b/meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb index c4f31c033..db00c67b1 100644 --- a/meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb +++ b/meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb | |||
@@ -2,9 +2,9 @@ SUMMARY = "Yet Another V4L2 Test Application" | |||
2 | LICENSE = "GPL-2.0-only" | 2 | LICENSE = "GPL-2.0-only" |
3 | LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe" | 3 | LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe" |
4 | 4 | ||
5 | SRC_URI = "git://git.ideasonboard.org/yavta.git;branch=master \ | 5 | SRC_URI = "git://git.ideasonboard.org/yavta.git;branch=master;protocol=https \ |
6 | " | 6 | " |
7 | SRCREV = "65f740aa1758531fd810339bc1b7d1d33666e28a" | 7 | SRCREV = "323facd1d5bd6251eec70dd5c1484a12ce01202a" |
8 | 8 | ||
9 | PV = "0.0" | 9 | PV = "0.0" |
10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
@@ -12,16 +12,4 @@ S = "${WORKDIR}/git" | |||
12 | # Upstream repo does not tag | 12 | # Upstream repo does not tag |
13 | UPSTREAM_CHECK_COMMITS = "1" | 13 | UPSTREAM_CHECK_COMMITS = "1" |
14 | 14 | ||
15 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | 15 | inherit meson |
16 | |||
17 | # The yavta sources include copies of the headers required to build in the | ||
18 | # include directory. The Makefile uses CFLAGS to include these, but since | ||
19 | # we override the CFLAGS then we need to add this include path back in. | ||
20 | CFLAGS += "-I${S}/include" | ||
21 | |||
22 | do_install() { | ||
23 | install -d ${D}${bindir} | ||
24 | install -m 0755 yavta ${D}${bindir} | ||
25 | } | ||
26 | |||
27 | |||