mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
Restore multicore build support with kernel-bootstrap
This was removed as part of the simplify refactor, severely slowing down qemu and bare-metal builds. Restoring it brings us back to the same build times that we saw before the refactor.
This commit is contained in:
parent
128a59ff69
commit
42e71bfdc0
3 changed files with 16 additions and 0 deletions
|
|
@ -31,6 +31,7 @@ def create_configuration_file(args):
|
|||
config.write(f"CHROOT={args.chroot or args.bwrap}\n")
|
||||
config.write(f"UPDATE_CHECKSUMS={args.update_checksums}\n")
|
||||
config.write(f"JOBS={args.cores}\n")
|
||||
config.write(f"FINAL_JOBS={args.cores}\n")
|
||||
config.write(f"INTERNAL_CI={args.internal_ci or False}\n")
|
||||
config.write(f"BARE_METAL={args.bare_metal}\n")
|
||||
if (args.bare_metal or args.qemu) and not args.kernel:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue