Searched refs:domains_file (Results 1 – 4 of 4) sorted by relevance
21 def get_default_domain_name(domains_file: Path | str) -> int:25 domains = Domains.from_file(domains_file)26 logger.debug("Loaded sysbuild domain data from %s" % domains_file)
32 domains_file = Path(build_dir) / 'domains.yaml'33 do_run_common(self, my_args, runner_args, domain_file=domains_file)
151 domains_file = Path(path) / 'domains.yaml'153 if not domains_file.is_file():164 return Domains.from_file(domains_file)
84 def from_file(domains_file): argument88 with open(domains_file, 'r') as f: