dfu-util: added from OE

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3068 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2007-11-05 15:48:38 +00:00
parent 5853cf2e14
commit 139d157060
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,17 @@
require dfu-util_${PV}.bb
inherit native
DEPENDS = "libusb-native usbpath-native"
do_stage() {
install -d ${STAGING_BINDIR_NATIVE}
install -m 0755 src/dfu-util ${STAGING_BINDIR_NATIVE}/
}
do_deploy() {
install -d ${DEPLOY_DIR_IMAGE}
install -m 0755 src/dfu-util_static ${DEPLOY_DIR_IMAGE}/dfu-util
}
addtask deploy before do_package after do_install

View File

@ -0,0 +1,17 @@
DESCRIPTION = "USB Device Firmware Upgrade utility"
SECTION = "devel"
AUTHOR = "Harald Welte"
LICENSE = "GPL"
PV = "0.1+svnr${SRCREV}"
PR = "r0"
DEPENDS = "libusb usbpath"
SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=dfu-util;proto=http"
S = "${WORKDIR}/dfu-util"
inherit autotools
do_stage() {
autotools_stage_all
}