Home
last modified time | relevance | path

Searched refs:deploy_dir_image (Results 1 – 16 of 16) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Drunqemu.py22 deploy_dir_image = '' variable in RunqemuTests
49 RunqemuTests.deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
105 cmd = "%s %s" % (self.cmd_common, self.deploy_dir_image)
113 cmd = "%s %s hddimg" % (self.cmd_common, self.deploy_dir_image)
136 qemuboot_conf = os.path.join(self.deploy_dir_image, qemuboot_conf)
147 rootfs = os.path.join(self.deploy_dir_image, rootfs)
174 cls.deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
178 cls.qemuboot_conf = os.path.join(cls.deploy_dir_image, cls.qemuboot_conf)
210 rootfs_tar = os.path.join(self.deploy_dir_image, rootfs_tar)
H A Dfitimage.py283 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
285 fitimage_its_path = os.path.join(deploy_dir_image,
287 fitimage_path = os.path.join(deploy_dir_image,
368 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
370 fitimage_its_path = os.path.join(deploy_dir_image,
372 fitimage_path = os.path.join(deploy_dir_image,
460 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
464 fitimage_path = os.path.join(deploy_dir_image,
615 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
619 fitimage_path = os.path.join(deploy_dir_image,
[all …]
H A Ddevtool.py1760 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
1762 self.add_command_to_tearDown('rm -f %s/%s*' % (deploy_dir_image, testimage))
1834 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
1837 with open(os.path.join(deploy_dir_image, image_link_name + '.manifest'), 'r') as f:
2474 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
2477 'rm -f %s/%s*' % (deploy_dir_image, testimage))
/openbmc/openbmc/poky/scripts/lib/devtool/ide_plugins/
H A Dide_none.py30 deploy_dir_image = shared_env.ide_support.deploy_dir_image
32 deploy_dir_image, 'environment-setup-' + real_multimach_target_sys)
H A Dide_code.py52 deploy_dir_image = shared_env.ide_support.deploy_dir_image
60 deploy_dir_image, 'environment-setup-' + real_multimach_target_sys)
/openbmc/openbmc/meta-openembedded/meta-oe/lib/oeqa/selftest/cases/
H A Dsyzkaller.py16 kernel_objdir = self.deploy_dir_image
95 self.deploy_dir_image = bb_vars['DEPLOY_DIR_IMAGE']
112 self.kernel = os.path.join(self.deploy_dir_image, 'bzImage')
113 …self.rootfs = os.path.join(self.deploy_dir_image, '%s-%s.%s' % (self.image, self.machine, self.fst…
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dqemutinyrunner.py22 …def __init__(self, machine, rootfs, display, tmpdir, deploy_dir_image, logfile, kernel, boottime, … argument
37 self.deploy_dir_image = deploy_dir_image
82 if not os.path.exists(self.deploy_dir_image):
83 bb.error("Invalid DEPLOY_DIR_IMAGE path %s" % self.deploy_dir_image)
86 os.environ["DEPLOY_DIR_IMAGE"] = self.deploy_dir_image
H A Dqemurunner.py45 …def __init__(self, machine, rootfs, display, tmpdir, deploy_dir_image, logfile, boottime, dump_dir… argument
64 self.deploy_dir_image = deploy_dir_image
156 if not os.path.exists(self.deploy_dir_image):
157 self.logger.error("Invalid DEPLOY_DIR_IMAGE path %s" % self.deploy_dir_image)
160 env["DEPLOY_DIR_IMAGE"] = self.deploy_dir_image
/openbmc/openbmc/poky/scripts/esdk-tools/
H A Drunqemu347 def set_machine_deploy_dir(self, machine, deploy_dir_image): argument
351 logger.debug('DEPLOY_DIR_IMAGE: %s' % deploy_dir_image)
352 self.set("DEPLOY_DIR_IMAGE", deploy_dir_image)
456 deploy_dir_image = s.group(1)
459 if self.is_deploy_dir_image(deploy_dir_image):
460 self.set_machine_deploy_dir(arg, deploy_dir_image)
759 deploy_dir_image = self.get('DEPLOY_DIR_IMAGE')
783 deploy_dir_image = self.get('DEPLOY_DIR_IMAGE')
784 glob_match = "%s/%s" % (deploy_dir_image, dtb)
786 glob_wild = "%s/*.dtb" % deploy_dir_image
[all …]
/openbmc/openbmc/poky/scripts/
H A Drunqemu347 def set_machine_deploy_dir(self, machine, deploy_dir_image): argument
351 logger.debug('DEPLOY_DIR_IMAGE: %s' % deploy_dir_image)
352 self.set("DEPLOY_DIR_IMAGE", deploy_dir_image)
456 deploy_dir_image = s.group(1)
459 if self.is_deploy_dir_image(deploy_dir_image):
460 self.set_machine_deploy_dir(arg, deploy_dir_image)
759 deploy_dir_image = self.get('DEPLOY_DIR_IMAGE')
783 deploy_dir_image = self.get('DEPLOY_DIR_IMAGE')
784 glob_match = "%s/%s" % (deploy_dir_image, dtb)
786 glob_wild = "%s/*.dtb" % deploy_dir_image
[all …]
/openbmc/openbmc/meta-arm/meta-arm-systemready/classes/
H A Darm-systemready-acs.bbclass92 deploy_dir_image = d.getVar('DEPLOY_DIR_IMAGE')
97 deployfile = os.path.join(deploy_dir_image, d.getVar('IMAGE_LINK_NAME')
105 report_file = os.path.join(deploy_dir_image, "report.txt")
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Dtargetcontrol.py125 deploy_dir_image = d.getVar("DEPLOY_DIR_IMAGE"),
136 deploy_dir_image = d.getVar("DEPLOY_DIR_IMAGE"),
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/
H A Dqemu.py43 deploy_dir_image=dir_image, display=display,
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dbuildinfohelper.py1692 def _get_image_files(self, deploy_dir_image, image_name, image_file_extensions): argument
1709 for dirpath, _, filenames in os.walk(deploy_dir_image):
1739 deploy_dir_image = \
1744 if not deploy_dir_image:
1817 artifact_path = os.path.join(deploy_dir_image, basename)
1838 package_manifest_path = os.path.join(deploy_dir_image,
1853 image_files = self._get_image_files(deploy_dir_image,
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dide_sdk.py196 self.deploy_dir_image = None
209 self.deploy_dir_image = meta_ide_support_d.getVar(
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dtestimage.bbclass251 # Get deploy_dir_image (not really used, just for compatibility)