Searched refs:wks_file (Results 1 – 7 of 7) sorted by relevance
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | wic.py | 594 wks_file = 'temp.wks' 601 os.remove(wks_file) 608 os.remove(wks_file) 615 os.remove(wks_file) 626 os.remove(wks_file) 633 os.remove(wks_file) 725 os.remove(wks_file) 732 os.remove(wks_file) 782 os.remove(wks_file) 789 os.remove(wks_file) [all …]
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | image_types_wic.bbclass | 137 wks_file = d.getVar('WKS_FULL_PATH') 138 with open(wks_file, 'w') as f: 144 bb.utils.copyfile(wks_file, "%s/%s" % (depdir, basename + '-' + os.path.basename(wks_file))) 154 wks_file = d.expand(wks_file_u) 155 base, ext = os.path.splitext(wks_file) 156 if ext == '.in' and os.path.exists(wks_file): 164 bb.parse.mark_dependency(d, wks_file) 167 with open(wks_file, 'r') as f:
|
/openbmc/openbmc/poky/scripts/ |
H A D | wic | 173 wks_file = options.wks_file 175 if not wks_file.endswith(".wks"): 176 wks_file = engine.find_canned_image(scripts_path, wks_file) 177 if not wks_file: 180 "kickstart (.wks) filename)" % options.wks_file) 222 engine.wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir,
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | wic | 173 wks_file = options.wks_file 175 if not wks_file.endswith(".wks"): 176 wks_file = engine.find_canned_image(scripts_path, wks_file) 177 if not wks_file: 180 "kickstart (.wks) filename)" % options.wks_file) 222 engine.wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir,
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | engine.py | 66 def find_canned_image(scripts_path, wks_file): argument 79 if ((fname.endswith(".wks") and wks_file + ".wks" == fname) or \ 80 (fname.endswith(".wks.in") and wks_file + ".wks.in" == fname)): 143 def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, argument 187 plugin = plugin_class(wks_file, rootfs_dir, bootimg_dir, kernel_dir, 192 logger.info("The image(s) were created using OE kickstart file:\n %s", wks_file) 210 wks_file = args.list_type 211 fullpath = find_canned_image(scripts_path, wks_file) 216 "filename)" % wks_file)
|
/openbmc/openbmc/poky/scripts/lib/wic/plugins/imager/ |
H A D | direct.py | 43 def __init__(self, wks_file, rootfs_dir, bootimg_dir, kernel_dir, argument 46 self.ks = KickStart(wks_file) 64 self.name = "%s-%s" % (os.path.splitext(os.path.basename(wks_file))[0],
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | wic.rst | 198 $ wic create wks_file options ... 202 wks_file: 256 $ wic create wks_file -e IMAGE_NAME 260 wks_file:
|