through kernel compilation -- possibly ready to image with initrd for iso prep

This commit is contained in:
phanes
2023-03-19 21:46:24 -04:00
parent 1f5d82d752
commit 0b5d868da1
20 changed files with 11352 additions and 21 deletions

31
make.project/build_stage5.sh Executable file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env bash
# fix an issue with open files limit on some hosts
ulimit -l unlimited
#ulimit -n 10240
ulimit -c unlimited
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/stage5.plan
retVal=$?
echo "Rex exited with error code '$retVal'."
exit $retVal