Lines of
rc
from check-in 97ff336c8d
that are changed by the sequence of edits moving toward
check-in a0315ec3f2:
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:
12: MAKEINIT="make -D AUTOBOOT -C /etc/mrc -k"
13: NCPU=$((`/sbin/sysctl -n hw.ncpu` + 1 ))
14: #MAKEDEBUG="-d -nelLx"
15:
97ff336c8d 2023-08-13 16: if mount -t tmpfs tmpfs /etc/mrc/tmp; then
17: ${MAKEINIT} -j ${NCPU} ${MAKEDEBUG} -X TMPDIR=/etc/mrc/tmp && umount -f /etc/mrc/tmp
18: else
19: ${MAKEINIT}
20: fi
21:
22: echo ''
23: date
24: exit 0