317bd7dda3
* Made the TimeZoneView less error prone, and also actually use Haiku code (the previous check didn't work since it used #if, not #ifdef). * Also took the liberty to rename our boot loader to haiku_loader, since I had to update the nasm binary anyway. Updated the assembly sources to nasm 2.0. * I haven't found where the synth location in the MIDI code is specified, though. * Also, NetBootArchive, and FloppyBootImage haven't been updated yet. Will do so next. * Some optional packages still put their license to beos/etc/licenses. I didn't update them yet, as we'll probably do so anyway at some point. Also, I think we might want to introduce a common/data/licenses instead for those. * If you encounter any problems, please tell! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29876 a95241bf-73f2-0310-859d-f6bbb57e9c96
100 lines
1.7 KiB
Plaintext
100 lines
1.7 KiB
Plaintext
## The system's main CD boot script.
|
|
|
|
##
|
|
## Some functions used by the main script
|
|
##
|
|
|
|
# launch <executable path> [thread to wait for]
|
|
|
|
launch() {
|
|
if [ -f "/boot/$1" ]
|
|
then
|
|
"/boot/$1" &
|
|
[ "$2" != "" ] && waitfor "$2"
|
|
return 1
|
|
else
|
|
echo There is no "$1"
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
# launchscript <script path>
|
|
|
|
launchscript() {
|
|
if [ -f "/boot/$1" ]
|
|
then
|
|
. "/boot/$1"
|
|
fi
|
|
}
|
|
|
|
# runprog <executable path>
|
|
|
|
runprog() {
|
|
if [ -f "/boot/$1" ]
|
|
then
|
|
"/boot/$1"
|
|
return 1
|
|
else
|
|
echo There is no "$1"
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
##
|
|
## Main script starts here
|
|
##
|
|
|
|
# block the CD tray (avoid accidental ejection)
|
|
/bin/eject -b /boot
|
|
|
|
# Launch servers
|
|
|
|
# We must wait for the app_server and registrar to be ready
|
|
launch $SERVERS/registrar _roster_thread_ # launch registrar
|
|
|
|
#launch $SERVERS/debug_server # launch debug_server
|
|
|
|
# Init Network
|
|
if [ "$SAFEMODE" != "yes" ]; then
|
|
launch $SERVERS/net_server # launch net_server
|
|
fi
|
|
|
|
if [ "$SAFEMODE" != "yes" ]; then
|
|
launch $SERVERS/app_server picasso # launch app_server
|
|
else
|
|
launch $SERVERS/fake_app_server picasso
|
|
fi
|
|
|
|
if [ "$SAFEMODE" != "yes" ]; then
|
|
launch $SERVERS/syslog_daemon
|
|
waitfor _input_server_event_loop_ # wait for input devices
|
|
fi
|
|
|
|
# Launch Terminal or consoled depending on $SAFEMODE
|
|
if [ "$SAFEMODE" != "yes" ]; then
|
|
if [ -x /boot/system/apps/Installer ]; then
|
|
/boot/system/apps/Installer
|
|
#/boot/system/apps/Terminal -x /boot/system/apps/Installer
|
|
else
|
|
/boot/system/apps/Terminal
|
|
fi
|
|
#launch system/apps/Terminal
|
|
else
|
|
launch system/bin/consoled
|
|
fi
|
|
|
|
# sync disks
|
|
sync
|
|
|
|
# prepare for reboot
|
|
# (reboot quickly in 10 seconds)
|
|
# (we must start the shutdown process before /boot is ejected)
|
|
/bin/shutdown -r -q -d 10 &
|
|
|
|
# unblock the CD tray
|
|
/bin/eject -u /boot
|
|
# and open it before rebooting
|
|
/bin/eject /boot
|
|
|
|
|