Syscall fixes: Add support for Cortex-M7; mount syscall has to be suppressed if there are no mountable file systems

This commit is contained in:
Gregory Nutt 2015-07-21 11:20:46 -06:00
parent d2c8d4a495
commit 9c284bb05f

View File

@ -48,7 +48,8 @@
#if defined(CONFIG_ARCH_CORTEXA5) || defined(CONFIG_ARCH_CORTEXA8)
# include <arch/armv7-a/syscall.h>
#elif defined(CONFIG_ARCH_CORTEXM3) || defined(CONFIG_ARCH_CORTEXM4)
#elif defined(CONFIG_ARCH_CORTEXM3) || defined(CONFIG_ARCH_CORTEXM4) || \
defined(CONFIG_ARCH_CORTEXM7)
# include <arch/armv7-m/syscall.h>
#elif defined(CONFIG_ARCH_CORTEXM0)
# include <arch/armv6-m/syscall.h>