]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/PERF-VERSION-GEN
Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / PERF-VERSION-GEN
CommitLineData
07800601
IM
1#!/bin/sh
2
c29ede61
ACM
3if [ $# -eq 1 ] ; then
4 OUTPUT=$1
5fi
6
7GVF=${OUTPUT}PERF-VERSION-FILE
07800601
IM
8
9LF='
10'
11
0e2af956 12#
869599ce 13# First check if there is a .git to get the version from git describe
0e2af956
IM
14# otherwise try to get the version from the kernel Makefile
15#
a4147f0f
RR
16CID=
17TAG=
18if test -d ../../.git -o -f ../../.git
07800601 19then
a4147f0f
RR
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"
a614d01b
DA
22elif test -f ../../PERF-VERSION-FILE
23then
24 TAG=$(cut -d' ' -f3 ../../PERF-VERSION-FILE | sed -e 's/\"//g')
a4147f0f
RR
25fi
26if test -z "$TAG"
27then
28 TAG=$(MAKEFLAGS= make -sC ../.. kernelversion)
29fi
30VN="$TAG$CID"
31if test -n "$CID"
32then
33 # format version string, strip trailing zero of sublevel:
34 VN=$(echo "$VN" | sed -e 's/-/./g;s/\([0-9]*[.][0-9]*\)[.]0/\1/')
07800601
IM
35fi
36
37VN=$(expr "$VN" : v*'\(.*\)')
38
39if test -r $GVF
40then
3cecaa20 41 VC=$(sed -e 's/^#define PERF_VERSION "\(.*\)"/\1/' <$GVF)
07800601
IM
42else
43 VC=unset
44fi
45test "$VN" = "$VC" || {
3fae82db 46 echo >&2 " PERF_VERSION = $VN"
3cecaa20 47 echo "#define PERF_VERSION \"$VN\"" >$GVF
07800601
IM
48}
49
50