blob: 810d1e4f86a63a8b6cacb0729185b2cf1d5af92b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
DESCRIPTION = "AVB Streaming Driver for Linux for the R-Car Gen3"
require include/rcar-gen3-modules-common.inc
require include/avb-control.inc
LICENSE = "GPLv2 & MIT"
LIC_FILES_CHKSUM = " \
file://GPL-COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
file://MIT-COPYING;md5=704e38c3a28fde2e7fa153d3e0e787a4 \
"
inherit module distro_features_check
DEPENDS = "linux-renesas"
REQUIRED_DISTRO_FEATURES = "avb"
SRC_URI = "git://github.com/renesas-rcar/avb-streaming.git;branch=rcar-gen3"
SRCREV = "a573d90f0467bfe1e2fc06fc0790fd71d4840488"
S = "${WORKDIR}/git"
includedir="/usr/local/include"
do_install_append () {
# Create destination directories
install -d ${KERNELSRC}/include
install -d ${D}/${includedir}
# Install shared header files to KERNELSRC(STAGING_KERNEL_DIR).
# This file installed in SDK by kernel-devsrc pkg.
install -m 644 ${S}/ravb_eavb.h ${KERNELSRC}/include
# Install shared header files to ${includedir}
install -m 644 ${S}/ravb_eavb.h ${D}/${includedir}
}
|