blob: ed8d7963f9d31442dc26c04644c05ef019ec064c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#!/bin/bash
function help {
cat <<EOHELP
Utilities to read/write the git hash for the project.
The script will attempt to get info in the following order:
- Using a git command
- Using a hash file (if speficied by user)
- Otherwise hash = 0xFFFFFFFF
Usage: $0 [--help|-h] [--write] [--hashfile=HASH_FILE]
--hashfile : Location of git hash file [project.githash]
--write : Write the git hash to HASH_FILE in the Ettus 32-bit register format
--help : Shows this message
EOHELP
}
hashfile="project.githash"
write=0
for arg in "$@"; do
if [[ $arg == "--help" ]]; then
help
exit 0
elif [[ $arg =~ "--hashfile="(.*) ]]; then
hashfile=${BASH_REMATCH[1]}
elif [[ $arg =~ "--write" ]]; then
write=1
fi
done
# Default hash value (failsafe)
ettus_githash32="ffffffff"
if [[ $write -eq 0 ]]; then
git_success=0
# First attempt: Use git
if [[ $(command -v git) != "" ]]; then
# Attempt to get hash from git.
# This command will fail if we are not in a git tree
short_hash="$(git rev-parse --verify HEAD --short=7 2>/dev/null)" && git_success=1
if [[ $git_success -eq 1 ]]; then
# Check if tree is clean. If yes, the top 4 bits are 0
if (git diff --quiet 2>/dev/null); then
ettus_githash32="0$short_hash"
else
ettus_githash32="f$short_hash"
fi
fi
fi
# Second attempt: Read from file if it exists
if [[ $git_success -eq 0 ]]; then
if [[ -f $hashfile ]]; then
ettus_githash32=$(cat $hashfile)
fi
fi
echo ${ettus_githash32}
exit 0
else
# Require git
command -v git >/dev/null || { echo "ERROR: git not found"; exit 1; }
# Get hash from git
short_hash="$(git rev-parse --verify HEAD --short=7 2>/dev/null)" || { echo "ERROR: Not a git tree"; exit 2; }
# Check if tree is clean. If yes, the top 4 bits are 0
if (git diff --quiet 2>/dev/null); then
ettus_githash32="0$short_hash"
else
ettus_githash32="f$short_hash"
fi
echo $ettus_githash32 > $hashfile
echo "INFO: Wrote $ettus_githash32 to $hashfile"
exit 0
fi
|