diff options
author | davidovski <david@davidovski.xyz> | 2022-04-07 21:06:28 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-04-07 21:06:28 +0100 |
commit | 07faa77244858366434fb93b1e5419609fb3d81b (patch) | |
tree | 1c2f6f4076d69f029f26e0d387680577f541f7e4 /bootstrap/bootstrap.sh | |
parent | d35367b92336aaa9ae8fb07a0b77b93229bb1f55 (diff) | |
parent | 7865aeacb7cb02d82c1276f64f07bfb968838ca6 (diff) |
Merge with sbase patch
Diffstat (limited to 'bootstrap/bootstrap.sh')
-rwxr-xr-x | bootstrap/bootstrap.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap.sh b/bootstrap/bootstrap.sh index 3dd1c18..71e2fab 100755 --- a/bootstrap/bootstrap.sh +++ b/bootstrap/bootstrap.sh @@ -4,7 +4,7 @@ ## VERSIONS ## # TODO move to a different package -LINUX_VER=5.16.11 +LINUX_VER=5.17.1 BINUTILS_VER=2.38 MPFR_VER=4.1.0 MPC_VER=1.2.1 @@ -52,7 +52,7 @@ chroot=$(pwd)/chroot PATH=${TOOLS}/bin:${CROSS_TOOLS}/bin:/usr/bin -MAKEFLAGS="-j$(nproc)" +MAKEFLAGS="-j$(grep "processor" /proc/cpuinfo | wc -l)" export chroot TARGET PATH WD CURL_OPTS CROSS_TOOLS TOOLS MAKEFLAGS |