Searched refs:wks_file (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | wic.py | 393 wks_file = 'temp.wks' 394 with open(wks_file, 'w') as wks: 402 % (wks_file, self.resultdir)) 404 os.remove(wks_file) 481 wks_file = os.path.join(include_path, 'temp.wks') 482 with open(wks_file, 'w') as wks: 489 % (wks_file, self.resultdir)) 520 wks_file = os.path.join(include_path, 'temp.wks') 521 with open(wks_file, 'w') as wks: 526 % (wks_file, self.resultdir)) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | image_types_wic.bbclass | 114 wks_file = d.getVar('WKS_FULL_PATH') 115 with open(wks_file, 'w') as f: 121 bb.utils.copyfile(wks_file, "%s/%s" % (depdir, basename + '-' + os.path.basename(wks_file))) 131 wks_file = d.expand(wks_file_u) 132 base, ext = os.path.splitext(wks_file) 133 if ext == '.in' and os.path.exists(wks_file): 141 bb.parse.mark_dependency(d, wks_file) 144 with open(wks_file, 'r') as f:
|
| /OK3568_Linux_fs/yocto/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,
|
| /OK3568_Linux_fs/yocto/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)
|
| /OK3568_Linux_fs/yocto/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],
|
| /OK3568_Linux_fs/yocto/poky/documentation/dev-manual/ |
| H A D | common-tasks.rst | 5577 $ wic create wks_file options ... 5581 wks_file: 5635 $ wic create wks_file -e IMAGE_NAME 5639 wks_file:
|