Artifact e3d809966a4f3e5b18de04b2ac59e94b719279859b148e51be90ae46a809f8a5:
- File rc — part of check-in [f8700c9031] at 2022-05-29 11:32:42 on branch trunk — enable parallel exec (user: arcade, size: 368) [annotate] [blame] [check-ins using]
#!/sbin/sh -Tue -
stty status '^T'
trap : 2
HOME=/
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH HOME
MAKEINIT="make -D AUTOBOOT -C /etc/mrc"
NCPU=$((`/sbin/sysctl -n hw.ncpu` + 1 ))
#MAKEDEBUG="-d -nelLx"
mount -t tmpfs tmpfs /etc/mrc/tmp && ${MAKEINIT} -j ${NCPU} ${MAKEDEBUG} -X TMPDIR=/etc/mrc/tmp && umount /etc/mrc/tmp || ${MAKEINIT}
echo ''
date
exit 0