Home
last modified time | relevance | path

Searched refs:deploy_dir (Results 1 – 17 of 17) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-bsp/opensbi/
H A Dopensbi-payloads.inc6 deploy_dir = d.getVar('DEPLOY_DIR_IMAGE')
8 return "FW_PAYLOAD_PATH=" + deploy_dir + "/" + sbi_payload
14 deploy_dir = d.getVar('DEPLOY_DIR_IMAGE')
19 return "FW_FDT_PATH=" + deploy_dir + "/" + sbi_fdt
/openbmc/openbmc/poky/meta/lib/oeqa/buildperf/
H A Dtest_basic.py111 deploy_dir = os.path.join(tmp_dir, 'esdk-deploy')
112 if os.path.exists(deploy_dir):
113 shutil.rmtree(deploy_dir)
115 self.measure_cmd_resources([installer, '-y', '-d', deploy_dir],
119 self.measure_disk_usage(deploy_dir, 'deploy_dir', 'deploy dir',
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ipk/
H A D__init__.py26 if not os.path.exists(os.path.join(self.deploy_dir, "Packages")):
27 open(os.path.join(self.deploy_dir, "Packages"), "w").close()
37 pkgs_dir = os.path.join(self.deploy_dir, arch)
52 bb.note("There are no packages in %s!" % self.deploy_dir)
102 self.deploy_dir = oe.path.join(self.d.getVar('WORKDIR'), ipk_repo_workdir)
103 self.deploy_lock_file = os.path.join(self.deploy_dir, "deploy.lock")
109 …create_packages_dir(self.d, self.deploy_dir, d.getVar("DEPLOY_DIR_IPK"), "package_write_ipk", filt…
124 self.indexer = OpkgIndexer(self.d, self.deploy_dir)
212 config_file.write("src oe file:%s\n" % self.deploy_dir)
215 pkgs_dir = os.path.join(self.deploy_dir, arch)
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dbootfiles.py15 def get_boot_files(deploy_dir, boot_files): argument
48 srcs = glob(os.path.join(deploy_dir, src))
51 src = os.path.relpath(entry, deploy_dir)
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/
H A D__init__.py13 self.do_write_index(self.deploy_dir)
15 def do_write_index(self, deploy_dir): argument
22 result = create_index("%s --update -q %s" % (createrepo_c, deploy_dir))
30 signer.detach_sign(os.path.join(deploy_dir, 'repodata', 'repomd.xml'),
37 bb.note("Generating package index for %s" %(self.deploy_dir))
39 bb.utils.remove(os.path.join(self.deploy_dir, "repodata"), recurse=True)
41 self.do_write_index(self.deploy_dir)
42 for entry in os.walk(self.deploy_dir):
43 if os.path.samefile(self.deploy_dir, entry[0]):
46 dir_path = oe.path.join(self.deploy_dir, dir)
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/
H A D__init__.py61 arch_dir = os.path.join(self.deploy_dir, arch)
82 bb.note("There are no packages in %s" % self.deploy_dir)
119 self.deploy_dir = oe.path.join(self.d.getVar('WORKDIR'), deb_repo_workdir)
121 …create_packages_dir(self.d, self.deploy_dir, d.getVar("DEPLOY_DIR_DEB"), "package_write_deb", filt…
139 self.indexer = DpkgIndexer(self.d, self.deploy_dir)
315 if not os.path.exists(os.path.join(self.deploy_dir, arch)):
347 if not os.path.exists(os.path.join(self.deploy_dir, arch)):
373 os.path.join(self.deploy_dir, arch))
439 os.path.join(self.deploy_dir, pkg_arch, pkg_filename)
/openbmc/openbmc/meta-security/lib/oeqa/selftest/cases/
H A Dcvechecker.py11 deploy_dir = get_bb_var("DEPLOY_DIR_IMAGE")
14 manifest_link = os.path.join(deploy_dir, "%s.cve" % image_link_name)
/openbmc/openbmc/poky/scripts/lib/wic/plugins/source/
H A Disoimage-isohybrid.py267 deploy_dir = get_bitbake_var("DEPLOY_DIR_IMAGE")
277 if not deploy_dir:
279 cp_cmd = "cp %s/%s %s" % (deploy_dir, initrd, cr_workdir)
283 initrd = "%s/initrd" % deploy_dir
333 grub_src = os.path.join(deploy_dir, grub_src_image)
336 "Please build grub-efi first" % (grub_src_image, deploy_dir))
/openbmc/openbmc/poky/meta/lib/oe/package_manager/
H A D__init__.py147 def __init__(self, d, deploy_dir): argument
149 self.deploy_dir = deploy_dir
172 self.deploy_dir = None
415 if self.deploy_dir is None:
418 lock_file_name = os.path.join(self.deploy_dir, "deploy.lock")
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dspdx.py33 deploy_dir = get_bb_var("DEPLOY_DIR")
40 deploy_dir, "spdx", spdx_version, machine_dir, high_level_dir, spdx_file
H A Dwic.py1627 deploy_dir = get_bb_var('DEPLOY_DIR_IMAGE')
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Drunexported.py105 if args.deploy_dir:
106 d["DEPLOY_DIR"] = args.deploy_dir
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dbaremetal-image.bbclass72 deploy_dir = d.getVar('IMGDEPLOYDIR')
78 manifest_link = deploy_dir + "/" + link_name + ".manifest"
H A Drootfs-postcommands.bbclass373 deploy_dir = d.getVar('IMGDEPLOYDIR')
385 manifest_link = deploy_dir + "/" + link_name + ".manifest"
450 deploy_dir = d.getVar('IMGDEPLOYDIR')
452 testdata_name = os.path.join(deploy_dir, "%s.testdata.json" % d.getVar('IMAGE_NAME'))
458 testdata_link = os.path.join(deploy_dir, "%s.testdata.json" % link_name)
H A Dimage.bbclass609 deploy_dir = d.getVar('IMGDEPLOYDIR')
619 dst = os.path.join(deploy_dir, link_name + "." + type)
621 if os.path.exists(os.path.join(deploy_dir, src)):
/openbmc/openbmc/poky/meta/classes/
H A Dvex.bbclass194 deploy_dir = d.getVar("IMGDEPLOYDIR")
215 link_path = os.path.join(deploy_dir, "%s.json" % link_name)
H A Dcve-check.bbclass222 deploy_dir = d.getVar("IMGDEPLOYDIR")
247 link_path = os.path.join(deploy_dir, "%s.%s" % (link_name, manifest_name_suffix))