diff --git a/src/kernel/core/arch/ppc/Jamfile b/src/kernel/core/arch/ppc/Jamfile index 82c7743aaa..0b20d6fdde 100644 --- a/src/kernel/core/arch/ppc/Jamfile +++ b/src/kernel/core/arch/ppc/Jamfile @@ -11,6 +11,7 @@ KernelStaticLibrary libppc : <$(SOURCE_GRIST)>arch_faults.c <$(SOURCE_GRIST)>arch_int.c <$(SOURCE_GRIST)>arch_mmu.cpp + <$(SOURCE_GRIST)>arch_real_time_clock.c <$(SOURCE_GRIST)>arch_smp.c <$(SOURCE_GRIST)>arch_thread.c <$(SOURCE_GRIST)>arch_timer.c diff --git a/src/kernel/core/arch/ppc/arch_real_time_clock.c b/src/kernel/core/arch/ppc/arch_real_time_clock.c new file mode 100644 index 0000000000..9a040fcda7 --- /dev/null +++ b/src/kernel/core/arch/ppc/arch_real_time_clock.c @@ -0,0 +1,20 @@ +/* +** Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved. +** Distributed under the terms of the OpenBeOS License. +*/ + + +#include + + +uint32 +arch_rtc_get_hw_time(void) +{ + return 0; +} + + +void +arch_rtc_set_hw_time(uint32 seconds) +{ +}