From 76fca6ee2cb077ccc0cd126a63180089a29d91a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 7 Feb 2006 16:48:41 +0000 Subject: [PATCH] * Added Deskbar to the Bootscript. * Redirects stdout to /dev/dprintf, so that serial debugging logs are a bit more complete for now. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16285 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- data/system/boot/Bootscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/system/boot/Bootscript b/data/system/boot/Bootscript index 78ddc95ca9..55d58fa2a1 100644 --- a/data/system/boot/Bootscript +++ b/data/system/boot/Bootscript @@ -47,7 +47,7 @@ runprog() { # Set up stdin/out/err to nirvana exec /dev/null 2>&1 +exec >/dev/dprintf 2>&1 # Standard locations of boot files SCRIPTS=beos/system/boot @@ -90,6 +90,7 @@ fi # Launch MiniTerminal or consoled depending on $SAFEMODE if [ "$SAFEMODE" != "yes" ]; then launch beos/apps/Terminal + launch beos/system/Deskbar else launch beos/bin/consoled fi