kbuild: do not warn about __*init/__*exit symbols being exported
[linux-2.6-block.git] / scripts / setlocalversion
CommitLineData
117a93db
RS
1#!/bin/sh
2# Print additional version information for non-release trees.
aaebf433 3
117a93db
RS
4usage() {
5 echo "Usage: $0 [srctree]" >&2
6 exit 1
aaebf433
RA
7}
8
117a93db 9cd "${1:-.}" || usage
aaebf433 10
117a93db
RS
11# Check for git and a git repo.
12if head=`git rev-parse --verify HEAD 2>/dev/null`; then
13 # Do we have an untagged version?
29b0c899 14 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
d882421f 15 git describe | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
117a93db 16 fi
aaebf433 17
117a93db 18 # Are there uncommitted changes?
4e7434ff 19 git update-index --refresh --unmerged > /dev/null
b052ce4c
TT
20 if git diff-index --name-only HEAD | grep -v "^scripts/package" \
21 | read dummy; then
24d49756 22 printf '%s' -dirty
117a93db 23 fi
3dce174c
AG
24
25 # All done with git
26 exit
27fi
28
29# Check for mercurial and a mercurial repo.
30if hgid=`hg id 2>/dev/null`; then
31 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
32
33 # Do we have an untagged version?
34 if [ -z "$tag" -o "$tag" = tip ]; then
35 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
36 printf '%s%s' -hg "$id"
37 fi
38
39 # Are there uncommitted changes?
40 # These are represented by + after the changeset id.
41 case "$hgid" in
42 *+|*+\ *) printf '%s' -dirty ;;
43 esac
44
45 # All done with mercurial
46 exit
117a93db 47fi