Fixed the PPC boot loader build and added empty stub routines.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8022 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-17 12:22:10 +00:00
parent 4adfc8f463
commit 3ae898da8b
2 changed files with 23 additions and 0 deletions

View File

@ -10,6 +10,7 @@ KernelMergeObject boot_platform_openfirmware.o :
<$(SOURCE_GRIST)>devices.cpp
<$(SOURCE_GRIST)>console.cpp
<$(SOURCE_GRIST)>heap.cpp
<$(SOURCE_GRIST)>video.cpp
:
: boot_platform_openfirmware_$(OBOS_ARCH).a
;

View File

@ -0,0 +1,22 @@
/*
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#include <boot/platform.h>
extern "C" void
platform_switch_to_logo(void)
{
// ToDo: implement me
}
extern "C" void
platform_switch_to_text_mode(void)
{
// ToDo: implement me
}