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

Function buildroot_make

buildroot/rebuild.py:34–38  ·  view source on GitHub ↗
(make_arg=None, **kwargs)

Source from the content-addressed store, hash-verified

32
33
34def buildroot_make(make_arg=None, **kwargs):
35 make_cmd = ['make', f"-j{os.cpu_count()}"]
36 if make_arg:
37 make_cmd.append(make_arg)
38 subprocess.run(make_cmd, **kwargs, check=True, cwd=SRC_FOLDER)
39
40
41def build_image(architecture, edit_config, savedefconfig):

Callers 1

build_imageFunction · 0.85

Calls 1

runMethod · 0.45

Tested by

no test coverage detected