Home
last modified time | relevance | path

Searched refs:json_path (Results 1 – 4 of 4) sorted by relevance

/openbmc/openbmc/poky/meta/lib/bblayers/setupwriters/
H A Doe-setup-layers.py34 def _read_repo_config(self, json_path): argument
35 with open(json_path) as f:
40 …err = "File {} has version {}, which is not in supported versions: {}".format(json_path, json_conf…
/openbmc/openbmc/poky/scripts/lib/devtool/ide_plugins/
H A D__init__.py230 json_path = os.path.join(json_dir, json_file)
232 (json_file, json_path))
236 with open(json_path) as f:
240 "Decoding %s failed. Probably because of comments in the json file" % json_path)
245 with open(json_path, 'w') as f:
/openbmc/qemu/tests/vm/
H A Dbasevm.py505 def get_qemu_packages_from_lcitool_json(self, json_path=None): argument
507 if json_path is None:
508 json_path = os.path.join(
511 with open(json_path, "r") as fh:
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dide_sdk.py619 json_path = os.path.join(self.real_srctree, json_file)
620 logger.info("Updating CMake preset: %s (%s)" % (json_file, json_path))
624 with open(json_path) as f:
628 "Decoding %s failed. Probably because of comments in the json file" % json_path)
661 with open(json_path, 'w') as f: