Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Arnaldo Carvalho de Melo | c29ede6 | 2010-03-27 14:30:45 -0300 | [diff] [blame] | 3 | if [ $# -eq 1 ] ; then |
| 4 | OUTPUT=$1 |
| 5 | fi |
| 6 | |
| 7 | GVF=${OUTPUT}PERF-VERSION-FILE |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 8 | |
| 9 | LF=' |
| 10 | ' |
| 11 | |
Ingo Molnar | 0e2af95 | 2012-10-30 09:54:41 +0100 | [diff] [blame] | 12 | # |
Thavidu Ranatunga | 869599c | 2010-07-05 18:00:15 +1000 | [diff] [blame] | 13 | # First check if there is a .git to get the version from git describe |
Ingo Molnar | 0e2af95 | 2012-10-30 09:54:41 +0100 | [diff] [blame] | 14 | # otherwise try to get the version from the kernel Makefile |
| 15 | # |
Robert Richter | a4147f0 | 2013-05-08 11:43:34 +0200 | [diff] [blame] | 16 | CID= |
| 17 | TAG= |
| 18 | if test -d ../../.git -o -f ../../.git |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 19 | then |
Robert Richter | a4147f0 | 2013-05-08 11:43:34 +0200 | [diff] [blame] | 20 | TAG=$(git describe --abbrev=0 --match "v[0-9].[0-9]*" 2>/dev/null ) |
| 21 | CID=$(git log -1 --abbrev=4 --pretty=format:"%h" 2>/dev/null) && CID="-g$CID" |
David Ahern | a614d01 | 2013-11-06 08:55:35 -0700 | [diff] [blame] | 22 | elif test -f ../../PERF-VERSION-FILE |
| 23 | then |
| 24 | TAG=$(cut -d' ' -f3 ../../PERF-VERSION-FILE | sed -e 's/\"//g') |
Robert Richter | a4147f0 | 2013-05-08 11:43:34 +0200 | [diff] [blame] | 25 | fi |
| 26 | if test -z "$TAG" |
| 27 | then |
| 28 | TAG=$(MAKEFLAGS= make -sC ../.. kernelversion) |
| 29 | fi |
| 30 | VN="$TAG$CID" |
| 31 | if test -n "$CID" |
| 32 | then |
| 33 | # format version string, strip trailing zero of sublevel: |
| 34 | VN=$(echo "$VN" | sed -e 's/-/./g;s/\([0-9]*[.][0-9]*\)[.]0/\1/') |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 35 | fi |
| 36 | |
| 37 | VN=$(expr "$VN" : v*'\(.*\)') |
| 38 | |
| 39 | if test -r $GVF |
| 40 | then |
Namhyung Kim | 3cecaa2 | 2013-01-16 20:59:53 +0900 | [diff] [blame] | 41 | VC=$(sed -e 's/^#define PERF_VERSION "\(.*\)"/\1/' <$GVF) |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 42 | else |
| 43 | VC=unset |
| 44 | fi |
| 45 | test "$VN" = "$VC" || { |
Ingo Molnar | 3fae82d | 2013-10-09 11:49:28 +0200 | [diff] [blame] | 46 | echo >&2 " PERF_VERSION = $VN" |
Namhyung Kim | 3cecaa2 | 2013-01-16 20:59:53 +0900 | [diff] [blame] | 47 | echo "#define PERF_VERSION \"$VN\"" >$GVF |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | |