Now executes a UserBootscript if available.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16563 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-03-02 08:29:18 +00:00
parent 90200dfec1
commit 4b6321235c

View File

@ -87,9 +87,10 @@ if [ "$SAFEMODE" != "yes" ]; then
launch $SERVERS/input_server
fi
# Launch MiniTerminal or consoled depending on $SAFEMODE
# Launch Terminal or consoled depending on $SAFEMODE
if [ "$SAFEMODE" != "yes" ]; then
launch beos/apps/Terminal
#launch beos/system/Tracker
launch beos/system/Deskbar
else
launch beos/bin/consoled
@ -99,3 +100,9 @@ fi
# TODO to be launched when tracker and deskbar are launched
#launch beos/bin/dstcheck
if [ "$SAFEMODE" != "yes" ]; then
# Start user boot script
if [ -f $HOME/config/boot/UserBootscript ]; then
. $HOME/config/boot/UserBootscript
fi
fi