mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-05-09 13:01:00 +00:00
97fde0cad2
We are moving the meta-arago-test layer to meta-ti-test. This commit imports all of the recipes under recipes-devtools. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
20 lines
522 B
BlitzBasic
20 lines
522 B
BlitzBasic
SUMMARY = "UVC gadget userspace sample application"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://uvc-gadget.c;beginline=1;endline=18;md5=414860c3c534dc95d81da9564cfb8d2a"
|
|
|
|
SRC_URI = "git://git.ideasonboard.org/uvc-gadget.git;branch=master"
|
|
|
|
PV = "1.1+git"
|
|
SRCREV = "aa82df887ab995473cd83c89777cdf4bc4685dd0"
|
|
|
|
EXTRA_OEMAKE = 'CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" KERNEL_INCLUDE=""'
|
|
|
|
do_compile () {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m755 uvc-gadget ${D}${bindir}
|
|
}
|