blob: 6aa34e5afdcfc0a57cafc12d6bc631d2d8169fbb [file] [log] [blame]
Ingo Molnar07800602009-04-20 15:00:56 +02001#!/bin/sh
2
Arnaldo Carvalho de Meloc29ede62010-03-27 14:30:45 -03003if [ $# -eq 1 ] ; then
4 OUTPUT=$1
5fi
6
7GVF=${OUTPUT}PERF-VERSION-FILE
Ingo Molnar07800602009-04-20 15:00:56 +02008
9LF='
10'
11
Ingo Molnar0e2af952012-10-30 09:54:41 +010012#
Thavidu Ranatunga869599c2010-07-05 18:00:15 +100013# First check if there is a .git to get the version from git describe
Ingo Molnar0e2af952012-10-30 09:54:41 +010014# otherwise try to get the version from the kernel Makefile
15#
Thavidu Ranatunga869599c2010-07-05 18:00:15 +100016if test -d ../../.git -o -f ../../.git &&
Arnaldo Carvalho de Melo688b2c22012-10-30 13:44:40 -020017 VN=$(git tag 2>/dev/null | tail -1 | grep -E "v[0-9].[0-9]*")
Ingo Molnar07800602009-04-20 15:00:56 +020018then
Arnaldo Carvalho de Melo688b2c22012-10-30 13:44:40 -020019 VN=$(echo $VN"-g"$(git log -1 --abbrev=4 --pretty=format:"%h" HEAD))
Ingo Molnar07800602009-04-20 15:00:56 +020020 VN=$(echo "$VN" | sed -e 's/-/./g');
21else
Andy Whitcroft37aa9a22011-06-15 14:35:00 +010022 VN=$(MAKEFLAGS= make -sC ../.. kernelversion)
Ingo Molnar07800602009-04-20 15:00:56 +020023fi
24
25VN=$(expr "$VN" : v*'\(.*\)')
26
27if test -r $GVF
28then
29 VC=$(sed -e 's/^PERF_VERSION = //' <$GVF)
30else
31 VC=unset
32fi
33test "$VN" = "$VC" || {
34 echo >&2 "PERF_VERSION = $VN"
35 echo "PERF_VERSION = $VN" >$GVF
36}
37
38