From 4aca87515a5083ae0e31ce3177189fd43b6d05ac Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 3 Jan 2015 13:58:15 +0100 Subject: patch to Vanilla Tomato 1.28 --- release/src/router/busybox/scripts/bb_release | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 release/src/router/busybox/scripts/bb_release (limited to 'release/src/router/busybox/scripts/bb_release') diff --git a/release/src/router/busybox/scripts/bb_release b/release/src/router/busybox/scripts/bb_release new file mode 100755 index 00000000..8aa38043 --- /dev/null +++ b/release/src/router/busybox/scripts/bb_release @@ -0,0 +1,34 @@ +#!/bin/sh + +# Create signed release tarballs and signature files from current svn. +# Since you don't have my gpg key, this doesn't do you much good, +# but if I get hit by a bus the next maintainer might find this useful. +# Run this in an empty directory. The VERSION= line can get confused +# otherwise. + +#svn co svn://busybox.net/trunk/busybox +cd busybox || { echo "cd busybox failed"; exit 1; } +make release || { echo "make release failed"; exit 1; } +cd .. + +VERSION=`ls busybox-*.tar.gz | sed 's/busybox-\(.*\)\.tar\.gz/\1/'` + +zcat busybox-$VERSION.tar.gz | bzip2 > busybox-$VERSION.tar.bz2 + +test -f busybox-$VERSION.tar.gz || { echo "no busybox-$VERSION.tar.gz"; exit 1; } +test -f busybox-$VERSION.tar.bz2 || { echo "no busybox-$VERSION.tar.bz2"; exit 1; } + +signit() +{ +echo "$1 released `date -r $1 -R` + +MD5: `md5sum $1` +SHA1: `sha1sum $1` + +To verify this signature, you can obtain my public key +from http://busybox.net/~vda/vda_pubkey.gpg +" | gpg --clearsign > "$1.sign" +} + +signit busybox-$VERSION.tar.gz +signit busybox-$VERSION.tar.bz2 -- cgit v1.2.3-54-g00ecf