Build support for platform-specific shared memory logic. Not logic yet in place

This commit is contained in:
Gregory Nutt 2014-09-24 07:38:11 -06:00
parent dfc2b14056
commit f6f7587c47
2 changed files with 7 additions and 0 deletions

View File

@ -98,6 +98,9 @@ endif
ifeq ($(CONFIG_ARCH_KERNEL_STACK),y)
CMN_CSRCS += arm_addrenv_kstack.c
endif
ifeq ($(CONFIG_MM_SHM),y)
CMN_CSRCS += arm_addrenv_shm.c
endif
endif
ifeq ($(CONFIG_MM_PGALLOC),y)

View File

@ -1,4 +1,5 @@
############################################################################
############################################################################
# arch/arm/sama5/Make.defs
#
# Copyright (C) 2013-2014 Gregory Nutt. All rights reserved.
@ -100,6 +101,9 @@ endif
ifeq ($(CONFIG_ARCH_KERNEL_STACK),y)
CMN_CSRCS += arm_addrenv_kstack.c
endif
ifeq ($(CONFIG_MM_SHM),y)
CMN_CSRCS += arm_addrenv_shm.c
endif
endif
ifeq ($(CONFIG_MM_PGALLOC),y)