mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 09:49:32 +02:00
deploy.bbclass: use new style staging for deploy tasks
All tasks which implement a do_deploy should inherit this class to have the changes in the deploy task staged. Update recipes which include a do_deploy function to inherit this class and to use DEPLOYDIR rather than DEPLOY_DIR_IMAGE. Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
29ca893649
commit
369920107e
@@ -1,12 +1,11 @@
|
||||
require dfu-util_${PV}.bb
|
||||
|
||||
inherit native
|
||||
inherit native deploy
|
||||
|
||||
DEPENDS = "libusb-native usbpath-native"
|
||||
|
||||
do_deploy() {
|
||||
install -d ${DEPLOY_DIR_IMAGE}
|
||||
install -m 0755 src/dfu-util_static ${DEPLOY_DIR_IMAGE}/dfu-util
|
||||
install -m 0755 src/dfu-util_static ${DEPLOYDIR}/dfu-util
|
||||
}
|
||||
|
||||
addtask deploy before do_package after do_install
|
||||
|
||||
Reference in New Issue
Block a user