summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2010-01-31 14:44:57 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2010-01-31 14:44:57 +0000
commit7ca35e99c49074cf9b431078c0a9ad4be8c650a8 (patch)
tree61316f9f6a4a546f3729779b133879ef9aaa3517
parentc617a59ba9a0e298476951d6467ef7b38a127b62 (diff)
downloadrockbox-7ca35e99c49074cf9b431078c0a9ad4be8c650a8.tar.gz
rockbox-7ca35e99c49074cf9b431078c0a9ad4be8c650a8.zip
Remove old, outdated rbutil tarball creation script.
Creating the rbutil tarball is now done by deploy-release.py which is also up to date with recent changes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24417 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/release/rbutiltarball.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/tools/release/rbutiltarball.sh b/tools/release/rbutiltarball.sh
deleted file mode 100755
index 484ba9e988..0000000000
--- a/tools/release/rbutiltarball.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-#
-# Create a tarball of rbutil from a tagged release
-# Doess a full checkout, then shaves off everything unneeded.
-
-if [ -z "$1" ]; then
- printf "Usage: `basename $0` 1.2.2"
- exit
-else
- version="$1"
-fi
-
-svn checkout svn://svn.rockbox.org/rockbox/tags/rbutil_$version rbutil-$version
-if [ ! $? ]; then
- echo "Something went wrong with checking out"
- exit 22
-fi
-
-cd rbutil-$version
-# Delete top-level dirs that aren't used
-rm -rf bootloader firmware fonts icons uisimulator wps backdrops docs flash gdb manual utils
-
-# Clean out tools and restore the bits that we need
-rm -rf tools/*
-svn update tools/{iriver.c,Makefile,mkboot.h,voicefont.c,VOICE_PAUSE.wav,wavtrim.h,iriver.h,mkboot.c,rbspeex,ucl,voicefont.h,wavtrim.c}
-# Just in case
-mkdir -p tools/rbspeex/build
-
-# Clean out apps and restore apps/codecs/libspeex
-rm -rf apps/*
-svn update apps/codecs
-rm -rf apps/codecs/*
-svn update apps/codecs/libspeex
-cd ..
-
-tar cvvj --exclude-vcs -f rbutil-$version.tar.bz2 rbutil-$version
-rm -rf rbutil-$version