mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3068 311d38ba-8fff-0310-9ca6-ca027cbcb966
18 lines
359 B
BlitzBasic
18 lines
359 B
BlitzBasic
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
|