diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-02-26 12:36:51 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-02-26 12:36:51 +0000 |
commit | 602390def86f581928680f00814cb8f2bd7ac5b9 (patch) | |
tree | dc4f3637d68fc6308817db524a2f30b8978c78cf /packages/s3c24xx-utils/sjf2410-linux-native_svn.bb | |
parent | 3c7fe1b1fbc565ebd8e5f6aa1623741711f9ac68 (diff) |
s3c2410-utils: rename to s3c24xx-utils
Diffstat (limited to 'packages/s3c24xx-utils/sjf2410-linux-native_svn.bb')
-rw-r--r-- | packages/s3c24xx-utils/sjf2410-linux-native_svn.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/s3c24xx-utils/sjf2410-linux-native_svn.bb b/packages/s3c24xx-utils/sjf2410-linux-native_svn.bb new file mode 100644 index 0000000000..60cce4a3e2 --- /dev/null +++ b/packages/s3c24xx-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+svn${SRCDATE}" +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_IMAGE} + install -m 0755 sjf2410 ${DEPLOY_DIR_IMAGE}/sjf2410 +} + +do_stage() { + : +} + +do_install() { + : +} + +addtask deploy before do_package after do_install |