Lines of
rc
from check-in f8700c9031
that are changed by the sequence of edits moving toward
check-in 8bc8c738d5:
1: #!/sbin/sh -Tue -
2:
3: stty status '^T'
4:
5: trap : 2
6:
7: HOME=/
8: PATH=/sbin:/bin:/usr/sbin:/usr/bin
9:
10: export PATH HOME
11:
f8700c9031 2022-05-29 12: MAKEINIT="make -D AUTOBOOT -C /etc/mrc"
13: NCPU=$((`/sbin/sysctl -n hw.ncpu` + 1 ))
14: #MAKEDEBUG="-d -nelLx"
15:
16: mount -t tmpfs tmpfs /etc/mrc/tmp && ${MAKEINIT} -j ${NCPU} ${MAKEDEBUG} -X TMPDIR=/etc/mrc/tmp && umount /etc/mrc/tmp || ${MAKEINIT}
17:
18: echo ''
19: date
20: exit 0