Skip to content

Commit 59ef6be

Browse files
committed
Add rpmsg_utils: User space utilities to exercise /dev/rpmsg*
This set of utilities has existed for over a year but have not been built or packaged in OE until now. These utilities are in the same git rep as the other examples. Rev them as a group and reuse the inc file. Signed-off-by: Bill Mills <bill.mills@linaro.org>
1 parent 27f22af commit 59ef6be

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
SUMMARY = "RPMsg utilities: utilities for /dev/rpmsg*"
2+
3+
include rpmsg-example.inc
4+
5+
S = "${WORKDIR}/git/examples/linux/rpmsg-utils"
6+
7+
RRECOMMENDS:${PN} = "kernel-module-rpmsg-ctrl kernel-module-rpmsg-char"
8+
9+
FILES:${PN} = "\
10+
/usr/bin/rpmsg_destroy_ept \
11+
/usr/bin/rpmsg_export_dev \
12+
/usr/bin/rpmsg_export_ept \
13+
/usr/bin/rpmsg_ping \
14+
"
15+
16+
EXTRA_OEMAKE = "DESTDIR=${D} prefix=/usr CC='${CC}' CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'"
17+
18+
do_install() {
19+
install -d ${D}/usr/bin
20+
oe_runmake install
21+
}

0 commit comments

Comments
 (0)