summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-06 12:48:01 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-06 12:48:01 -0600
commita9d48ad618e638a34a809de0624aff03450ba211 (patch)
treef8deec8da433e5bd846ba33eaea177f2455b6fc1
parent56ee4a90440369b2d7ae7f6ec20c5f93778f0568 (diff)
downloadnuttx-a9d48ad618e638a34a809de0624aff03450ba211.tar.gz
nuttx-a9d48ad618e638a34a809de0624aff03450ba211.tar.bz2
nuttx-a9d48ad618e638a34a809de0624aff03450ba211.zip
Remove nutts/tools/astyle.sh
-rw-r--r--nuttx/tools/README.txt8
-rwxr-xr-xnuttx/tools/astyle.sh43
2 files changed, 0 insertions, 51 deletions
diff --git a/nuttx/tools/README.txt b/nuttx/tools/README.txt
index ee50a1c87..76401ddbb 100644
--- a/nuttx/tools/README.txt
+++ b/nuttx/tools/README.txt
@@ -12,12 +12,6 @@ README.txt
This file!
-astyle.sh
----------
-
- A C formatting tool from Lorenz Meier. This is based on astyle and gets
- very close to the NuttX coding style.
-
Config.mk
---------
@@ -534,8 +528,6 @@ indent.sh
to my coding NuttX coding style. It doesn't do a really good job,
however (see the comments at the top of the indent.sh file).
- See astyle.sh above. I suspect that it will do a better job.
-
refresh.sh
----------
diff --git a/nuttx/tools/astyle.sh b/nuttx/tools/astyle.sh
deleted file mode 100755
index 9b5cc0c0f..000000000
--- a/nuttx/tools/astyle.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-############################################################################
-# tools/astyle.sh
-#
-# Copyright (C) 2014 Gregory Nutt. All rights reserved.
-# Author: Lorenz Meier
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in
-# the documentation and/or other materials provided with the
-# distribution.
-# 3. Neither the name NuttX nor the names of its contributors may be
-# used to endorse or promote products derived from this software
-# without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
-# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-############################################################################
-
-astyle \
- --style=gnu \
- --indent=spaces=2 \
- --indent-cases \
- --indent-switches \
- $*
-