Overview
Comment: | enable parallel exec |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f8700c9031de4588afc230b5dc0e3405 |
User & Date: | arcade on 2022-05-29 11:32:42.936 |
Other Links: | manifest | tags |
Context
2022-05-29
| ||
11:33 | fix service name check-in: 72bda3bbe4 user: arcade tags: trunk | |
11:32 | enable parallel exec check-in: f8700c9031 user: arcade tags: trunk | |
2020-05-26
| ||
07:02 | attempt to add more service targets check-in: e71c4b0c63 user: arcade tags: trunk | |
Changes
Modified rc
from [874b880e92]
to [e3d809966a].
1 2 3 4 5 6 7 8 9 10 11 | #!/sbin/sh -Tue - stty status '^T' trap : 2 HOME=/ PATH=/sbin:/bin:/usr/sbin:/usr/bin export PATH HOME | | > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/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 |