Searched refs:confpath (Results 1 – 6 of 6) sorted by relevance
/openbmc/openbmc/poky/meta/lib/bbconfigbuild/ |
H A D | configfragments.py | 92 def create_conf(self, confpath): argument 93 if not os.path.exists(confpath): 94 with open(confpath, 'w') as f: 96 with open(confpath, 'r') as f: 100 with open(confpath, 'w') as f: 109 print("Fragment {} already included in {}".format(f, args.confpath)) 118 self.create_conf(args.confpath) 119 modified = bb.utils.edit_metadata_file(args.confpath, ["OE_FRAGMENTS"], enable_helper) 121 print("Fragment {} added to {}.".format(", ".join(args.fragmentname), args.confpath)) 131 print("Fragment {} not currently enabled in {}".format(f, args.confpath)) [all …]
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | ksparser.py | 138 def __init__(self, confpath): argument 204 self._parse(parser, confpath) 209 def _parse(self, parser, confpath): argument 213 with open(confpath) as conf: 225 (confpath, lineno, err)) 231 % (confpath, lineno) 235 % (confpath, lineno) 239 err = "%s:%d: erofs does not support LABEL" % (confpath, lineno) 249 % (confpath, lineno, parsed.fsuuid, parsed.fstype) 256 % (confpath, lineno, parsed.fsuuid, parsed.fstype) [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/ |
H A D | localhostbecontroller.py | 355 confpath = os.path.join(builddir, 'conf/toaster.conf') 356 with open(confpath, 'w') as conf: 450 builddir, bitbake, confpath, toasterlayers), self.be.sourcedir) 504 … % (env_clean, brbe, self.be.bbport, local_bitbake, bbtargets, confpath, toasterlayers, log,
|
/openbmc/qemu/qga/ |
H A D | main.c | 1043 static void config_load(GAConfig *config, const char *confpath, bool required) in config_load() argument 1050 if (!g_key_file_load_from_file(keyfile, confpath, 0, &gerr)) { in config_load() 1112 confpath, gerr->message); in config_load() 1209 g_autofree char *confpath = g_strdup(g_getenv("QGA_CONF")) ?: in config_parse() local 1216 g_free(confpath); in config_parse() 1217 confpath = g_strdup(optarg); in config_parse() 1225 config_load(config, confpath, confrequired); in config_parse()
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | cooker.py | 1066 confpath = os.path.join(path, "conf", var) 1067 if os.path.exists(confpath): 1068 for root, dirs, files in os.walk(confpath):
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | package.py | 444 confpath = bb.utils.which(bbpath, conf_file) 445 if confpath:
|