Blame view

scripts/setlocalversion 4.73 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
  	if test -z "$(git rev-parse --show-cdup 2>/dev/null)" &&
548b8b516   Rasmus Villemoes   scripts/setlocalv...
47
  	   head=$(git rev-parse --verify HEAD 2>/dev/null); then
09155120c   Michal Marek   kbuild: Clean up ...
48
49
50
  
  		# 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.
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
51
  		if [ -z "$(git describe --exact-match 2>/dev/null)" ]; then
09155120c   Michal Marek   kbuild: Clean up ...
52
53
54
55
56
57
58
59
60
  
  			# 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.
548b8b516   Rasmus Villemoes   scripts/setlocalv...
61
62
63
64
65
66
67
68
69
70
71
  			#
  			# Ensure the abbreviated sha1 has exactly 12
  			# hex characters, to make the output
  			# independent of git version, local
  			# core.abbrev settings and/or total number of
  			# objects in the current repository - passing
  			# --abbrev=12 ensures a minimum of 12, and the
  			# awk substr() then picks the 'g' and first 12
  			# hex chars.
  			if atag="$(git describe --abbrev=12 2>/dev/null)"; then
  				echo "$atag" | awk -F- '{printf("-%05d-%s", $(NF-1),substr($(NF),0,13))}'
09155120c   Michal Marek   kbuild: Clean up ...
72

548b8b516   Rasmus Villemoes   scripts/setlocalv...
73
74
  			# If we don't have a tag at all we print -g{commitish},
  			# again using exactly 12 hex chars.
09155120c   Michal Marek   kbuild: Clean up ...
75
  			else
548b8b516   Rasmus Villemoes   scripts/setlocalv...
76
  				head="$(echo $head | cut -c1-12)"
09155120c   Michal Marek   kbuild: Clean up ...
77
78
79
  				printf '%s%s' -g $head
  			fi
  		fi
33252572e   Nico Schottelius   Fix scripts/setlo...
80

09155120c   Michal Marek   kbuild: Clean up ...
81
82
  		# Is this git on svn?
  		if git config --get svn-remote.svn.url >/dev/null; then
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
83
  			printf -- '-svn%s' "$(git svn find-rev $head)"
33252572e   Nico Schottelius   Fix scripts/setlo...
84
  		fi
aaebf4332   Ryan Anderson   [PATCH] kbuild: a...
85

ff64dd485   Brian Norris   scripts/setlocalv...
86
87
88
89
90
91
92
93
94
95
  		# 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 ...
96
97
  			printf '%s' -dirty
  		fi
a2bb90a08   Nico Schottelius   kbuild: fix delay...
98

09155120c   Michal Marek   kbuild: Clean up ...
99
100
  		# All done with git
  		return
117a93db1   Rene Scharfe   kbuild: Use git i...
101
  	fi
3dce174cf   Aron Griffis   kbuild: support m...
102

09155120c   Michal Marek   kbuild: Clean up ...
103
  	# Check for mercurial and a mercurial repo.
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
104
  	if test -d .hg && hgid=$(hg id 2>/dev/null); then
38b3439d8   Mike Crowe   setlocalversion: ...
105
  		# Do we have an tagged version?  If so, latesttagdistance == 1
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
106
107
  		if [ "$(hg log -r . --template '{latesttagdistance}')" = "1" ]; then
  			id=$(hg log -r . --template '{latesttag}')
09155120c   Michal Marek   kbuild: Clean up ...
108
  			printf '%s%s' -hg "$id"
38b3439d8   Mike Crowe   setlocalversion: ...
109
  		else
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
110
  			tag=$(printf '%s' "$hgid" | cut -d' ' -f2)
38b3439d8   Mike Crowe   setlocalversion: ...
111
  			if [ -z "$tag" -o "$tag" = tip ]; then
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
112
  				id=$(printf '%s' "$hgid" | sed 's/[+ ].*//')
38b3439d8   Mike Crowe   setlocalversion: ...
113
114
  				printf '%s%s' -hg "$id"
  			fi
09155120c   Michal Marek   kbuild: Clean up ...
115
  		fi
3dce174cf   Aron Griffis   kbuild: support m...
116

09155120c   Michal Marek   kbuild: Clean up ...
117
118
119
120
121
  		# 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...
122

09155120c   Michal Marek   kbuild: Clean up ...
123
124
  		# All done with mercurial
  		return
3dce174cf   Aron Griffis   kbuild: support m...
125
  	fi
09155120c   Michal Marek   kbuild: Clean up ...
126
  	# Check for svn and a svn repo.
3c96bdd0e   Bhaskar Chowdhury   scripts: setlocal...
127
128
  	if rev=$(LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'); then
  		rev=$(echo $rev | awk '{print $NF}')
09155120c   Michal Marek   kbuild: Clean up ...
129
  		printf -- '-svn%s' "$rev"
3dce174cf   Aron Griffis   kbuild: support m...
130

09155120c   Michal Marek   kbuild: Clean up ...
131
132
133
134
135
136
137
  		# All done with svn
  		return
  	fi
  }
  
  collect_files()
  {
7a82e3fa2   Masahiro Yamada   scripts/setlocalv...
138
  	local file res=
09155120c   Michal Marek   kbuild: Clean up ...
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
  
  	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
154
155
156
157
  	if test ! -e .scmversion; then
  		res=$(scm_version)
  		echo "$res" >.scmversion
  	fi
3dce174cf   Aron Griffis   kbuild: support m...
158
  	exit
117a93db1   Rene Scharfe   kbuild: Use git i...
159
  fi
ba3d05fb6   Bryan Wu   kbuild: add svn r...
160

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

09155120c   Michal Marek   kbuild: Clean up ...
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  # 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...
182
183
184
185
  	# 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 ...
186
187
188
189
  	if test "${LOCALVERSION+set}" != "set"; then
  		scm=$(scm_version --short)
  		res="$res${scm:++}"
  	fi
ba3d05fb6   Bryan Wu   kbuild: add svn r...
190
  fi
09155120c   Michal Marek   kbuild: Clean up ...
191
192
  
  echo "$res"