aboutsummaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen3/recipes-connectivity/iccom-module/iccom-user-module.bb
blob: a735271dd1657b1c6844154d533bfe046fe04da4 (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
37
38
39
40
DESCRIPTION = "Linux ICCOM library for Renesas R-Car Gen3"

require iccom-user-module.inc

DEPENDS = " \
    kernel-module-iccom-mfis \
"

PN = "iccom-user-module"
PR = "r0"

# log output level : INFO=0 LOW=1 MED=2 HIGH=3 ERROR=4 FATAL=5 NONE=255
# (the setting of 4 means that ERROR and FATAL log are output)
export MEG_LEV="4"

S = "${WORKDIR}/libiccom"
B = "${S}/source"

do_install() {
    # Create destination directories
    install -d ${D}/${libdir}
    install -d ${D}/usr/local/include

    # Install library
    install -m 755 ${B}/libiccom.so ${D}/${libdir}/

    # Install shared header file
    install -m 644 ${S}/include/iccom_if_app.h ${D}/usr/local/include/
}

FILES_${PN} = " \
    ${libdir}/libiccom.so \
"

FILES_${PN}-dev = " \
    /usr/local/include/iccom_if_app.h \
"

# Skip debug split
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"