From 3ae898da8b0d5deb0bfc83381103df507a8793fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 17 Jun 2004 12:22:10 +0000 Subject: [PATCH] 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 --- src/kernel/boot/platform/openfirmware/Jamfile | 1 + .../boot/platform/openfirmware/video.cpp | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 src/kernel/boot/platform/openfirmware/video.cpp diff --git a/src/kernel/boot/platform/openfirmware/Jamfile b/src/kernel/boot/platform/openfirmware/Jamfile index 261945f798..a71c38c672 100644 --- a/src/kernel/boot/platform/openfirmware/Jamfile +++ b/src/kernel/boot/platform/openfirmware/Jamfile @@ -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 ; diff --git a/src/kernel/boot/platform/openfirmware/video.cpp b/src/kernel/boot/platform/openfirmware/video.cpp new file mode 100644 index 0000000000..a65fcd3c06 --- /dev/null +++ b/src/kernel/boot/platform/openfirmware/video.cpp @@ -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 + + +extern "C" void +platform_switch_to_logo(void) +{ + // ToDo: implement me +} + + +extern "C" void +platform_switch_to_text_mode(void) +{ + // ToDo: implement me +} +