summaryrefslogtreecommitdiffstats
path: root/version.sh
blob: 83cda7a01a816a9ba656ca15927fc33e00ee440f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#! /bin/bash
#
# version.sh: create a version string for use by configure.ac

version=
datefmt='%Y%m%d'

export GIT_DIR=$(dirname $0)/.git/

if head=$(git rev-parse --short=8 --verify HEAD 2>/dev/null); then

	suffix=''
	# Add a '-dirty' suffix for uncommitted changes.
	if git diff-index HEAD | read dummy; then
		suffix=-dirty
	fi

	tag=$(git describe --tags 2>/dev/null)
	version=$(printf "%s%s" ${tag} ${suffix})
else
	# Check if a specific version is set, eg: by buildroot
	if [ ! -z "$PETITBOOT_VERSION" ];
	then
		# Full git hash
		len=$(echo -n "${PETITBOOT_VERSION}" | wc -c)
		if [[ ${len} == 40 ]]; then
			version=`echo -n ${PETITBOOT_VERSION} | \
				sed "s/^\([0-9a-f]\{7\}\).*/\1/;"`
		else
			version="$PETITBOOT_VERSION"
		fi
	else
		# Default to current date and time.
		version="$(date +dev.$datefmt)"
	fi
fi

echo $version
OpenPOWER on IntegriCloud