diff options
Diffstat (limited to 'recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb')
-rw-r--r-- | recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb b/recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb new file mode 100644 index 0000000000..92110691cf --- /dev/null +++ b/recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "A user-space tool to show and modify the state of GPIOs on the S3c64xx platform" +SECTION = "console/utils" +AUTHOR = "Werner Almesberger <werner@openmoko.org>" +LICENSE = "GPL" +PV = "1.0+svnr${SRCREV}" +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-s3c6410.c +} + +do_install() { + install -d ${D}${sbindir} + install -m 0755 ${PN} ${D}${sbindir} +} |