mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 07:15:23 +00:00
The PIT is an unsupported device. On x86 based platforms, the LOAPIC_TIMER and HPET_TIMER are the only supported timers. Change-Id: Ic890838c811b7eb62008aef0c8a92786f1579217 Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
10 lines
377 B
Makefile
10 lines
377 B
Makefile
obj-$(CONFIG_HPET_TIMER) += hpet.o
|
|
obj-$(CONFIG_LOAPIC_TIMER) += loapic_timer.o
|
|
obj-$(CONFIG_ARCV2_TIMER) += arcv2_timer0.o
|
|
|
|
_CORTEX_M_SYSTICK_AND_GDB_INFO_yy = y
|
|
obj-$(CONFIG_CORTEX_M_SYSTICK) += cortex_m_systick.o
|
|
obj-$(_CORTEX_M_SYSTICK_AND_GDB_INFO_$(CONFIG_CORTEX_M_SYSTICK)$(CONFIG_GDB_INFO)) += cortex_m_systick_gdb.o
|
|
|
|
obj-$(CONFIG_SYS_CLOCK_EXISTS) += sys_clock_init.o
|