]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - tools/setlocalversion
NAND: add Toshiba TC58NVG0 identifier
[people/ms/u-boot.git] / tools / setlocalversion
index 9bbdafdb6dcb79f8f6b6f0763df3c7bdb078e18d..b3f5f2824b1056352a1e229951e739a269837b35 100755 (executable)
@@ -22,4 +22,18 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then
            | read dummy; then
                printf '%s' -dirty
        fi
+
+       # Is this git on svn?
+       if git config --get svn-remote.svn.url >/dev/null; then
+               printf -- '-svn%s' "`git svn find-rev $head`"
+       fi
 fi
+
+# Check for svn and a svn repo.
+if rev=`svn info 2>/dev/null` ; then
+       rev=`echo "${rev}" | grep '^Revision' | awk '{print $NF}'`
+       printf -- '-svn%s' $rev
+fi
+
+# Check for any localversion-* files
+printf '%s' "`cat localversion-* 2>/dev/null`"