summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-21 10:55:09 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-21 10:55:09 -0600
commit6b57196e31fe88afb8078616014dd13f08f0aeb2 (patch)
tree53417d11a599c4f3168056817e77b4aeb8c16e9e /nuttx/configs
parent9d39d824865c5aab57c59d9ee0c490349d6c50df (diff)
downloadpx4-nuttx-6b57196e31fe88afb8078616014dd13f08f0aeb2.tar.gz
px4-nuttx-6b57196e31fe88afb8078616014dd13f08f0aeb2.tar.bz2
px4-nuttx-6b57196e31fe88afb8078616014dd13f08f0aeb2.zip
LM3S6432-S2E: Rename files for better conformance to naming conventions
Diffstat (limited to 'nuttx/configs')
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/Makefile26
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/lm3s6432s2e_internal.h2
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/lm_boot.c (renamed from nuttx/configs/lm3s6432-s2e/src/up_boot.c)2
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/lm_ethernet.c (renamed from nuttx/configs/lm3s6432-s2e/src/up_ethernet.c)3
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/lm_leds.c (renamed from nuttx/configs/lm3s6432-s2e/src/up_leds.c)2
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/lm_nsh.c (renamed from nuttx/configs/lm3s6432-s2e/src/up_nsh.c)5
-rw-r--r--nuttx/configs/lm3s6432-s2e/src/lm_ssi.c (renamed from nuttx/configs/lm3s6432-s2e/src/up_ssi.c)5
7 files changed, 21 insertions, 24 deletions
diff --git a/nuttx/configs/lm3s6432-s2e/src/Makefile b/nuttx/configs/lm3s6432-s2e/src/Makefile
index c149327dd..683498fba 100644
--- a/nuttx/configs/lm3s6432-s2e/src/Makefile
+++ b/nuttx/configs/lm3s6432-s2e/src/Makefile
@@ -35,27 +35,27 @@
-include $(TOPDIR)/Make.defs
-CFLAGS += -I$(TOPDIR)/sched
+CFLAGS += -I$(TOPDIR)/sched
-ASRCS =
-AOBJS = $(ASRCS:.S=$(OBJEXT))
-CSRCS = up_boot.c up_leds.c up_ethernet.c up_ssi.c
+ASRCS =
+AOBJS = $(ASRCS:.S=$(OBJEXT))
+CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
ifeq ($(CONFIG_NSH_ARCHINIT),y)
-CSRCS += up_nsh.c
+CSRCS += lm_nsh.c
endif
-COBJS = $(CSRCS:.c=$(OBJEXT))
+COBJS = $(CSRCS:.c=$(OBJEXT))
-SRCS = $(ASRCS) $(CSRCS)
-OBJS = $(AOBJS) $(COBJS)
+SRCS = $(ASRCS) $(CSRCS)
+OBJS = $(AOBJS) $(COBJS)
-ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
+ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
ifeq ($(WINTOOL),y)
- CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
- -I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
- -I "${shell cygpath -w $(ARCH_SRCDIR)/armv7-m}"
+ CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
+ -I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
+ -I "${shell cygpath -w $(ARCH_SRCDIR)/armv7-m}"
else
- CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common -I$(ARCH_SRCDIR)/armv7-m
+ CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common -I$(ARCH_SRCDIR)/armv7-m
endif
all: libboard$(LIBEXT)
diff --git a/nuttx/configs/lm3s6432-s2e/src/lm3s6432s2e_internal.h b/nuttx/configs/lm3s6432-s2e/src/lm3s6432s2e_internal.h
index 2db0df191..6ec41ed21 100644
--- a/nuttx/configs/lm3s6432-s2e/src/lm3s6432s2e_internal.h
+++ b/nuttx/configs/lm3s6432-s2e/src/lm3s6432s2e_internal.h
@@ -47,7 +47,7 @@
#include "tiva_gpio.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* How many SSI modules does this chip support? The LM3S6432 supports 1 SSI
diff --git a/nuttx/configs/lm3s6432-s2e/src/up_boot.c b/nuttx/configs/lm3s6432-s2e/src/lm_boot.c
index 0e8bf97c3..f35880231 100644
--- a/nuttx/configs/lm3s6432-s2e/src/up_boot.c
+++ b/nuttx/configs/lm3s6432-s2e/src/lm_boot.c
@@ -1,5 +1,5 @@
/************************************************************************************
- * configs/lm3s6432-s2e/src/up_boot.c
+ * configs/lm3s6432-s2e/src/lm_boot.c
*
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/lm3s6432-s2e/src/up_ethernet.c b/nuttx/configs/lm3s6432-s2e/src/lm_ethernet.c
index 19ee2bbc1..efee5fb20 100644
--- a/nuttx/configs/lm3s6432-s2e/src/up_ethernet.c
+++ b/nuttx/configs/lm3s6432-s2e/src/lm_ethernet.c
@@ -1,6 +1,5 @@
/************************************************************************************
- * configs/lm3s6432-s3e/src/up_ethernet.c
- * arch/arm/src/board/up_ethernet.c
+ * configs/lm3s6432-s3e/src/lm_ethernet.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/lm3s6432-s2e/src/up_leds.c b/nuttx/configs/lm3s6432-s2e/src/lm_leds.c
index 3ffeabaa1..8bb90bd44 100644
--- a/nuttx/configs/lm3s6432-s2e/src/up_leds.c
+++ b/nuttx/configs/lm3s6432-s2e/src/lm_leds.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/lm3s6432-s2e/src/up_leds.c
+ * configs/lm3s6432-s2e/src/lm_leds.c
*
* Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/lm3s6432-s2e/src/up_nsh.c b/nuttx/configs/lm3s6432-s2e/src/lm_nsh.c
index 009849bc7..193875a10 100644
--- a/nuttx/configs/lm3s6432-s2e/src/up_nsh.c
+++ b/nuttx/configs/lm3s6432-s2e/src/lm_nsh.c
@@ -1,6 +1,5 @@
/****************************************************************************
- * config/lm3s6432-s2e/src/up_nsh.c
- * arch/arm/src/board/up_nsh.c
+ * config/lm3s6432-s2e/src/lm_nsh.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -48,7 +47,7 @@
#include <nuttx/mmcsd.h>
/****************************************************************************
- * Pre-Processor Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/configs/lm3s6432-s2e/src/up_ssi.c b/nuttx/configs/lm3s6432-s2e/src/lm_ssi.c
index 270ec4f47..0675b7ba9 100644
--- a/nuttx/configs/lm3s6432-s2e/src/up_ssi.c
+++ b/nuttx/configs/lm3s6432-s2e/src/lm_ssi.c
@@ -1,6 +1,5 @@
/************************************************************************************
- * configs/lm3s6432-s2e/src/up_ssi.c
- * arch/arm/src/board/up_ssi.c
+ * configs/lm3s6432-s2e/src/lm_ssi.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -55,7 +54,7 @@
#if defined(CONFIG_TIVA_SSI0)
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */