blob: 81a1ecc2a0675a2640dc517a2f796b17cd9e17ab (
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
|
DESCRIPTION = "Gpiotool can read/write gpio configuration from userspace."
SECTION = "devel"
LICENSE = "GPL"
HOMEPAGE = "http://www.openezx.org"
AUTHOR = "Harald Welte"
PR = "r0"
SRC_URI = "svn://svn.openezx.org/trunk/src/userspace;module=gpiotool;proto=http;rev=${PV}"
S = "${WORKDIR}/gpiotool"
do_compile() {
for i in mmio.c gpiotool.c gpio.c
do
${CC} ${CFLAGS} -c $i
done
${CC} ${CFLAGS} -o ezx-gpiotool mmio.o gpiotool.o gpio.o
}
do_stage() {
:
}
do_install() {
install -d ${D}${sbindir}
install -m 0755 ezx-gpiotool ${D}${sbindir}
}
|