Now switched to the boot logo and back when necessary.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8017 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-06-17 01:03:36 +00:00
parent eefe4b1d21
commit c8079ef9c9
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -32,6 +32,8 @@ main(stage2_args *args)
if (heap_init(args) < B_OK) if (heap_init(args) < B_OK)
panic("Could not initialize heap!\n"); panic("Could not initialize heap!\n");
platform_switch_to_logo();
TRACE(("boot(): heap initialized...\n")); TRACE(("boot(): heap initialized...\n"));
// the main platform dependent initialisation // the main platform dependent initialisation
+3
View File
@@ -19,6 +19,8 @@
status_t status_t
user_menu(Directory **_bootVolume) user_menu(Directory **_bootVolume)
{ {
platform_switch_to_text_mode();
int32 index = 1; int32 index = 1;
void *cookie; void *cookie;
@@ -41,6 +43,7 @@ user_menu(Directory **_bootVolume)
} }
puts("(it always tries to boot from the first for now...)"); puts("(it always tries to boot from the first for now...)");
platform_switch_to_logo();
return B_OK; return B_OK;
} }