| /openbmc/openbmc/poky/scripts/lib/devtool/ide_plugins/ |
| H A D | ide_none.py | 30 deploy_dir_image = shared_env.ide_support.deploy_dir_image 32 deploy_dir_image, 'environment-setup-' + real_multimach_target_sys)
|
| H A D | ide_code.py | 52 deploy_dir_image = shared_env.ide_support.deploy_dir_image 60 deploy_dir_image, 'environment-setup-' + real_multimach_target_sys)
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | runqemu.py | 22 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 D | fitimage.py | 426 deploy_dir_image = bb_vars['DEPLOY_DIR_IMAGE'] 442 fitimage_its_path = os.path.realpath(os.path.join(deploy_dir_image, fitimage_its_name)) 443 fitimage_path = os.path.realpath(os.path.join(deploy_dir_image, fitimage_name)) 626 deploy_dir_image = bb_vars['DEPLOY_DIR_IMAGE'] 638 dtb_path = os.path.join(deploy_dir_image, section.replace('conf-', '')) 940 deploy_dir_image = bb_vars['DEPLOY_DIR_IMAGE'] 942 fitimage_its_path = os.path.join(deploy_dir_image, "u-boot-its-%s" % machine) 943 fitimage_path = os.path.join(deploy_dir_image, "u-boot-fitImage-%s" % machine)
|
| H A D | devtool.py | 1819 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') 1821 self.add_command_to_tearDown('rm -f %s/%s*' % (deploy_dir_image, testimage)) 1895 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') 1898 with open(os.path.join(deploy_dir_image, image_link_name + '.manifest'), 'r') as f: 2581 deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') 2584 'rm -f %s/%s*' % (deploy_dir_image, testimage))
|
| /openbmc/openbmc/meta-openembedded/meta-oe/lib/oeqa/selftest/cases/ |
| H A D | syzkaller.py | 16 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 D | qemutinyrunner.py | 22 …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 D | qemurunner.py | 47 …def __init__(self, machine, rootfs, display, tmpdir, deploy_dir_image, logfile, boottime, dump_dir… argument 66 self.deploy_dir_image = deploy_dir_image 158 if not os.path.exists(self.deploy_dir_image): 159 self.logger.error("Invalid DEPLOY_DIR_IMAGE path %s" % self.deploy_dir_image) 162 env["DEPLOY_DIR_IMAGE"] = self.deploy_dir_image
|
| /openbmc/openbmc/poky/scripts/esdk-tools/ |
| H A D | runqemu | 347 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) 462 logger.error("%s not a directory valid DEPLOY_DIR_IMAGE" % deploy_dir_image) 762 deploy_dir_image = self.get('DEPLOY_DIR_IMAGE') 764 kernel_match_name = "%s/%s" % (deploy_dir_image, kernel_name) 765 kernel_match_link = "%s/%s" % (deploy_dir_image, sel [all...] |
| /openbmc/openbmc/poky/scripts/ |
| H A D | runqemu | 347 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) 462 logger.error("%s not a directory valid DEPLOY_DIR_IMAGE" % deploy_dir_image) 762 deploy_dir_image = self.get('DEPLOY_DIR_IMAGE') 764 kernel_match_name = "%s/%s" % (deploy_dir_image, kernel_name) 765 kernel_match_link = "%s/%s" % (deploy_dir_image, self.get('KERNEL_IMAGETYPE')) [all …]
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | uki.bbclass | 116 deploy_dir_image = d.getVar('DEPLOY_DIR_IMAGE') 131 ukify_cmd += " --initrd=%s" % (os.path.join(deploy_dir_image, initramfs_image)) 136 kernel = "%s/%s" % (deploy_dir_image, kernel_filename) 155 dtb_path = "%s/%s" % (deploy_dir_image, dtb)
|
| H A D | testimage.bbclass | 255 # Get deploy_dir_image (not really used, just for compatibility)
|
| /openbmc/openbmc/meta-arm/meta-arm-systemready/classes/ |
| H A D | arm-systemready-acs.bbclass | 92 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 D | targetcontrol.py | 125 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 D | qemu.py | 43 deploy_dir_image=dir_image, display=display,
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
| H A D | buildinfohelper.py | 1695 def _get_image_files(self, deploy_dir_image, image_name, image_file_extensions): argument 1712 for dirpath, _, filenames in os.walk(deploy_dir_image): 1742 deploy_dir_image = \ 1747 if not deploy_dir_image: 1820 artifact_path = os.path.join(deploy_dir_image, basename) 1841 package_manifest_path = os.path.join(deploy_dir_image, 1856 image_files = self._get_image_files(deploy_dir_image,
|
| /openbmc/openbmc/poky/scripts/lib/devtool/ |
| H A D | ide_sdk.py | 196 self.deploy_dir_image = None 209 self.deploy_dir_image = meta_ide_support_d.getVar(
|