diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2007-01-02 00:04:48 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2007-01-02 00:04:48 +0000 |
commit | 49377b6bf81825481bb3c949520b7819af605bad (patch) | |
tree | 1a343f738e97f2b9f8929b7f48c81fe567fb69d4 /packages/ezx/ezx-boot-usb-native_svn.bb | |
parent | 49168b1bd065468e41c98b5c294be98dc90f533e (diff) | |
parent | 8d7a61dba67097e2b57ee4be1a531a7e3fd2153e (diff) |
merge of '132be09ee353f798eadc984f8f09e27e68180850'
and 'c0e1d74b2a331789caaf72b458b57924d21c7da3'
Diffstat (limited to 'packages/ezx/ezx-boot-usb-native_svn.bb')
-rw-r--r-- | packages/ezx/ezx-boot-usb-native_svn.bb | 35 |
1 files changed, 35 insertions, 0 deletions
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..64e8a486e0 --- /dev/null +++ b/packages/ezx/ezx-boot-usb-native_svn.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "Boots an EZX device with a user supplied kernel zImage" +DEPENDS = "libusb-native" +SECTION = "devel" +AUTHOR = "Harald Welte" +LICENSE = "GPL" +PR = "r1" + +DEFAULT_PREFERENCE = "-1" + +REV = "1922" +PV = "0.1.0+r${REV}" + +SRC_URI = "svn://svn.openezx.org/trunk/src/host;module=boot_usb;proto=http;rev=${REV}" +S = "${WORKDIR}/boot_usb" + +inherit native + +do_compile() { + ${CC} ${CFLAGS} ${LDFLAGS} -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 |