clean up openwrt version handling, use a separate script that is executed at the beginning of the build process, fix revision checking with git

SVN-Revision: 9723
This commit is contained in:
Felix Fietkau
2007-12-13 06:25:54 +00:00
parent 084c9abec3
commit 51996a78f1
3 changed files with 35 additions and 18 deletions

26
scripts/getver.sh Executable file
View File

@ -0,0 +1,26 @@
#!/usr/bin/env bash
export LANG=C
[ -n "$TOPDIR" ] && cd $TOPDIR
try_version() {
[ -f version ] || return 1
REV="$(cat version)"
[ -n "$REV" ]
}
try_svn() {
[ -d .svn ] || return 1
REV="$(svn info | awk '/^Revision:/ { print $2 }')"
REV="${REV:+r$REV}"
[ -n "$REV" ]
}
try_git() {
[ -d .git ] || return 1
REV="$(git-log | grep -m 1 git-svn-id | awk '{ gsub(/.*@/, "", $2); print $2 }')"
REV="${REV:+r$REV}"
[ -n "$REV" ]
}
try_version || try_svn || try_git || REV="unknown"
echo "$REV"