MINI2440: start.S removed MINI2440 specific speed
[u-boot-openmoko/mini2440.git] / tools / setlocalversion
blob319ae4734bcf0f605b6c644f4597c905e9720300
1 #!/bin/sh
2 # Print additional version information for non-release trees.
4 usage() {
5 echo "Usage: $0 [srctree]" >&2
6 exit 1
9 cd "${1:-.}" || usage
11 # Check for git and a git repo.
12 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
13 # Do we have an untagged version?
14 if git name-rev --tags HEAD | \
15 grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
16 git describe | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
19 # Are there uncommitted changes?
20 git update-index --refresh --unmerged > /dev/null
21 if git diff-index --name-only HEAD | grep -v "^scripts/package" \
22 | read dummy; then
23 printf '%s' -dirty
27 printf '%s' -moko12