diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-05-13 20:09:03 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-13 20:09:03 +0000 |
commit | d525077ac27d0fd93215fd4e9dd3e132398c025b (patch) | |
tree | b08d564d5d595f6fd7028c49e87444b012a9cbea /packages/ezx | |
parent | d3fd866376880d9cd39d3a32a9ef533e7c186111 (diff) |
add ezx-boot-usb-native, an utility to boot a zImage on an EZX device via USB
Diffstat (limited to 'packages/ezx')
-rw-r--r-- | packages/ezx/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/ezx/ezx-boot-usb-native_svn.bb | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/packages/ezx/.mtn2git_empty b/packages/ezx/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/ezx/.mtn2git_empty diff --git a/packages/ezx/ezx-boot-usb-native_svn.bb b/packages/ezx/ezx-boot-usb-native_svn.bb new file mode 100644 index 0000000000..6bcc80e4ce --- /dev/null +++ b/packages/ezx/ezx-boot-usb-native_svn.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Boots an EZX device with a user supplied kernel zImage" +DEPENDS = "libusb-native" +SECTION = "devel" +LICENSE = "GPL" + +SRC_URI = "svn://svn.openezx.org/trunk/src;module=boot_usb;proto=http" +S = "${WORKDIR}/boot_usb" + +inherit native + +do_compile() { + ${CC} ${CFLAGS} -lusb -o ezx-boot-usb boot_usb.c +} + +do_deploy() { + install -d ${DEPLOY_DIR_IMAGE} + install -m 0755 ezx-boot-usb ${DEPLOY_DIR_IMAGE}/ezx-boot-usb +} + +do_stage() { + : +} + +do_install() { + : +} + +addtask deploy before do_build after do_compile |