summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-21 10:51:54 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-21 10:51:54 -0600
commit9d39d824865c5aab57c59d9ee0c490349d6c50df (patch)
tree3c65ee0d6e511aa538987d26db2a95b6abd81e2c
parent7844f99d388d4224471f6038591028e77ae0181c (diff)
downloadpx4-nuttx-9d39d824865c5aab57c59d9ee0c490349d6c50df.tar.gz
px4-nuttx-9d39d824865c5aab57c59d9ee0c490349d6c50df.tar.bz2
px4-nuttx-9d39d824865c5aab57c59d9ee0c490349d6c50df.zip
EKK-LM3S9B96: Rename files for better conformance to naming conventions
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/Makefile26
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h3
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/lm_boot.c (renamed from nuttx/configs/ekk-lm3s9b96/src/up_boot.c)2
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/lm_ethernet.c (renamed from nuttx/configs/ekk-lm3s9b96/src/up_ethernet.c)3
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/lm_leds.c (renamed from nuttx/configs/ekk-lm3s9b96/src/up_leds.c)2
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/lm_nsh.c (renamed from nuttx/configs/ekk-lm3s9b96/src/up_nsh.c)5
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/lm_ssi.c (renamed from nuttx/configs/ekk-lm3s9b96/src/up_ssi.c)5
7 files changed, 21 insertions, 25 deletions
diff --git a/nuttx/configs/ekk-lm3s9b96/src/Makefile b/nuttx/configs/ekk-lm3s9b96/src/Makefile
index ee8356fb5..c6af87d90 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/Makefile
+++ b/nuttx/configs/ekk-lm3s9b96/src/Makefile
@@ -36,27 +36,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/ekk-lm3s9b96/src/ekklm3s9b96_internal.h b/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
index 2c5047f87..4b98ef5b1 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
+++ b/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
@@ -1,6 +1,5 @@
/************************************************************************************
* configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
- * arch/arm/src/board/lm3s6965ek_internal.h
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org>
@@ -49,7 +48,7 @@
#include "tiva_gpio.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* How many SSI modules does this chip support? The LM3S9B96 supports 2 SSI
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_boot.c b/nuttx/configs/ekk-lm3s9b96/src/lm_boot.c
index 426b7efaf..3a8674b83 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_boot.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/lm_boot.c
@@ -1,5 +1,5 @@
/************************************************************************************
- * configs/ekk-lm3s9b96/src/up_boot.c
+ * configs/ekk-lm3s9b96/src/lm_boot.c
*
* Copyright (C) 2012, 2015 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_ethernet.c b/nuttx/configs/ekk-lm3s9b96/src/lm_ethernet.c
index 26e3630a1..622a972b3 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_ethernet.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/lm_ethernet.c
@@ -1,6 +1,5 @@
/************************************************************************************
- * configs/lm3s6965-ek/src/up_ethernet.c
- * arch/arm/src/board/up_ethernet.c
+ * configs/lm3s6965-ek/src/lm_ethernet.c
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_leds.c b/nuttx/configs/ekk-lm3s9b96/src/lm_leds.c
index f91eabc41..109b0b96e 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_leds.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/lm_leds.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/lm3s6965-ek/src/up_leds.c
+ * configs/lm3s6965-ek/src/lm_leds.c
*
* Copyright (C) 2012-2013, 2015 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_nsh.c b/nuttx/configs/ekk-lm3s9b96/src/lm_nsh.c
index 611261a61..9f04e3efb 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_nsh.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/lm_nsh.c
@@ -1,6 +1,5 @@
/****************************************************************************
- * config/ekk-lm3s9b96/src/up_nsh.c
- * arch/arm/src/board/up_nsh.c
+ * config/ekk-lm3s9b96/src/lm_nsh.c
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org>
@@ -46,7 +45,7 @@
#include <errno.h>
/****************************************************************************
- * Pre-Processor Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_ssi.c b/nuttx/configs/ekk-lm3s9b96/src/lm_ssi.c
index fa603df2e..d319d5252 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_ssi.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/lm_ssi.c
@@ -1,6 +1,5 @@
/************************************************************************************
- * configs/ekk-lm3s9b96/src/up_ssi.c
- * arch/arm/src/board/up_ssi.c
+ * configs/ekk-lm3s9b96/src/lm_ssi.c
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org>
@@ -56,7 +55,7 @@
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */