summaryrefslogtreecommitdiffstats
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2011-02-14 01:47:18 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2011-02-14 01:47:18 +0000
commit55c4d112c48f9600179836ddbd3b4b3726766938 (patch)
tree3d6e37cf70f7f3b18557baccf884ca90c2da4580 /nuttx/tools
parent9bc8e76224681cfab6eb096e936e38f3d5ceb6e6 (diff)
Removed old CVS directories
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3292 7fd9a85b-ad96-42d3-883c-3090e2eb8679
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 1d125e2e85..edc0e4251c 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 || \