flash: cleanup stm32lx driver
[openocd.git] / guess-rev.sh
blob7adbe2817a43f1bac90da1cb716f605fb9d7fe80
1 #!/bin/sh
3 # This scripts adds local version information from the version
4 # control systems git, mercurial (hg) and subversion (svn).
6 # Copied from Linux 2.6.32 scripts/setlocalversion and modified
7 # slightly to work better for OpenOCD.
10 usage() {
11 echo "Usage: $0 [srctree]" >&2
12 exit 1
15 cd "${1:-.}" || usage
17 # Check for git and a git repo.
18 if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
20 # If we are at a tagged commit (like "v2.6.30-rc6"), we ignore it,
21 # because this version is defined in the top level Makefile.
22 if [ -z "`git describe --exact-match 2>/dev/null`" ]; then
24 # If we are past a tagged commit (like "v2.6.30-rc5-302-g72357d5"),
25 # we pretty print it.
26 if atag="`git describe 2>/dev/null`"; then
27 echo "$atag" | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
29 # If we don't have a tag at all we print -g{commitish}.
30 else
31 printf '%s%s' -g $head
35 # Is this git on svn?
36 if git config --get svn-remote.svn.url >/dev/null; then
37 printf -- '-svn%s' "`git svn find-rev $head`"
40 # Update index only on r/w media
41 [ -w . ] && git update-index --refresh --unmerged > /dev/null
43 # Check for uncommitted changes
44 if git diff-index --name-only HEAD | grep -v "^scripts/package" \
45 | read dummy; then
46 printf '%s' -dirty
49 # All done with git
50 exit
53 # Check for mercurial and a mercurial repo.
54 if hgid=`hg id 2>/dev/null`; then
55 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
57 # Do we have an untagged version?
58 if [ -z "$tag" -o "$tag" = tip ]; then
59 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
60 printf '%s%s' -hg "$id"
63 # Are there uncommitted changes?
64 # These are represented by + after the changeset id.
65 case "$hgid" in
66 *+|*+\ *) printf '%s' -dirty ;;
67 esac
69 # All done with mercurial
70 exit
73 # Check for svn and a svn repo.
74 if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
75 rev=`echo $rev | awk '{print $NF}'`
76 printf -- '-svn%s' "$rev"
78 # All done with svn
79 exit
82 # There's no reecognized repository; we must be a snapshot.
83 printf -- '-snapshot'