aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti/ti-pru-sw-app-loader_1.00.00.bb
blob: 394c3abaea73c82ab144ad863ec16f93cb44233b (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
DESCRIPTION = "PRU sw application loader"
HOMEPAGE = "https://gforge.ti.com/gf/project/pru_sw/"
LICENSE = "BSD"
PR = "r1+svnr${SRCPV}"

COMPATIBLE_MACHINE = "omapl138"

SRC_URI = "svn://gforge.ti.com/svn/pru_sw/;module=trunk;proto=https;user=anonymous;pswd=''"

SRCREV = "24"
S = "${WORKDIR}/trunk/app_loader"

TARGET_CC_ARCH += "${LDFLAGS}"

do_compile () {
        oe_runmake -C ${S}/interface
}

do_install () {
        install -d ${D}${libdir}
        install -d ${D}${includedir}
        install -m 0644 ${S}/include/* ${D}${includedir}
        install -m 0644 ${S}/lib/* ${D}${libdir}
}