summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-02-14 01:47:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-02-14 01:47:18 +0000
commitb0dcacabaac30072bc3fc4076723cd42c5d8973d (patch)
tree3d6e37cf70f7f3b18557baccf884ca90c2da4580 /nuttx/tools
parent5027365b990fb1ab4a6d5626acddcafba01977f5 (diff)
downloadpx4-nuttx-b0dcacabaac30072bc3fc4076723cd42c5d8973d.tar.gz
px4-nuttx-b0dcacabaac30072bc3fc4076723cd42c5d8973d.tar.bz2
px4-nuttx-b0dcacabaac30072bc3fc4076723cd42c5d8973d.zip
Removed old CVS directories
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3292 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools')
-rwxr-xr-xnuttx/tools/zipme.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/nuttx/tools/zipme.sh b/nuttx/tools/zipme.sh
index 1d125e2e8..edc0e4251 100755
--- a/nuttx/tools/zipme.sh
+++ b/nuttx/tools/zipme.sh
@@ -40,25 +40,6 @@ VERSION=$1
TAR="tar cvf"
ZIP=gzip
-# This is a list of bad directories that have creapt into the CVS tree
-# due to bad imports, renamed directories, unfinished ports, etc.
-
-GARBAGEDIRS="\
- configs/m68332evb/src/src\
- configs/m68332evb/src/include\
- configs/m68332evb/src/doc\
- configs/sim/doc/include\
- configs/sim/doc/src\
- configs/olimex-strp711/tools\
- arch/c5471\
- arch/dm320\
- arch/avr/include/at91uc3\
- arch/avr/src/at91uc3\
- arch/hc/include/mc9s12ne64\
- arch/hc/src/mc9s12ne64\
- netutils/thttpd/extras
-"
-
# Make sure we know what is going on
if [ -z ${VERSION} ] ; then
@@ -112,13 +93,6 @@ find ${NUTTXDIR} -name '*~' -exec rm -f '{}' ';' || \
find ${NUTTXDIR} -name '*.swp' -exec rm -f '{}' ';' || \
{ echo "Removal of VI garbage failed!" ; exit 1 ; }
-# Prepare the nuttx directory -- Remove garbage directories
-
-for dir in ${GARBAGEDIRS}; do
- echo "Removing ${NUTTX}/${dir}"
- rm -rf ${NUTTX}/${dir}
-done
-
# Make sure that all of the necessary soft links are in place
cd ${NUTTX}/Documentation || \