blob: ab0231ed43c525fc29be8a9a75b768563da92223 [file] [log] [blame]
Yegor Timoshenkoc2e49412018-10-07 01:58:27 +00001#!/usr/bin/env bash
Patrick Georgi1afe2862020-05-10 17:34:15 +02002# SPDX-License-Identifier: GPL-2.0-only
Philipp Deppenwiese6e4204a2016-09-08 22:35:48 +02003# ${VERSION_NAME}: new version name
Philipp Deppenwiese6e4204a2016-09-08 22:35:48 +02004# ${COMMIT_ID}: commit id (if not master)
Martin Roth7a00a632017-04-04 15:05:24 -06005# ${USERNAME}: username (if not default to https)
6# ${GPG_KEY_ID}: gpg key id (if not don't sign)
Martin Rothdd78aa62016-10-04 16:45:17 -06007VERSION_NAME=$1
8COMMIT_ID=$2
9USERNAME=$3
10GPG_KEY_ID=$4
Philipp Deppenwiese6e4204a2016-09-08 22:35:48 +020011
Patrick Georgif61c9e92015-07-13 22:48:46 +020012set -e
Alexander Couzens871da8e2016-09-09 00:05:54 +020013
Patrick Georgid198e2e2019-11-19 17:09:30 +010014if [ -z "$GPG_TTY" ]; then
Martin Rothd05ea792022-09-02 14:27:45 -060015 GPG_TTY=$(tty)
16 export GPG_TTY
Patrick Georgid198e2e2019-11-19 17:09:30 +010017fi
18
Alexander Couzens871da8e2016-09-09 00:05:54 +020019# set local + tz to be reproducible
20LC_ALL=C
21LANG=C
Paul Menzel38a906b2017-09-27 15:06:57 +020022TZ=UTC0
Alexander Couzens871da8e2016-09-09 00:05:54 +020023export LC_ALL LANG TZ
24
Martin Rothd05ea792022-09-02 14:27:45 -060025if [ -z "${VERSION_NAME}" ] || [ "${VERSION_NAME}" = "--help" ] || [ -z "${COMMIT_ID}" ]; then
Martin Roth7a00a632017-04-04 15:05:24 -060026 echo "usage: $0 <version> <commit id> [username] [gpg key id]"
Martin Rothdd78aa62016-10-04 16:45:17 -060027 echo "Tags a new coreboot version and creates a tar archive"
28 echo
29 echo "version: New version name to tag the tree with"
30 echo "commit id: check out this commit-id after cloning the coreboot tree"
Martin Rothdd78aa62016-10-04 16:45:17 -060031 echo "username: clone the tree using ssh://USERNAME - defaults to https://"
Martin Roth7a00a632017-04-04 15:05:24 -060032 echo "gpg key id: used to tag the version, and generate a gpg signature"
Patrick Georgif61c9e92015-07-13 22:48:46 +020033 exit 1
34fi
Martin Rothdd78aa62016-10-04 16:45:17 -060035
36# Verify that tar supports --sort
37if ! tar --sort=name -cf /dev/null /dev/null 2>/dev/null ; then
38 echo "Error: The installed version of tar does not support --sort"
39 echo " GNU tar version 1.28 or greater is required. Exiting."
40 exit 1
41fi
42
Martin Rothd05ea792022-09-02 14:27:45 -060043# Clone new copy of repo if needed
44if [ ! -d "coreboot-${VERSION_NAME}/.git" ]; then
45 rm -rf "coreboot-${VERSION_NAME}"
Martin Rothb621d9b2022-09-02 14:23:25 -060046 declare -a GIT_REF_OPTS
Patrick Georgi54cabb92019-11-19 17:11:04 +010047 if [ -d .git ]; then
Martin Rothb621d9b2022-09-02 14:23:25 -060048 GIT_REF_OPTS=("--reference" "." "--dissociate")
Patrick Georgi54cabb92019-11-19 17:11:04 +010049 elif [ -d ../../.git ]; then
Martin Rothb621d9b2022-09-02 14:23:25 -060050 GIT_REF_OPTS=("--reference" "../.." "--dissociate")
Patrick Georgi54cabb92019-11-19 17:11:04 +010051 fi
Martin Roth7a00a632017-04-04 15:05:24 -060052 if [ -n "${USERNAME}" ]; then
Martin Rothb621d9b2022-09-02 14:23:25 -060053 git clone "${GIT_REF_OPTS[@]}" "ssh://${USERNAME}@review.coreboot.org:29418/coreboot.git" "coreboot-${VERSION_NAME}" --
Martin Roth7a00a632017-04-04 15:05:24 -060054 else
Martin Rothb621d9b2022-09-02 14:23:25 -060055 git clone "${GIT_REF_OPTS[@]}" https://review.coreboot.org/coreboot.git "coreboot-${VERSION_NAME}" --
Martin Roth7a00a632017-04-04 15:05:24 -060056 fi
Philipp Deppenwiese6e4204a2016-09-08 22:35:48 +020057fi
Martin Rothdd78aa62016-10-04 16:45:17 -060058
Martin Rothd05ea792022-09-02 14:27:45 -060059# Handle everything that needs to be done from inside the new coreboot
60# directory. Use requested version, update submodules, and get ready to
61# run from outside a git repository, and create a signed tag to push.
62(
63 cd "coreboot-${VERSION_NAME}" || exit 1
64 if [ -n "${COMMIT_ID}" ]; then
65 git reset --hard "${COMMIT_ID}"
66 fi
Martin Rothdd78aa62016-10-04 16:45:17 -060067
Martin Rothd05ea792022-09-02 14:27:45 -060068 util/crossgcc/buildgcc -W > .crossgcc-version
Felix Singerff6416f2021-10-17 16:07:07 +020069
Martin Rothd05ea792022-09-02 14:27:45 -060070 git submodule update --init --checkout
71 if [ -n "${GPG_KEY_ID}" ]; then
72 git tag -a -s -u "$GPG_KEY_ID" --force "${VERSION_NAME}" -m "coreboot version ${VERSION_NAME}" --
73 else
74 git tag -a --force "${VERSION_NAME}" -m "coreboot version ${VERSION_NAME}" --
75 fi
Martin Rothdd78aa62016-10-04 16:45:17 -060076
Martin Rothd05ea792022-09-02 14:27:45 -060077 printf "%s-%s\n" "$VERSION_NAME" "$(git log --pretty=%h -1)" > .coreboot-version
78)
Martin Rothdd78aa62016-10-04 16:45:17 -060079
Martin Rothd05ea792022-09-02 14:27:45 -060080tstamp=$(tr "-" " " < "coreboot-${VERSION_NAME}/.coreboot-version")
81
82# Create the two tarballs, source and blobs.
83exclude_paths="3rdparty/blobs 3rdparty/fsp 3rdparty/intel-microcode 3rdparty/amd_blobs 3rdparty/qc_blobs"
Martin Roth8da4bfe2022-06-02 19:56:23 -060084
Martin Rothb621d9b2022-09-02 14:23:25 -060085declare -a blobs_paths
86declare -a exclude_opts
Patrick Georgi85678b82019-11-19 17:12:05 +010087for i in ${exclude_paths}; do
Martin Rothb621d9b2022-09-02 14:23:25 -060088 blobs_paths+=("coreboot-${VERSION_NAME}/${i}")
89 exclude_opts+=("--exclude=coreboot-${VERSION_NAME}/${i}")
Patrick Georgi85678b82019-11-19 17:12:05 +010090done
91
Martin Rothb621d9b2022-09-02 14:23:25 -060092tar --sort=name --mtime="${tstamp}" --owner=coreboot:1000 --group=coreboot:1000 --exclude=*/.git --exclude=*/.gitignore "${exclude_opts[@]}" -cvf - "coreboot-${VERSION_NAME}" |xz -9 > "coreboot-${VERSION_NAME}.tar.xz"
93tar --sort=name --mtime="${tstamp}" --owner=coreboot:1000 --group=coreboot:1000 --exclude=*/.git --exclude=*/.gitignore -cvf - "${blobs_paths[@]}" |xz -9 > "coreboot-blobs-${VERSION_NAME}.tar.xz"
Martin Rothdd78aa62016-10-04 16:45:17 -060094
Martin Rothd05ea792022-09-02 14:27:45 -060095# Sign the tarballs
Philipp Deppenwiese6e4204a2016-09-08 22:35:48 +020096if [ -n "${GPG_KEY_ID}" ]; then
Patrick Georgi3b2305e2018-12-20 17:21:08 +010097 gpg --armor --local-user "$GPG_KEY_ID" --output "coreboot-${VERSION_NAME}.tar.xz.sig" --detach-sig "coreboot-${VERSION_NAME}.tar.xz"
98 gpg --armor --local-user "$GPG_KEY_ID" --output "coreboot-blobs-${VERSION_NAME}.tar.xz.sig" --detach-sig "coreboot-blobs-${VERSION_NAME}.tar.xz"
Philipp Deppenwiese6e4204a2016-09-08 22:35:48 +020099fi