up through binutils - pass 3

This commit is contained in:
phanes
2023-03-05 07:07:03 -05:00
parent b8bfec9722
commit 360f2afae7
14 changed files with 1416 additions and 9 deletions

View File

@@ -116,7 +116,7 @@ function restore() {
echo
pushd ${dir_artifacts}
assert_zero $?
tar xvpf ${project_root}/$selected
tar xpf ${project_root}/$selected
assert_zero $?
logprint "Backup restored successfully. Arming chroot."
@@ -124,7 +124,7 @@ function restore() {
assert_zero $?
make arm_chroot
echo
logprint "You may now proceed to run 'make build_stage4' or higher."
logprint "You may now proceed."
echo
else
logprint "User canceled. Moving on."

View File

@@ -23,7 +23,7 @@ logprint() {
echo "[$(date +%Y-%m-%d_%H:%M:%S)] [${APPNAME}] $1" \
| tee -a "${LOG_DIR}/${LOGFILE}"
}
ulimit -n 3000000
/usr/sbin/chroot "${T_SYSROOT}" /usr/bin/env -i \
HOME=/root \
TERM="$TERM" \

View File

@@ -5,6 +5,7 @@ ulimit -l unlimited
#ulimit -n 10240
ulimit -c unlimited
ulimit -n 3000000
# closely aligns with LFS Ch 5, 6