summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/kinetis/Make.defs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-07 15:20:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-07 15:20:21 +0000
commit488264ef3ea16f95b481417634cdf5f931ebee1f (patch)
tree1c79d0ce5cdbf20d619eff0b3482e94c397b99f0 /nuttx/arch/arm/src/kinetis/Make.defs
parent0963242e626874e958db8efdafc2f9a165e756b2 (diff)
downloadpx4-nuttx-488264ef3ea16f95b481417634cdf5f931ebee1f.tar.gz
px4-nuttx-488264ef3ea16f95b481417634cdf5f931ebee1f.tar.bz2
px4-nuttx-488264ef3ea16f95b481417634cdf5f931ebee1f.zip
Implement a simple vfork(). ARM only for now
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5486 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/kinetis/Make.defs')
-rw-r--r--nuttx/arch/arm/src/kinetis/Make.defs8
1 files changed, 5 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/kinetis/Make.defs b/nuttx/arch/arm/src/kinetis/Make.defs
index 65bc7b465..bad2946e2 100644
--- a/nuttx/arch/arm/src/kinetis/Make.defs
+++ b/nuttx/arch/arm/src/kinetis/Make.defs
@@ -1,7 +1,7 @@
############################################################################
# arch/arm/src/kinetis/Make.defs
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
+# Copyright (C) 2011, 2013 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -39,14 +39,16 @@ HEAD_ASRC = kinetis_vectors.S
# Common ARM and Cortex-M3 files
-CMN_ASRCS = up_saveusercontext.S up_fullcontextrestore.S up_switchcontext.S
+CMN_ASRCS = up_saveusercontext.S up_fullcontextrestore.S up_switchcontext.S \
+ up_vfork.S
CMN_CSRCS = up_allocateheap.c up_assert.c up_blocktask.c up_copystate.c \
up_createstack.c up_mdelay.c up_udelay.c up_exit.c up_initialize.c \
up_memfault.c up_initialstate.c up_interruptcontext.c \
up_modifyreg8.c up_modifyreg16.c up_modifyreg32.c \
up_releasestack.c up_reprioritizertr.c up_schedulesigaction.c \
up_releasepending.c up_sigdeliver.c up_unblocktask.c up_usestack.c \
- up_doirq.c up_hardfault.c up_svcall.c up_checkstack.c
+ up_doirq.c up_hardfault.c up_svcall.c up_checkstack.c \
+ up__vfork.c
ifeq ($(CONFIG_ARCH_MEMCPY),y)
CMN_ASRCS += up_memcpy.S