diff options
| -rw-r--r-- | meta/classes/qemuboot.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/qemuboot.bbclass b/meta/classes/qemuboot.bbclass index 28e8a737f8..a181fa2213 100644 --- a/meta/classes/qemuboot.bbclass +++ b/meta/classes/qemuboot.bbclass | |||
| @@ -43,6 +43,7 @@ QB_OPT_APPEND ?= "-show-cursor" | |||
| 43 | 43 | ||
| 44 | # Create qemuboot.conf | 44 | # Create qemuboot.conf |
| 45 | addtask do_write_qemuboot_conf after do_rootfs before do_image | 45 | addtask do_write_qemuboot_conf after do_rootfs before do_image |
| 46 | IMGDEPLOYDIR ?= "${WORKDIR}/deploy-${PN}-image-complete" | ||
| 46 | 47 | ||
| 47 | def qemuboot_vars(d): | 48 | def qemuboot_vars(d): |
| 48 | build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', | 49 | build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', |
| @@ -55,8 +56,8 @@ do_write_qemuboot_conf[vardeps] += "${@' '.join(qemuboot_vars(d))}" | |||
| 55 | python do_write_qemuboot_conf() { | 56 | python do_write_qemuboot_conf() { |
| 56 | import configparser | 57 | import configparser |
| 57 | 58 | ||
| 58 | qemuboot = "%s/%s.qemuboot.conf" % (d.getVar('DEPLOY_DIR_IMAGE'), d.getVar('IMAGE_NAME')) | 59 | qemuboot = "%s/%s.qemuboot.conf" % (d.getVar('IMGDEPLOYDIR'), d.getVar('IMAGE_NAME')) |
| 59 | qemuboot_link = "%s/%s.qemuboot.conf" % (d.getVar('DEPLOY_DIR_IMAGE'), d.getVar('IMAGE_LINK_NAME')) | 60 | qemuboot_link = "%s/%s.qemuboot.conf" % (d.getVar('IMGDEPLOYDIR'), d.getVar('IMAGE_LINK_NAME')) |
| 60 | cf = configparser.ConfigParser() | 61 | cf = configparser.ConfigParser() |
| 61 | cf.add_section('config_bsp') | 62 | cf.add_section('config_bsp') |
| 62 | for k in qemuboot_vars(d): | 63 | for k in qemuboot_vars(d): |
