Home
last modified time | relevance | path

Searched refs:deploy_dir (Results 1 – 16 of 16) 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__.py25 if not os.path.exists(os.path.join(self.deploy_dir, "Packages")):
26 open(os.path.join(self.deploy_dir, "Packages"), "w").close()
36 pkgs_dir = os.path.join(self.deploy_dir, arch)
51 bb.note("There are no packages in %s!" % self.deploy_dir)
171 self.deploy_dir = oe.path.join(self.d.getVar('WORKDIR'), ipk_repo_workdir)
172 self.deploy_lock_file = os.path.join(self.deploy_dir, "deploy.lock")
193 self.indexer = OpkgIndexer(self.d, self.deploy_dir)
281 config_file.write("src oe file:%s\n" % self.deploy_dir)
284 pkgs_dir = os.path.join(self.deploy_dir, arch)
317 … if (feed_archs is None) and (not os.path.exists(oe.path.join(self.deploy_dir, arch))):
[all …]
/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/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/oeqa/selftest/cases/
H A Dspdx.py26 deploy_dir = get_bb_var("DEPLOY_DIR")
31 full_file_path = os.path.join(deploy_dir, "spdx", machine_dir, high_level_dir, spdx_file)
H A Dwic.py1467 deploy_dir = get_bb_var('DEPLOY_DIR_IMAGE')
/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))
H A Dbootimg-efi.py311 deploy_dir = get_bitbake_var("DEPLOY_DIR_IMAGE")
312 efi_stub = glob("%s/%s" % (deploy_dir, "linux*.efi.stub"))
331 with open("%s/%s" % (deploy_dir, f), 'rb') as in_file:
371 dtb_path = "%s/%s" % (deploy_dir, dtb)
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/
H A D__init__.py60 arch_dir = os.path.join(self.deploy_dir, arch)
81 bb.note("There are no packages in %s" % self.deploy_dir)
184 self.deploy_dir = oe.path.join(self.d.getVar('WORKDIR'), deb_repo_workdir)
186 …create_packages_dir(self.d, self.deploy_dir, d.getVar("DEPLOY_DIR_DEB"), "package_write_deb", filt…
204 self.indexer = DpkgIndexer(self.d, self.deploy_dir)
380 if not os.path.exists(os.path.join(self.deploy_dir, arch)):
412 if not os.path.exists(os.path.join(self.deploy_dir, arch)):
438 os.path.join(self.deploy_dir, arch))
504 os.path.join(self.deploy_dir, pkg_arch, pkg_filename)
/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
417 if self.deploy_dir is None:
420 lock_file_name = os.path.join(self.deploy_dir, "deploy.lock")
/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.bbclass49 deploy_dir = d.getVar('IMGDEPLOYDIR')
55 manifest_link = deploy_dir + "/" + link_name + ".manifest"
H A Drootfs-postcommands.bbclass371 deploy_dir = d.getVar('IMGDEPLOYDIR')
383 manifest_link = deploy_dir + "/" + link_name + ".manifest"
448 deploy_dir = d.getVar('IMGDEPLOYDIR')
450 testdata_name = os.path.join(deploy_dir, "%s.testdata.json" % d.getVar('IMAGE_NAME'))
456 testdata_link = os.path.join(deploy_dir, "%s.testdata.json" % link_name)
H A Dimage.bbclass592 deploy_dir = d.getVar('IMGDEPLOYDIR')
602 dst = os.path.join(deploy_dir, link_name + "." + type)
604 if os.path.exists(os.path.join(deploy_dir, src)):
/openbmc/openbmc/poky/meta/classes/
H A Dcve-check.bbclass241 deploy_dir = d.getVar("IMGDEPLOYDIR")
271 link_path = os.path.join(deploy_dir, "%s.cve" % link_name)
281 link_path = os.path.join(deploy_dir, "%s.json" % link_name)