summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-21 15:01:32 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-21 15:01:32 -0600
commit9b32805b424ceeeefb55caab3d1f3dad46b2edef (patch)
treee13d29a0f1688e7f94583dde5bc46cb0a443a8f1 /nuttx
parentfc259db68565bddb810976a314151654870f869e (diff)
downloadpx4-nuttx-9b32805b424ceeeefb55caab3d1f3dad46b2edef.tar.gz
px4-nuttx-9b32805b424ceeeefb55caab3d1f3dad46b2edef.tar.bz2
px4-nuttx-9b32805b424ceeeefb55caab3d1f3dad46b2edef.zip
All kernel 1st pass builds: Rename files for better conformance to naming conventions
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/configs/mikroe-stm32f4/kernel/Makefile2
-rw-r--r--nuttx/configs/mikroe-stm32f4/kernel/stm32_userspace.c (renamed from nuttx/configs/mikroe-stm32f4/kernel/up_userspace.c)2
-rw-r--r--nuttx/configs/open1788/kernel/Makefile2
-rw-r--r--nuttx/configs/open1788/kernel/lpc17_userspace.c (renamed from nuttx/configs/open1788/kernel/up_userspace.c)2
-rw-r--r--nuttx/configs/sam3u-ek/kernel/Makefile2
-rw-r--r--nuttx/configs/sam3u-ek/kernel/sam_userspace.c (renamed from nuttx/configs/sam3u-ek/kernel/up_userspace.c)2
-rw-r--r--nuttx/configs/stm3240g-eval/kernel/Makefile2
-rw-r--r--nuttx/configs/stm3240g-eval/kernel/stm32_userspace.c (renamed from nuttx/configs/stm3240g-eval/kernel/up_userspace.c)2
-rw-r--r--nuttx/configs/stm32f4discovery/kernel/Makefile2
-rw-r--r--nuttx/configs/stm32f4discovery/kernel/stm32_userspace.c (renamed from nuttx/configs/stm32f4discovery/kernel/up_userspace.c)2
10 files changed, 10 insertions, 10 deletions
diff --git a/nuttx/configs/mikroe-stm32f4/kernel/Makefile b/nuttx/configs/mikroe-stm32f4/kernel/Makefile
index c452e00d2..1ba60bb8c 100644
--- a/nuttx/configs/mikroe-stm32f4/kernel/Makefile
+++ b/nuttx/configs/mikroe-stm32f4/kernel/Makefile
@@ -71,7 +71,7 @@ USER_LIBGCC = "${shell $(CC) -print-libgcc-file-name}"
# Source files
-CSRCS = up_userspace.c
+CSRCS = stm32_userspace.c
COBJS = $(CSRCS:.c=$(OBJEXT))
OBJS = $(COBJS)
diff --git a/nuttx/configs/mikroe-stm32f4/kernel/up_userspace.c b/nuttx/configs/mikroe-stm32f4/kernel/stm32_userspace.c
index 372d5302a..18f19757f 100644
--- a/nuttx/configs/mikroe-stm32f4/kernel/up_userspace.c
+++ b/nuttx/configs/mikroe-stm32f4/kernel/stm32_userspace.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/mikroe-stm32f4/kernel/up_userspace.c
+ * configs/mikroe-stm32f4/kernel/stm32_userspace.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/open1788/kernel/Makefile b/nuttx/configs/open1788/kernel/Makefile
index 0fb06a926..bd16441f2 100644
--- a/nuttx/configs/open1788/kernel/Makefile
+++ b/nuttx/configs/open1788/kernel/Makefile
@@ -71,7 +71,7 @@ USER_LIBGCC = "${shell $(CC) -print-libgcc-file-name}"
# Source files
-CSRCS = up_userspace.c
+CSRCS = lpc17_userspace.c
COBJS = $(CSRCS:.c=$(OBJEXT))
OBJS = $(COBJS)
diff --git a/nuttx/configs/open1788/kernel/up_userspace.c b/nuttx/configs/open1788/kernel/lpc17_userspace.c
index a003fae3a..900077990 100644
--- a/nuttx/configs/open1788/kernel/up_userspace.c
+++ b/nuttx/configs/open1788/kernel/lpc17_userspace.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/open1788/kernel/up_userspace.c
+ * configs/open1788/kernel/lpc17_userspace.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/sam3u-ek/kernel/Makefile b/nuttx/configs/sam3u-ek/kernel/Makefile
index 8bf42273d..48db5e7ae 100644
--- a/nuttx/configs/sam3u-ek/kernel/Makefile
+++ b/nuttx/configs/sam3u-ek/kernel/Makefile
@@ -65,7 +65,7 @@ USER_LIBGCC = "${shell $(CC) -print-libgcc-file-name}"
# Source files
-CSRCS = up_userspace.c
+CSRCS = sam_userspace.c
COBJS = $(CSRCS:.c=$(OBJEXT))
OBJS = $(COBJS)
diff --git a/nuttx/configs/sam3u-ek/kernel/up_userspace.c b/nuttx/configs/sam3u-ek/kernel/sam_userspace.c
index db65b58e1..fed33dd39 100644
--- a/nuttx/configs/sam3u-ek/kernel/up_userspace.c
+++ b/nuttx/configs/sam3u-ek/kernel/sam_userspace.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/sam3u-ek/kernel/up_userspace.c
+ * configs/sam3u-ek/kernel/sam_userspace.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/stm3240g-eval/kernel/Makefile b/nuttx/configs/stm3240g-eval/kernel/Makefile
index 1ca76cc61..428c098bd 100644
--- a/nuttx/configs/stm3240g-eval/kernel/Makefile
+++ b/nuttx/configs/stm3240g-eval/kernel/Makefile
@@ -71,7 +71,7 @@ USER_LIBGCC = "${shell $(CC) -print-libgcc-file-name}"
# Source files
-CSRCS = up_userspace.c
+CSRCS = stm32_userspace.c
COBJS = $(CSRCS:.c=$(OBJEXT))
OBJS = $(COBJS)
diff --git a/nuttx/configs/stm3240g-eval/kernel/up_userspace.c b/nuttx/configs/stm3240g-eval/kernel/stm32_userspace.c
index 4d7b8e225..f27209584 100644
--- a/nuttx/configs/stm3240g-eval/kernel/up_userspace.c
+++ b/nuttx/configs/stm3240g-eval/kernel/stm32_userspace.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/stm3240g-eval/kernel/up_userspace.c
+ * configs/stm3240g-eval/kernel/stm32_userspace.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/stm32f4discovery/kernel/Makefile b/nuttx/configs/stm32f4discovery/kernel/Makefile
index 67da11088..48b2584d8 100644
--- a/nuttx/configs/stm32f4discovery/kernel/Makefile
+++ b/nuttx/configs/stm32f4discovery/kernel/Makefile
@@ -71,7 +71,7 @@ USER_LIBGCC = "${shell $(CC) -print-libgcc-file-name}"
# Source files
-CSRCS = up_userspace.c
+CSRCS = stm32_userspace.c
COBJS = $(CSRCS:.c=$(OBJEXT))
OBJS = $(COBJS)
diff --git a/nuttx/configs/stm32f4discovery/kernel/up_userspace.c b/nuttx/configs/stm32f4discovery/kernel/stm32_userspace.c
index 47d3d8327..3b6108eed 100644
--- a/nuttx/configs/stm32f4discovery/kernel/up_userspace.c
+++ b/nuttx/configs/stm32f4discovery/kernel/stm32_userspace.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/stm32f4discovery/kernel/up_userspace.c
+ * configs/stm32f4discovery/kernel/stm32_userspace.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>