[CPUFREQ] Fix the p4-clockmod N60 errata workaround.
[linux-2.6/mini2440.git] / scripts / setlocalversion
blob9a23825218f20135eadd4b348e45de2b21a3d421
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`" = "HEAD undefined" ]; then
15 printf '%s%s' -g `echo "$head" | cut -c1-8`
18 # Are there uncommitted changes?
19 if git diff-files | read dummy; then
20 printf '%s' -dirty