Standardize naming of nanokernel core source files for ARM
Gets rid of "nano" prefix on these nanokernel files. Change-Id: I78c4dd4ebbbbd91f6fdd4e54ffc82de9bd232c7d Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
parent
35cf49d479
commit
92c9c47265
4 changed files with 6 additions and 6 deletions
|
@ -5,10 +5,10 @@ ccflags-y += -I$(srctree)/target/src/bsp/arm
|
||||||
asflags-y := ${ccflags-y}
|
asflags-y := ${ccflags-y}
|
||||||
|
|
||||||
obj-y = atomic.o exc_exit.o ffs.o irq_init.o \
|
obj-y = atomic.o exc_exit.o ffs.o irq_init.o \
|
||||||
nano_fiber_abort.o swap.o basepri.o \
|
fiber_abort.o swap.o basepri.o \
|
||||||
fault.o gdb_stub_irq_vector_table.o \
|
fault.o gdb_stub_irq_vector_table.o \
|
||||||
irq_manage.o nanocontext.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 \
|
||||||
nanofatal.o
|
fatal.o
|
||||||
|
|
||||||
obj-$(CONFIG_MICROKERNEL) += task_abort.o
|
obj-$(CONFIG_MICROKERNEL) += task_abort.o
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* nanocontext.c - new context creation for ARM Cortex-M */
|
/* context.c - new context creation for ARM Cortex-M */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
@ -1,4 +1,4 @@
|
||||||
/* nanofatal.c - nanokernel fatal error handler for ARM Cortex-M */
|
/* fatal.c - nanokernel fatal error handler for ARM Cortex-M */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014 Wind River Systems, Inc.
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
@ -1,4 +1,4 @@
|
||||||
/* nano_fiber_abort.c - ARM Cortex-M fiber_abort() routine */
|
/* fiber_abort.c - ARM Cortex-M fiber_abort() routine */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014 Wind River Systems, Inc.
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
Loading…
Add table
Add a link
Reference in a new issue