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 +} +