blob: 085339a9c177caf59577c932113add2d86f03aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "A user-space tool to show and modify the state of GPIOs on the S3c24xx platform"
SECTION = "console/utils"
LICENSE = "GPL"
PV = "1.0+svn${SRCDATE}"
PR = "r0"
SRC_URI = "svn://svn.openmoko.org/trunk/src/target;module=gpio;proto=http"
S = "${WORKDIR}/gpio"
do_compile() {
${CC} ${CFLAGS} ${LDFLAGS} -static -o ${PN} gpio.c
}
do_install() {
install -d ${D}${sbindir}
install -m 0755 ${PN} ${D}${sbindir}
}
|