This replaces the hard-coded vector table, as well as the software ISR table created by the linker. Now both are generated in build via script. Issue: ZEP-1038, ZEP-1165 Change-Id: Ie6faaf8f7ea3a7a25ecb542f6cf7740836ad7da3 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
11 lines
384 B
Makefile
11 lines
384 B
Makefile
ccflags-y += -I$(srctree)/kernel/include
|
|
asflags-y := ${ccflags-y}
|
|
|
|
obj-y = exc_exit.o irq_init.o swap.o fault.o irq_manage.o thread.o \
|
|
cpu_idle.o fault_s.o fatal.o sys_fatal_error_handler.o thread_abort.o
|
|
|
|
obj-$(CONFIG_GEN_SW_ISR_TABLE) += isr_wrapper.o
|
|
obj-$(CONFIG_CPLUSPLUS) += __aeabi_atexit.o
|
|
obj-$(CONFIG_IRQ_OFFLOAD) += irq_offload.o
|
|
obj-$(CONFIG_CPU_CORTEX_M) += cortex_m/
|