From: Robert Yang Date: Tue, 22 Nov 2016 10:13:00 +0000 (-0800) Subject: qemuboot.bbclass: use IMGDEPLOYDIR X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~23046 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0704f15d1ad7483f80ffa18fa32b6115923641cf;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git qemuboot.bbclass: use IMGDEPLOYDIR So that "bitbake -ccleansstate" can remove qemuboot.conf Signed-off-by: Robert Yang Signed-off-by: Ross Burton --- diff --git a/meta/classes/qemuboot.bbclass b/meta/classes/qemuboot.bbclass index 28e8a737f8a..a181fa22139 100644 --- a/meta/classes/qemuboot.bbclass +++ b/meta/classes/qemuboot.bbclass @@ -43,6 +43,7 @@ QB_OPT_APPEND ?= "-show-cursor" # Create qemuboot.conf addtask do_write_qemuboot_conf after do_rootfs before do_image +IMGDEPLOYDIR ?= "${WORKDIR}/deploy-${PN}-image-complete" def qemuboot_vars(d): build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', @@ -55,8 +56,8 @@ do_write_qemuboot_conf[vardeps] += "${@' '.join(qemuboot_vars(d))}" python do_write_qemuboot_conf() { import configparser - qemuboot = "%s/%s.qemuboot.conf" % (d.getVar('DEPLOY_DIR_IMAGE'), d.getVar('IMAGE_NAME')) - qemuboot_link = "%s/%s.qemuboot.conf" % (d.getVar('DEPLOY_DIR_IMAGE'), d.getVar('IMAGE_LINK_NAME')) + qemuboot = "%s/%s.qemuboot.conf" % (d.getVar('IMGDEPLOYDIR'), d.getVar('IMAGE_NAME')) + qemuboot_link = "%s/%s.qemuboot.conf" % (d.getVar('IMGDEPLOYDIR'), d.getVar('IMAGE_LINK_NAME')) cf = configparser.ConfigParser() cf.add_section('config_bsp') for k in qemuboot_vars(d):