arch/arm: Move sysFatalErrorHandler.c from 'bsp' to 'core'
Moves (and renames) sysFatalErrorHandler.c out of the 'bsp' directory and into 'core' as a step towards removing the directory 'arch/arm/bsp'. Change-Id: Ie10aa2099f07380e4583dbbd32cdda917b4999ba Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
parent
ccea9d3581
commit
d1955e06fb
3 changed files with 1 additions and 6 deletions
|
@ -1,5 +1 @@
|
||||||
ccflags-y +=-I$(srctree)/include/drivers
|
|
||||||
ccflags-y +=-I$(srctree)/arch/$(ARCH)/$(strip $(CONFIG_PLATFORM))
|
|
||||||
|
|
||||||
obj-y = CortexM/
|
obj-y = CortexM/
|
||||||
obj-y += sysFatalErrorHandler.o
|
|
||||||
|
|
|
@ -8,6 +8,6 @@ obj-y = atomic.o exc_exit.o ffs.o irq_init.o \
|
||||||
fault.o gdb_stub_irq_vector_table.o \
|
fault.o gdb_stub_irq_vector_table.o \
|
||||||
irq_manage.o context.o cpu_idle.o \
|
irq_manage.o context.o cpu_idle.o \
|
||||||
fault_s.o gdb_stub.o isr_wrapper.o \
|
fault_s.o gdb_stub.o isr_wrapper.o \
|
||||||
fatal.o
|
fatal.o sys_fatal_error_handler.o
|
||||||
|
|
||||||
obj-$(CONFIG_MICROKERNEL) += task_abort.o
|
obj-$(CONFIG_MICROKERNEL) += task_abort.o
|
||||||
|
|
|
@ -38,7 +38,6 @@ This module provides the _SysFatalErrorHandler() routine for Cortex-M BSPs.
|
||||||
#include <nanokernel.h>
|
#include <nanokernel.h>
|
||||||
#include <toolchain.h>
|
#include <toolchain.h>
|
||||||
#include <sections.h>
|
#include <sections.h>
|
||||||
#include "board.h"
|
|
||||||
|
|
||||||
#ifdef CONFIG_PRINTK
|
#ifdef CONFIG_PRINTK
|
||||||
#include <misc/printk.h>
|
#include <misc/printk.h>
|
Loading…
Add table
Add a link
Reference in a new issue