From e07be520145730eb14cef2845c7d906298cdf1b7 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 13 Apr 2021 12:59:10 -0500 Subject: Add set -e to top of scripts and remove space between -j and value in MAKEFLAGS. --- env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'env.sh') diff --git a/env.sh b/env.sh index 7587c1e..9666e97 100644 --- a/env.sh +++ b/env.sh @@ -34,7 +34,7 @@ LFS_PWD="lfs" NUMPROCS="$(getconf _NPROCESSORS_ONLN)" numjobs="$((NUMPROCS * 2 - 1))" # Make flags for multiple jobs -MAKEFLAGS="-j ${numjobs}" +MAKEFLAGS="-j${numjobs}" NINJAJOBS="${NUMPROCS}" # Set spinner type (0-12 in funtions.sh) -- cgit v1.2.3-54-g00ecf From a200356b8fcd999591f92372d561ce5efc96cf11 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 13 Apr 2021 14:10:37 -0500 Subject: Add swap device to environment variables. --- env.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'env.sh') diff --git a/env.sh b/env.sh index 9666e97..18cab24 100644 --- a/env.sh +++ b/env.sh @@ -27,6 +27,9 @@ LFS_PART="1" # Filesystem to use for LFS LFS_FS="EXT4" +# Swap device to use for LFS +LFS_SWAP="/dev/sda2" + # LFS User password (not used at this time) LFS_PWD="lfs" -- cgit v1.2.3-54-g00ecf