Check-in [97ff336c8d]
Logged in as anonymous
Overview
Comment:Fix second run, now init is executred once
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 97ff336c8d9fe496e1a0cc4effe9090501dd64999d15ba87a1240a53881fcfdd
User & Date: arcade on 2023-08-13 07:12:31.777
Other Links: manifest | tags
Context
2023-08-13
07:15
Load kernel modules one by one (so all possible would be loaded) check-in: 625f7382df user: arcade tags: trunk
07:12
Fix second run, now init is executred once check-in: 97ff336c8d user: arcade tags: trunk
2023-03-28
11:47
wpa_supplicant service check-in: 2213c809d5 user: arcade tags: trunk
Changes
Modified rc from [457a883ade] to [abc25b95c9].
9
10
11
12
13
14
15

16



17
18
19
20

export PATH HOME

MAKEINIT="make -D AUTOBOOT -C /etc/mrc -k"
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







>
|
>
>
>




9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

export PATH HOME

MAKEINIT="make -D AUTOBOOT -C /etc/mrc -k"
NCPU=$((`/sbin/sysctl -n hw.ncpu` + 1 ))
#MAKEDEBUG="-d -nelLx"

if mount -t tmpfs tmpfs /etc/mrc/tmp; then
  ${MAKEINIT} -j ${NCPU} ${MAKEDEBUG} -X TMPDIR=/etc/mrc/tmp && umount -f /etc/mrc/tmp
else
  ${MAKEINIT}
fi

echo ''
date
exit 0