Blame view

scripts/setlocalversion 4.29 KB
117a93db1   Rene Scharfe   kbuild: Use git i...
1
  #!/bin/sh
b24413180   Greg Kroah-Hartman   License cleanup: ...
2
  # SPDX-License-Identifier: GPL-2.0
33252572e   Nico Schottelius   Fix scripts/setlo...
3
4
5
6
7
8
9
10
11
  #
  # This scripts adds local version information from the version
  # control systems git, mercurial (hg) and subversion (svn).
  #
  # If something goes wrong, send a mail the kernel build mailinglist
  # (see MAINTAINERS) and CC Nico Schottelius
  # <nico-linuxsetlocalversion -at- schottelius.org>.
  #
  #
aaebf4332   Ryan Anderson   [PATCH] kbuild: a...
12

117a93db1   Rene Scharfe   kbuild: Use git i...
13
  usage() {
b003afe32   Michal Marek   kbuild: Fix make rpm
14
  	echo "Usage: $0 [--save-scmversion] [srctree]" >&2
117a93db1   Rene Scharfe   kbuild: Use git i...
15
  	exit 1
aaebf4332   Ryan Anderson   [PATCH] kbuild: a...
16
  }
09155120c   Michal Marek   kbuild: Clean up ...
17
18
  scm_only=false
  srctree=.
b003afe32   Michal Marek   kbuild: Fix make rpm
19
  if test "$1" = "--save-scmversion"; then
09155120c   Michal Marek   kbuild: Clean up ...
20
21
22
23
24
25
26
27
28
29
  	scm_only=true
  	shift
  fi
  if test $# -gt 0; then
  	srctree=$1
  	shift
  fi
  if test $# -gt 0 -o ! -d "$srctree"; then
  	usage
  fi
aaebf4332   Ryan Anderson   [PATCH] kbuild: a...
30

09155120c   Michal Marek   kbuild: Clean up ...
31
32
  scm_version()
  {
6dc0c2f33   Michał Górny   kbuild: Make the ...
33
34
  	local short
  	short=false
33252572e   Nico Schottelius   Fix scripts/setlo...
35

09155120c   Michal Marek   kbuild: Clean up ...
36
37
  	cd "$srctree"
  	if test -e .scmversion; then
6dc0c2f33   Michał Górny   kbuild: Make the ...
38
  		cat .scmversion
09155120c   Michal Marek   kbuild: Clean up ...
39
40
41
42
43
  		return
  	fi
  	if test "$1" = "--short"; then
  		short=true
  	fi
33252572e   Nico Schottelius   Fix scripts/setlo...
44

09155120c   Michal Marek   kbuild: Clean up ...
45
  	# Check for git and a git repo.
7593e0902   Franck Bui-Huu   Fix detectition o...
46
47
  	if test -z "$(git rev-parse --show-cdup 2>/dev/null)" &&
  	   head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
09155120c   Michal Marek   kbuild: Clean up ...
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  
  		# If we are at a tagged commit (like "v2.6.30-rc6"), we ignore
  		# it, because this version is defined in the top level Makefile.
  		if [ -z "`git describe --exact-match 2>/dev/null`" ]; then
  
  			# If only the short version is requested, don't bother
  			# running further git commands
  			if $short; then
  				echo "+"
  				return
  			fi
  			# If we are past a tagged commit (like
  			# "v2.6.30-rc5-302-g72357d5"), we pretty print it.
  			if atag="`git describe 2>/dev/null`"; then
  				echo "$atag" | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
  
  			# If we don't have a tag at all we print -g{commitish}.
  			else
  				printf '%s%s' -g $head
  			fi
  		fi
33252572e   Nico Schottelius   Fix scripts/setlo...
69

09155120c   Michal Marek   kbuild: Clean up ...
70
71
72
  		# Is this git on svn?
  		if git config --get svn-remote.svn.url >/dev/null; then
  			printf -- '-svn%s' "`git svn find-rev $head`"
33252572e   Nico Schottelius   Fix scripts/setlo...
73
  		fi
aaebf4332   Ryan Anderson   [PATCH] kbuild: a...
74

ff64dd485   Brian Norris   scripts/setlocalv...
75
76
77
78
79
80
81
82
83
84
  		# Check for uncommitted changes.
  		# First, with git-status, but --no-optional-locks is only
  		# supported in git >= 2.14, so fall back to git-diff-index if
  		# it fails. Note that git-diff-index does not refresh the
  		# index, so it may give misleading results. See
  		# git-update-index(1), git-diff-index(1), and git-status(1).
  		if {
  			git --no-optional-locks status -uno --porcelain 2>/dev/null ||
  			git diff-index --name-only HEAD
  		} | grep -qvE '^(.. )?scripts/package'; then
09155120c   Michal Marek   kbuild: Clean up ...
85
86
  			printf '%s' -dirty
  		fi
a2bb90a08   Nico Schottelius   kbuild: fix delay...
87

09155120c   Michal Marek   kbuild: Clean up ...
88
89
  		# All done with git
  		return
117a93db1   Rene Scharfe   kbuild: Use git i...
90
  	fi
3dce174cf   Aron Griffis   kbuild: support m...
91

09155120c   Michal Marek   kbuild: Clean up ...
92
  	# Check for mercurial and a mercurial repo.
8558f59ed   Michal Marek   setlocalversion: ...
93
  	if test -d .hg && hgid=`hg id 2>/dev/null`; then
38b3439d8   Mike Crowe   setlocalversion: ...
94
  		# Do we have an tagged version?  If so, latesttagdistance == 1
991b78fbd   Randy Dunlap   scripts: setlocal...
95
  		if [ "`hg log -r . --template '{latesttagdistance}'`" = "1" ]; then
38b3439d8   Mike Crowe   setlocalversion: ...
96
  			id=`hg log -r . --template '{latesttag}'`
09155120c   Michal Marek   kbuild: Clean up ...
97
  			printf '%s%s' -hg "$id"
38b3439d8   Mike Crowe   setlocalversion: ...
98
99
100
101
102
103
  		else
  			tag=`printf '%s' "$hgid" | cut -d' ' -f2`
  			if [ -z "$tag" -o "$tag" = tip ]; then
  				id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
  				printf '%s%s' -hg "$id"
  			fi
09155120c   Michal Marek   kbuild: Clean up ...
104
  		fi
3dce174cf   Aron Griffis   kbuild: support m...
105

09155120c   Michal Marek   kbuild: Clean up ...
106
107
108
109
110
  		# Are there uncommitted changes?
  		# These are represented by + after the changeset id.
  		case "$hgid" in
  			*+|*+\ *) printf '%s' -dirty ;;
  		esac
