49473fc52e
list when booting from CD. Both are removed from the target in the InstallerFinishScript. This closes ticket #4342. * Make Installer start in safemode as well. * Are there any objections to always have the Installer link in the Deskbar? I see no real reason to leave it out. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32686 a95241bf-73f2-0310-859d-f6bbb57e9c96
71 lines
959 B
Plaintext
71 lines
959 B
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
|
|
##
|
|
|
|
|
|
# Launch Installer
|
|
|
|
cd /boot/home
|
|
if [ -x /boot/system/apps/Installer ]; then
|
|
/boot/system/apps/Installer
|
|
else
|
|
/boot/system/apps/Terminal
|
|
fi
|
|
|
|
# sync disks
|
|
/bin/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
|
|
|
|
|