scripts/getver.sh: allow conversion between git hash and revision
Add code allowing easy conversion between git commit ids and revisions. Example: $ ./scripts/getver.sh r792 $ ./scripts/getver.sh r123b7fc892eb5
$ ./scrpts/getver.shb7fc892eb5
r123 Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
This commit is contained in:
parent
575be9d182
commit
1001b5d77c
1 changed files with 18 additions and 2 deletions
|
@ -3,6 +3,8 @@ export LANG=C
|
|||
export LC_ALL=C
|
||||
[ -n "$TOPDIR" ] && cd $TOPDIR
|
||||
|
||||
GET_REV=$1
|
||||
|
||||
try_version() {
|
||||
[ -f version ] || return 1
|
||||
REV="$(cat version)"
|
||||
|
@ -11,8 +13,22 @@ try_version() {
|
|||
|
||||
try_git() {
|
||||
git rev-parse --git-dir >/dev/null 2>&1 || return 1
|
||||
REV="$(git rev-list reboot..HEAD --count)"
|
||||
REV="${REV:+r$REV}"
|
||||
|
||||
[ -n "$GET_REV" ] || GET_REV="HEAD"
|
||||
|
||||
case "$GET_REV" in
|
||||
r*)
|
||||
GET_REV="$(echo $GET_REV | tr -d 'r')"
|
||||
BASE_REV="$(git rev-list reboot..HEAD --count)"
|
||||
REV="$(git rev-parse HEAD~$((BASE_REV - GET_REV)))"
|
||||
;;
|
||||
*)
|
||||
|
||||
REV="$(git rev-list reboot..$GET_REV --count)"
|
||||
REV="${REV:+r$REV}"
|
||||
;;
|
||||
esac
|
||||
|
||||
[ -n "$REV" ]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue