adding rest of files from last push

This commit is contained in:
Chris Punches
2024-02-09 02:04:57 -05:00
parent 1f9ca13476
commit 5ddeaeeacb
6 changed files with 143 additions and 0 deletions

21
make.project/dependencies.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -u
# closely aligns with LFS Ch 5, 6
# fix an issue with open files limit on some hosts
ulimit -l unlimited
#ulimit -n 10240
ulimit -c unlimited
echo "Bootstrapping from MAKE to REX..."
# Executes rex from within the shell.
${dir_localtools}/rex -v \
-c ${dir_rex}/x86_64/rex.config \
-p ${dir_rex}/x86_64/plans/dependencies.plan
retVal=$?
exit $retVal