clean slate for pyrois

This commit is contained in:
phanes
2023-02-18 20:02:03 -05:00
parent 25f4bcba54
commit 536ae16532
22 changed files with 366 additions and 98 deletions

19
make.project/build_stage1.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
# 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 \
-c ${dir_rex}/x86_64/rex.config \
-p ${dir_rex}/x86_64/plans/stage1.plan
retVal=$?