diff --git a/src/kernel/boot/platform/openfirmware/Jamfile b/src/kernel/boot/platform/openfirmware/Jamfile index a4521bbae7..dbc185125f 100644 --- a/src/kernel/boot/platform/openfirmware/Jamfile +++ b/src/kernel/boot/platform/openfirmware/Jamfile @@ -6,7 +6,6 @@ KernelMergeObject boot_platform_openfirmware.o : <$(SOURCE_GRIST)>start.c <$(SOURCE_GRIST)>openfirmware.c <$(SOURCE_GRIST)>debug.c - <$(SOURCE_GRIST)>misc.c <$(SOURCE_GRIST)>mmu.cpp <$(SOURCE_GRIST)>Handle.cpp <$(SOURCE_GRIST)>devices.cpp diff --git a/src/kernel/boot/platform/openfirmware/misc.c b/src/kernel/boot/platform/openfirmware/misc.c deleted file mode 100644 index 700c259209..0000000000 --- a/src/kernel/boot/platform/openfirmware/misc.c +++ /dev/null @@ -1,19 +0,0 @@ -/* -** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the OpenBeOS License. -*/ - - -#include -#include - -#include "openfirmware.h" - - -bool -platform_user_menu_requested(void) -{ - // ToDo: implement this for real - trigger on space? - return false; -} -