summaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen3-adas/recipes-bsp/br-test/br-test.bb
blob: c3c13f25d6eaf8f24731338330ace86e210099f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SUMMARY = "Tool to communicate with Broadcom switch"
SECTION = "core"

LICENSE = "CLOSED"

PE = "1"
PV = "0.1"

SRC_URI = " \
    file://br-test.tar.gz \
"

S = "${WORKDIR}/br-test"

do_install() {
    install -d ${D}${bindir}
    
    install -m 755 br_test ${D}${bindir}
}

FILES_${PN} = " \
    ${bindir}/br_test \
"