Lines Matching full:files
8 """Build a FIT containing a lot of devicetree files
15 Creates a FIT containing the supplied kernel and a set of devicetree files,
28 looks at the .cmd files produced by the kernel build.
66 epilog = 'Build a FIT from a directory tree containing .dtb files'
87 help='Specifies the devicetree files to process')
150 for model, compat, files in entries:
155 fsw.property('fdt', bytes(''.join(f'fdt-{x}\x00' for x in files), "ascii"))
225 files: list of filenames corresponding to the DTB
243 files = cmd.split()
244 files = files[files.index('-i') + 1:]
246 files = [fname]
248 files = [fname]
250 return (model, compat, files)
253 """Build the FIT from the provided files and arguments
278 # Ignore non-DTB (*.dtb) files
282 (model, compat, files) = process_dtb(fname, args)
284 for fn in files:
291 files_seq = [fdts[fn] for fn in files]
327 print(f', {count} files, uncompressed {size / 1024 / 1024:.1f} MB')