blob: d6a866ed1835c8f1ee4524c6bb26df554c83c6e1 [file] [log] [blame]
Rene Scharfe117a93d2006-01-04 20:42:03 +01001#!/bin/sh
Nico Schottelius33252572009-05-16 14:00:56 +02002#
3# This scripts adds local version information from the version
4# control systems git, mercurial (hg) and subversion (svn).
5#
6# If something goes wrong, send a mail the kernel build mailinglist
7# (see MAINTAINERS) and CC Nico Schottelius
8# <nico-linuxsetlocalversion -at- schottelius.org>.
9#
10#
Ryan Andersonaaebf432005-07-31 04:57:49 -040011
Rene Scharfe117a93d2006-01-04 20:42:03 +010012usage() {
Michal Marek09155122010-06-17 15:14:58 +020013 echo "Usage: $0 [--scm-only] [srctree]" >&2
Rene Scharfe117a93d2006-01-04 20:42:03 +010014 exit 1
Ryan Andersonaaebf432005-07-31 04:57:49 -040015}
16
Michal Marek09155122010-06-17 15:14:58 +020017scm_only=false
18srctree=.
19if test "$1" = "--scm-only"; then
20 scm_only=true
21 shift
22fi
23if test $# -gt 0; then
24 srctree=$1
25 shift
26fi
27if test $# -gt 0 -o ! -d "$srctree"; then
28 usage
29fi
Ryan Andersonaaebf432005-07-31 04:57:49 -040030
Michal Marek09155122010-06-17 15:14:58 +020031scm_version()
32{
33 local short=false
Nico Schottelius33252572009-05-16 14:00:56 +020034
Michal Marek09155122010-06-17 15:14:58 +020035 cd "$srctree"
36 if test -e .scmversion; then
37 cat "$_"
38 return
39 fi
40 if test "$1" = "--short"; then
41 short=true
42 fi
Nico Schottelius33252572009-05-16 14:00:56 +020043
Michal Marek09155122010-06-17 15:14:58 +020044 # Check for git and a git repo.
45 if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
Nico Schottelius33252572009-05-16 14:00:56 +020046
Michal Marek09155122010-06-17 15:14:58 +020047 # If we are at a tagged commit (like "v2.6.30-rc6"), we ignore
48 # it, because this version is defined in the top level Makefile.
49 if [ -z "`git describe --exact-match 2>/dev/null`" ]; then
50
51 # If only the short version is requested, don't bother
52 # running further git commands
53 if $short; then
54 echo "+"
55 return
56 fi
57 # If we are past a tagged commit (like
58 # "v2.6.30-rc5-302-g72357d5"), we pretty print it.
59 if atag="`git describe 2>/dev/null`"; then
60 echo "$atag" | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
61
62 # If we don't have a tag at all we print -g{commitish}.
63 else
64 printf '%s%s' -g $head
65 fi
Nico Schottelius33252572009-05-16 14:00:56 +020066 fi
Michal Marek09155122010-06-17 15:14:58 +020067
68 # Is this git on svn?
69 if git config --get svn-remote.svn.url >/dev/null; then
70 printf -- '-svn%s' "`git svn find-rev $head`"
71 fi
72
73 # Update index only on r/w media
74 [ -w . ] && git update-index --refresh --unmerged > /dev/null
75
76 # Check for uncommitted changes
77 if git diff-index --name-only HEAD | grep -v "^scripts/package" \
78 | read dummy; then
79 printf '%s' -dirty
80 fi
81
82 # All done with git
83 return
Rene Scharfe117a93d2006-01-04 20:42:03 +010084 fi
Ryan Andersonaaebf432005-07-31 04:57:49 -040085
Michal Marek09155122010-06-17 15:14:58 +020086 # Check for mercurial and a mercurial repo.
87 if hgid=`hg id 2>/dev/null`; then
88 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
89
90 # Do we have an untagged version?
91 if [ -z "$tag" -o "$tag" = tip ]; then
92 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
93 printf '%s%s' -hg "$id"
94 fi
95
96 # Are there uncommitted changes?
97 # These are represented by + after the changeset id.
98 case "$hgid" in
99 *+|*+\ *) printf '%s' -dirty ;;
100 esac
101
102 # All done with mercurial
103 return
Peter Korsgaardff80aa92008-12-02 21:58:06 +0100104 fi
105
Michal Marek09155122010-06-17 15:14:58 +0200106 # Check for svn and a svn repo.
107 if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
108 rev=`echo $rev | awk '{print $NF}'`
109 printf -- '-svn%s' "$rev"
Nico Schotteliusa2bb90a2009-06-12 09:59:52 +0200110
Michal Marek09155122010-06-17 15:14:58 +0200111 # All done with svn
112 return
Rene Scharfe117a93d2006-01-04 20:42:03 +0100113 fi
Michal Marek09155122010-06-17 15:14:58 +0200114}
Aron Griffis3dce1742007-11-28 16:55:44 -0500115
Michal Marek09155122010-06-17 15:14:58 +0200116collect_files()
117{
118 local file res
119
120 for file; do
121 case "$file" in
122 *\~*)
123 continue
124 ;;
125 esac
126 if test -e "$file"; then
127 res="$res$(cat "$file")"
128 fi
129 done
130 echo "$res"
131}
132
133if $scm_only; then
134 scm_version
Aron Griffis3dce1742007-11-28 16:55:44 -0500135 exit
136fi
137
Michal Marek09155122010-06-17 15:14:58 +0200138if test -e include/config/auto.conf; then
139 source "$_"
140else
141 echo "Error: kernelrelease not valid - run 'make prepare' to update it"
142 exit 1
143fi
Aron Griffis3dce1742007-11-28 16:55:44 -0500144
Michal Marek09155122010-06-17 15:14:58 +0200145# localversion* files in the build and source directory
146res="$(collect_files localversion*)"
147if test ! "$srctree" -ef .; then
148 res="$res$(collect_files "$srctree"/localversion*)"
149fi
150
151# CONFIG_LOCALVERSION and LOCALVERSION (if set)
152res="${res}${CONFIG_LOCALVERSION}${LOCALVERSION}"
153
154# scm version string if not at a tagged commit
155if test "$CONFIG_LOCALVERSION_AUTO" = "y"; then
156 # full scm version string
157 res="$res$(scm_version)"
158else
159 # apped a plus sign if the repository is not in a clean tagged
160 # state and LOCALVERSION= is not specified
161 if test "${LOCALVERSION+set}" != "set"; then
162 scm=$(scm_version --short)
163 res="$res${scm:++}"
Aron Griffis3dce1742007-11-28 16:55:44 -0500164 fi
Rene Scharfe117a93d2006-01-04 20:42:03 +0100165fi
Bryan Wuba3d05f2008-02-03 14:13:26 +0800166
Michal Marek09155122010-06-17 15:14:58 +0200167echo "$res"