No longer redirects the boot stdio to /dev/dprintf - this gives a much better media

experience (as the media server dumps quite a lot, and the serial interface is too
slow to keep up).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17480 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-05-16 14:50:46 +00:00
parent 94f687f9e3
commit 94e881ade0
1 changed files with 2 additions and 3 deletions

View File

@ -47,7 +47,7 @@ runprog() {
# Set up stdin/out/err to nirvana
exec </dev/null
exec >/dev/dprintf 2>&1
exec >/dev/null 2>&1
# Standard locations of boot files
SCRIPTS=beos/system/boot
@ -63,8 +63,7 @@ launchscript $SCRIPTS/SetupEnvironment
runprog beos/bin/clockconfig
# Init Network
if [ "$SAFEMODE" != "yes" ]
then
if [ "$SAFEMODE" != "yes" ]; then
launchscript $SCRIPTS/Netscript
fi