From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- .../s3c2410-boot-usb-native_svn.bb | 31 +++++++++++++++++++++ recipes/samsung-soc-utils/s3c24xx-gpio_svn.bb | 18 ++++++++++++ recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb | 18 ++++++++++++ .../samsung-soc-utils/sjf2410-linux-native_svn.bb | 32 ++++++++++++++++++++++ 4 files changed, 99 insertions(+) create mode 100644 recipes/samsung-soc-utils/s3c2410-boot-usb-native_svn.bb create mode 100644 recipes/samsung-soc-utils/s3c24xx-gpio_svn.bb create mode 100644 recipes/samsung-soc-utils/s3c64xx-gpio_svn.bb create mode 100644 recipes/samsung-soc-utils/sjf2410-linux-native_svn.bb (limited to 'recipes/samsung-soc-utils') diff --git a/recipes/samsung-soc-utils/s3c2410-boot-usb-native_svn.bb b/recipes/samsung-soc-utils/s3c2410-boot-usb-native_svn.bb new file mode 100644 index 0000000000..675d07c910 --- /dev/null +++ b/recipes/samsung-soc-utils/s3c2410-boot-usb-native_svn.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Boots a S3C2410 device with a user supplied kernel zImage" +DEPENDS = "libusb-native" +SECTION = "devel" +AUTHOR = "Harald Welte " +LICENSE = "GPL" +PV = "0.1.0+svnr${SRCREV}" +PR = "r1" + +SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=s3c2410_boot_usb;proto=https" +S = "${WORKDIR}/s3c2410_boot_usb" + +inherit native + +do_compile() { + ${CC} ${CFLAGS} ${LDFLAGS} -lusb -o s3c2410-boot-usb boot_usb.c +} + +do_deploy() { + install -d ${DEPLOY_DIR_TOOLS} + install -m 0755 s3c2410-boot-usb ${DEPLOY_DIR_TOOLS}/s3c2410-boot-usb-${PV} +} + +do_stage() { + : +} + +do_install() { + : +} + +addtask deploy before do_build after do_compile diff --git a/recipes/samsung-soc-utils/s3c24xx-gpio_svn.bb b/recipes/samsung-soc-utils/s3c24xx-gpio_svn.bb new file mode 100644 index 0000000000..0a57d2c0e6 --- /dev/null +++ b/recipes/samsung-soc-utils/s3c24xx-gpio_svn.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "A user-space tool to show and modify the state of GPIOs on the S3c24xx platform" +SECTION = "console/utils" +AUTHOR = "Werner Almesberger " +LICENSE = "GPL" +PV = "1.0+svnr${SRCREV}" +PR = "r2" + +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} +} 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 " +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} +} diff --git a/recipes/samsung-soc-utils/sjf2410-linux-native_svn.bb b/recipes/samsung-soc-utils/sjf2410-linux-native_svn.bb new file mode 100644 index 0000000000..fcfbba923d --- /dev/null +++ b/recipes/samsung-soc-utils/sjf2410-linux-native_svn.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "JTAG utility to interface w/ a S3C2410 device" +SECTION = "devel" +AUTHOR = "Harald Welte " +LICENSE = "GPL" +PV = "0.1+svnr${SRCREV}" +PR = "r0" + +SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=sjf2410-linux;proto=https" +S = "${WORKDIR}/sjf2410-linux" + +inherit native + +CFLAGS += "-DLINUX_PPDEV" + +do_compile() { + oe_runmake +} + +do_deploy() { + install -d ${DEPLOY_DIR_TOOLS} + install -m 0755 sjf2410 ${DEPLOY_DIR_TOOLS}/sjf2410-${PV} +} + +do_stage() { + : +} + +do_install() { + : +} + +addtask deploy before do_package after do_install -- cgit v1.2.3