logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 01a4f90378a5f76b93c4c05ecc4e80ef76bef9bb
parent 31753cccb5186349d54ced93934c4cabbed2bcef
Author: fosslinux <fosslinux@aussies.space>
Date:   Wed, 10 Jan 2024 07:16:10 +0000

Merge pull request #388 from Googulator/kernel-bootstrap-jobs

Restore multicore build support with kernel-bootstrap

Diffstat:

Mrootfs.py1+
Asteps/improve/finalize_job_count.sh14++++++++++++++
Msteps/improve/update_env.sh2+-
Msteps/manifest1+
4 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/rootfs.py b/rootfs.py @@ -33,6 +33,7 @@ def create_configuration_file(args): config.write(f"UPDATE_CHECKSUMS={args.update_checksums}\n") config.write(f"JOBS={args.cores}\n") config.write(f"SWAP_SIZE={args.swap}\n") + config.write(f"FINAL_JOBS={args.cores}\n") config.write(f"INTERNAL_CI={args.internal_ci or False}\n") config.write(f"INTERACTIVE={args.interactive}\n") config.write(f"BARE_METAL={args.bare_metal}\n") diff --git a/steps/improve/finalize_job_count.sh b/steps/improve/finalize_job_count.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# +# SPDX-FileCopyrightText: 2024 Gábor Stefanik <netrolller.3d@gmail.com> +# +# SPDX-License-Identifier: GPL-3.0-or-later +# +# Finalize job count once SMP support is available + +cat >> /steps/bootstrap.cfg <<- EOF +JOBS=${FINAL_JOBS} +EOF + +. /steps/bootstrap.cfg +. /steps/env diff --git a/steps/improve/update_env.sh b/steps/improve/update_env.sh @@ -6,7 +6,7 @@ unset GUILE_LOAD_PATH -cat > /steps/env <<- EOF +cat >> /steps/env <<- 'EOF' export PATH=${PREFIX}/bin PREFIX=${PREFIX} LIBDIR=${LIBDIR} diff --git a/steps/manifest b/steps/manifest @@ -119,6 +119,7 @@ build: linux-4.9.10 ( BUILD_LINUX == True ) jump: break ( INTERNAL_CI == pass1 ) jump: linux ( CHROOT == False ) jump: move_disk ( KERNEL_BOOTSTRAP == True ) +improve: finalize_job_count improve: finalize_fhs improve: swap ( SWAP_SIZE != 0 ) build: musl-1.2.4