Add support for u-boot in svn and localversion-* files

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
master
Mike Frysinger 16 years ago committed by Wolfgang Denk
parent d23ff6827d
commit 92bad20ad7
  1. 14
      tools/setlocalversion

@ -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`"

Loading…
Cancel
Save