aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ezx/ezx-gpiotool_svn.bb
blob: ef232e639e84fa968cf5ab3b71f430658be6c1a9 (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
DESCRIPTION = "Gpiotool can read/write gpio configuration from userspace."
SECTION = "devel"
LICENSE = "GPL"
HOMEPAGE = "http://www.openezx.org"
AUTHOR = "Harald Welte"
SRCREV = "1877"
PV = "${SRCPV}"
PR = "r0"

SRC_URI = "svn://svn.openezx.org/trunk/src/userspace;module=gpiotool;proto=http"
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}
}