checkpoint - passing SURRO current state

This commit is contained in:
phanes
2023-03-04 23:05:46 -05:00
parent 4fbe0c8d81
commit b8bfec9722
16 changed files with 472 additions and 74 deletions

View File

@@ -13,7 +13,7 @@ echo "Bootstrapping from MAKE to REX..."
${dir_localtools}/rex -v \
-c ${dir_rex}/x86_64/rex.config \
-p ${dir_rex}/x86_64/plans/stage4backup.plan
-p ${dir_rex}/x86_64/plans/backup.plan
retVal=$?
exit $retVal

32
make.project/master.sh Executable file
View File

@@ -0,0 +1,32 @@
#!/usr/bin/env bash
# fix an issue with open files limit on some hosts
ulimit -l unlimited
#ulimit -n 10240
ulimit -c unlimited
# closely aligns with LFS Ch 5, 6
T_SYSROOT=${dir_sysroot}
project_root=/rex_embedded
echo "Bootstrapping from MAKE to REX..."
dir_rex=/rex_embedded/rex.project
# Executes rex from within the chroot.
/usr/sbin/chroot "${T_SYSROOT}" /usr/bin/env -i \
HOME="/" \
TERM="$TERM" \
COLORTERM=$COLORTERM \
PS1='\n(Dark Horse Linux) [ \u @ \H ] << \w >>\n\n[- ' \
PATH=/usr/bin:/usr/sbin \
project_root="${project_root}" \
dir_rex="${dir_rex}" \
dir_logs="/${project_root}/logs" \
/rex_embedded/stage/rex/rex -v -c ${dir_rex}/x86_64/rex.config -p ${dir_rex}/x86_64/plans/master.plan
retVal=$?
echo "Rex exited with error code '$retVal'."
exit $retVal