MCPcopy Index your code
hub / github.com/ClangBuiltLinux/boot-utils / main

Function main

buildroot/rebuild.py:171–185  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

169
170
171def main():
172 args = parse_arguments()
173
174 if not shutil.which('zstd'):
175 msg = 'zstd could not be found on your system, please install it!'
176 raise RuntimeError(msg)
177
178 architectures = SUPPORTED_ARCHES if 'all' in args.architectures else args.architectures
179
180 download_and_extract_buildroot()
181 for arch in architectures:
182 build_image(arch, args.edit_config, args.savedefconfig)
183
184 if args.release:
185 release_images()
186
187
188if __name__ == '__main__':

Callers 1

rebuild.pyFile · 0.70

Calls 4

build_imageFunction · 0.85
release_imagesFunction · 0.85
parse_argumentsFunction · 0.70

Tested by

no test coverage detected