GNU Linux-libre 5.19-rc6-gnu
[releases.git] / tools / perf / util / PERF-VERSION-GEN
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3
4 if [ $# -eq 1 ]  ; then
5         OUTPUT=$1
6 fi
7
8 GVF=${OUTPUT}PERF-VERSION-FILE
9
10 LF='
11 '
12
13 #
14 # Always try first to get the version from the kernel Makefile
15 #
16 CID=
17 TAG=
18 if test -d ../../.git -o -f ../../.git
19 then
20         TAG=$(MAKEFLAGS= make -sC ../.. kernelversion)
21         CID=$(git log -1 --abbrev=12 --pretty=format:"%h" 2>/dev/null) && CID="-g$CID"
22 else
23         TAG=$(cut -d' ' -f3 ../../PERF-VERSION-FILE | sed -e 's/\"//g')
24 fi
25
26 VN="$TAG$CID"
27 if test -n "$CID"
28 then
29         # format version string, strip trailing zero of sublevel:
30         VN=$(echo "$VN" | sed -e 's/-/./g;s/\([0-9]*[.][0-9]*\)[.]0/\1/')
31 fi
32
33 VN=$(expr "$VN" : v*'\(.*\)')
34
35 if test -r $GVF
36 then
37         VC=$(sed -e 's/^#define PERF_VERSION "\(.*\)"/\1/' <$GVF)
38 else
39         VC=unset
40 fi
41 test "$VN" = "$VC" || {
42         echo >&2 "  PERF_VERSION = $VN"
43         echo "#define PERF_VERSION \"$VN\"" >$GVF
44 }
45
46