3dce174cf   Aron Griffis   kbuild: support m...
111

09155120c   Michal Marek   kbuild: Clean up ...
112
113
  		# All done with mercurial
  		return
3dce174cf   Aron Griffis   kbuild: support m...
114
  	fi
09155120c   Michal Marek   kbuild: Clean up ...
115
  	# Check for svn and a svn repo.
f893bfb61   Christophe Leroy   kbuild: Unset lan...
116
  	if rev=`LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'`; then
09155120c   Michal Marek   kbuild: Clean up ...
117
118
  		rev=`echo $rev | awk '{print $NF}'`
  		printf -- '-svn%s' "$rev"
3dce174cf   Aron Griffis   kbuild: support m...
119

09155120c   Michal Marek   kbuild: Clean up ...
120
121
122
123
124
125
126
  		# All done with svn
  		return
  	fi
  }
  
  collect_files()
  {
7a82e3fa2   Masahiro Yamada   scripts/setlocalv...
127
  	local file res=
09155120c   Michal Marek   kbuild: Clean up ...
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
  
  	for file; do
  		case "$file" in
  		*\~*)
  			continue
  			;;
  		esac
  		if test -e "$file"; then
  			res="$res$(cat "$file")"
  		fi
  	done
  	echo "$res"
  }
  
  if $scm_only; then
b003afe32   Michal Marek   kbuild: Fix make rpm
143
144
145
146
  	if test ! -e .scmversion; then
  		res=$(scm_version)
  		echo "$res" >.scmversion
  	fi
3dce174cf   Aron Griffis   kbuild: support m...
147
  	exit
117a93db1   Rene Scharfe   kbuild: Use git i...
148
  fi
ba3d05fb6   Bryan Wu   kbuild: add svn r...
149

09155120c   Michal Marek   kbuild: Clean up ...
150
  if test -e include/config/auto.conf; then
6dc0c2f33   Michał Górny   kbuild: Make the ...
151
  	. include/config/auto.conf
09155120c   Michal Marek   kbuild: Clean up ...
152
  else
78283edf2   Wolfram Sang   kbuild: setlocalv...
153
  	echo "Error: kernelrelease not valid - run 'make prepare' to update it" >&2
09155120c   Michal Marek   kbuild: Clean up ...
154
155
  	exit 1
  fi
ba3d05fb6   Bryan Wu   kbuild: add svn r...
156

09155120c   Michal Marek   kbuild: Clean up ...
157
158
159
160
161
162
163
164
165
166
167
168
169
170
  # localversion* files in the build and source directory
  res="$(collect_files localversion*)"
  if test ! "$srctree" -ef .; then
  	res="$res$(collect_files "$srctree"/localversion*)"
  fi
  
  # CONFIG_LOCALVERSION and LOCALVERSION (if set)
  res="${res}${CONFIG_LOCALVERSION}${LOCALVERSION}"
  
  # scm version string if not at a tagged commit
  if test "$CONFIG_LOCALVERSION_AUTO" = "y"; then
  	# full scm version string
  	res="$res$(scm_version)"
  else
c3e2f196f   Michael Prokop   scripts/setlocalv...
171
172
173
174
  	# append a plus sign if the repository is not in a clean
  	# annotated or signed tagged state (as git describe only
  	# looks at signed or annotated tags - git tag -a/-s) and
  	# LOCALVERSION= is not specified
09155120c   Michal Marek   kbuild: Clean up ...
175
176
177
178
  	if test "${LOCALVERSION+set}" != "set"; then
  		scm=$(scm_version --short)
  		res="$res${scm:++}"
  	fi
ba3d05fb6   Bryan Wu   kbuild: add svn r...
179
  fi
09155120c   Michal Marek   kbuild: Clean up ...
180
181
  
  echo "$res"