Standardize naming of nanokernel core source files for x86

Gets rid of "nano" prefix on these nanokernel files.

Change-Id: Ib87323b14779bf3673ec2826023eb94b4b7cc81e
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-06-19 13:56:08 -04:00 committed by Anas Nashif
commit 35cf49d479
7 changed files with 10 additions and 10 deletions

View file

@ -1,17 +1,17 @@
ccflags-y += -I$(srctree)/kernel/nanokernel/include ccflags-y += -I$(srctree)/kernel/nanokernel/include
ccflags-y += -I$(srctree)/kernel/microkernel/include ccflags-y += -I$(srctree)/kernel/microkernel/include
obj-y = gdt.o nanocontext.o nanofatal.o cpuhalt.o \ obj-y = gdt.o context.o fatal.o cpuhalt.o \
excstub.o swap.o ffs.o intboiexit.o msr.o \ excstub.o swap.o ffs.o intboiexit.o msr.o \
excconnect.o inthndlset.o excconnect.o inthndlset.o
ifeq ($(CONFIG_LOCK_INSTRUCTION_UNSUPPORTED),y) ifeq ($(CONFIG_LOCK_INSTRUCTION_UNSUPPORTED),y)
obj-y += nanoatomic_nolock.o obj-y += atomic_nolock.o
else else
obj-y += nanoatomic.o obj-y += atomic.o
endif endif
obj-$(CONFIG_FP_SHARING) += nanofloat.o obj-$(CONFIG_FP_SHARING) += float.o
obj-$(CONFIG_UNALIGNED_WRITE_UNSUPPORTED) += unaligned.o obj-$(CONFIG_UNALIGNED_WRITE_UNSUPPORTED) += unaligned.o
ifneq ($(CONFIG_NO_ISRS),y) ifneq ($(CONFIG_NO_ISRS),y)

View file

@ -1,4 +1,4 @@
/* nanoatomic.S - nanokernel atomic operators for IA-32 */ /* atomic.S - nanokernel atomic operators for IA-32 */
/* /*
* Copyright (c) 2011-2014 Wind River Systems, Inc. * Copyright (c) 2011-2014 Wind River Systems, Inc.

View file

@ -1,4 +1,4 @@
/* nanoatomic_nolock.c - nanokernel atomic operators for IA-32 */ /* atomic_nolock.c - nanokernel atomic operators for IA-32 */
/* /*
* Copyright (c) 2012-2014 Wind River Systems, Inc. * Copyright (c) 2012-2014 Wind River Systems, Inc.

View file

@ -1,4 +1,4 @@
/* nanocontext.c - nanokernel context support primitives */ /* context.c - nanokernel context support primitives */
/* /*
* Copyright (c) 2010-2015 Wind River Systems, Inc. * Copyright (c) 2010-2015 Wind River Systems, Inc.

View file

@ -1,4 +1,4 @@
/* nanofatal.c - nanokernel fatal error handler */ /* fatal.c - nanokernel fatal error handler */
/* /*
* Copyright (c) 2013-2014 Wind River Systems, Inc. * Copyright (c) 2013-2014 Wind River Systems, Inc.

View file

@ -1,4 +1,4 @@
/* nanofloat.c - floating point resource sharing routines */ /* float.c - floating point resource sharing routines */
/* /*
* Copyright (c) 2010-2014 Wind River Systems, Inc. * Copyright (c) 2010-2014 Wind River Systems, Inc.

View file

@ -42,7 +42,7 @@ Intel-specific parts of start_task(). Only FP functionality currently.
/* /*
* The following IA-32-specific task group is used for tasks that use SSE * The following IA-32-specific task group is used for tasks that use SSE
* instructions. It is *not* formally reserved by SysGen for this purpose. * instructions. It is *not* formally reserved by SysGen for this purpose.
* See comments in nanocontext.c regarding the use of SSE_GROUP, and comments * See comments in context.c regarding the use of SSE_GROUP, and comments
* in task.h regarding task groups reserved by SysGen. * in task.h regarding task groups reserved by SysGen.
* *
* This identifier corresponds to the first user-defined task group. * This identifier corresponds to the first user-defined task group.