The nanokernel time tracking code (ticker) can now exist in microkernel systems. This allows the ticker that drives nano timers and timeouts to advance the tick count for these in a microkernel, thus allow their presence there. Previously, nano timers could not be used in a microkernel. Change-Id: I17f2b659691a081b0f9bf3961ed030533aa02a15 Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
17 lines
543 B
Makefile
17 lines
543 B
Makefile
ccflags-y +=-I$(srctree)/kernel/nanokernel/include
|
|
ccflags-y +=-I$(srctree)/kernel/microkernel/include
|
|
|
|
|
|
asflags-y := ${ccflags-y}
|
|
|
|
obj-y = nano_fiber.o nano_lifo.o \
|
|
nano_fifo.o nano_stack.o nano_sys_clock.o \
|
|
nano_context.o nano_init.o nano_sema.o \
|
|
version.o ctors.o device.o
|
|
|
|
obj-$(CONFIG_STACK_CANARIES) += compiler_stack_protect.o
|
|
obj-$(CONFIG_INT_LATENCY_BENCHMARK) += int_latency_bench.o
|
|
obj-$(CONFIG_PERFORMANCE_METRICS) += nanometrics.o
|
|
obj-$(CONFIG_ADVANCED_POWER_MANAGEMENT) += idle.o
|
|
obj-$(CONFIG_NANO_TIMERS) += nano_timer.o
|