2015-07-13 22:48:46 +02:00
|
|
|
#!/bin/bash
|
2016-09-08 22:35:48 +02:00
|
|
|
# ${VERSION_NAME}: new version name
|
|
|
|
# ${GPG_KEY_ID}: gpg key id (if not don't sign)
|
|
|
|
# ${USERNAME}: username (if not default to https)
|
|
|
|
# ${COMMIT_ID}: commit id (if not master)
|
|
|
|
VERSION_NAME=${1}
|
|
|
|
COMMIT_ID=${2}
|
|
|
|
USERNAME=${3}
|
|
|
|
GPG_KEY_ID=${4}
|
|
|
|
|
2015-07-13 22:48:46 +02:00
|
|
|
set -e
|
2016-09-09 00:05:54 +02:00
|
|
|
|
|
|
|
# set local + tz to be reproducible
|
|
|
|
LC_ALL=C
|
|
|
|
LANG=C
|
|
|
|
TZ=UTC
|
|
|
|
export LC_ALL LANG TZ
|
|
|
|
|
2016-09-08 22:35:48 +02:00
|
|
|
if [ -z "${VERSION_NAME}" ] || [ "${VERSION_NAME}" = "--help" ]; then
|
|
|
|
echo "usage: $0 <version> [commit id] [gpg key id] [username]"
|
2015-07-13 22:48:46 +02:00
|
|
|
echo "tags a new coreboot version and creates a tar archive"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-09-08 22:35:48 +02:00
|
|
|
if [ -n "${USERNAME}" ]; then
|
|
|
|
git clone --recurse-submodules ssh://${USERNAME}@review.coreboot.org:29418/coreboot.git coreboot-${VERSION_NAME}
|
|
|
|
else
|
|
|
|
git clone --recurse-submodules https://review.coreboot.org/coreboot.git coreboot-${VERSION_NAME}
|
|
|
|
fi
|
|
|
|
cd coreboot-${VERSION_NAME}
|
|
|
|
if [ -n "${COMMIT_ID}" ]; then
|
|
|
|
git reset --hard ${COMMIT_ID}
|
2016-01-29 23:02:56 +01:00
|
|
|
fi
|
2015-07-13 22:48:46 +02:00
|
|
|
git submodule update --init --checkout
|
2016-09-08 22:35:48 +02:00
|
|
|
if [ -n "${GPG_KEY_ID}" ]; then
|
|
|
|
git tag -a -s -u ${GPG_KEY_ID} --force ${VERSION_NAME} -m "coreboot version ${VERSION_NAME}"
|
|
|
|
else
|
|
|
|
git tag -a --force ${VERSION_NAME} -m "coreboot version ${VERSION_NAME}"
|
|
|
|
fi
|
|
|
|
printf "${VERSION_NAME}-$(git log --pretty=%H|head -1)\n" > .coreboot-version
|
2016-01-29 23:02:56 +01:00
|
|
|
tstamp=$(git log --pretty=format:%ci -1)
|
2015-07-13 22:48:46 +02:00
|
|
|
cd ..
|
2016-09-09 00:05:54 +02:00
|
|
|
tar --sort=name --mtime="$tstamp" --owner=coreboot:1000 --group=coreboot:1000 --exclude-vcs --exclude=coreboot-${VERSION_NAME}/3rdparty/blobs -cvf - coreboot-${VERSION_NAME} |xz -9 > coreboot-${VERSION_NAME}.tar.xz
|
|
|
|
tar --sort=name --mtime="$tstamp" --owner=coreboot:1000 --group=coreboot:1000 --exclude-vcs -cvf - coreboot-${VERSION_NAME}/3rdparty/blobs |xz -9 > coreboot-blobs-${VERSION_NAME}.tar.xz
|
2016-09-08 22:35:48 +02:00
|
|
|
if [ -n "${GPG_KEY_ID}" ]; then
|
|
|
|
gpg2 --armor --local-user ${GPG_KEY_ID} --output coreboot-${VERSION_NAME}.tar.xz.sig --detach-sig coreboot-${VERSION_NAME}.tar.xz
|
|
|
|
gpg2 --armor --local-user ${GPG_KEY_ID} --output coreboot-blobs-${VERSION_NAME}.tar.xz.sig --detach-sig coreboot-blobs-${VERSION_NAME}.tar.xz
|
|
|
|
fi
|