diff options
author | Chris Mason <chris.mason@oracle.com> | 2008-07-23 12:12:13 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 11:04:05 -0400 |
commit | b3c3da71ed88c06bc18a4d8919c6e4af3b933566 (patch) | |
tree | 2c872dc4d5e9a6fe104704f95c7acf920236396c /fs/btrfs/version.sh | |
parent | 4881ee5a2e995c6a8999b56de70aa3834369d8ee (diff) |
Btrfs: Add version strings on module load
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/version.sh')
-rw-r--r-- | fs/btrfs/version.sh | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/fs/btrfs/version.sh b/fs/btrfs/version.sh new file mode 100644 index 000000000000..fd9b53d39860 --- /dev/null +++ b/fs/btrfs/version.sh | |||
@@ -0,0 +1,43 @@ | |||
1 | #!/bin/bash | ||
2 | # | ||
3 | # determine-version -- report a useful version for releases | ||
4 | # | ||
5 | # Copyright 2008, Aron Griffis <agriffis@n01se.net> | ||
6 | # Copyright 2008, Oracle | ||
7 | # Released under the GNU GPLv2 | ||
8 | |||
9 | v="Btrfs v0.15" | ||
10 | |||
11 | which hg > /dev/null | ||
12 | if [ $? == 0 ]; then | ||
13 | last=$(hg tags | grep -m1 -o '^v[0-9.]\+') | ||
14 | |||
15 | # now check if the repo has commits since then... | ||
16 | if [[ $(hg id -t) == $last || \ | ||
17 | $(hg di -r "$last:." | awk '/^diff/{print $NF}' | sort -u) == .hgtags ]] | ||
18 | then | ||
19 | # check if it's dirty | ||
20 | if [[ $(hg id | cut -d' ' -f1) == *+ ]]; then | ||
21 | v=$last+ | ||
22 | else | ||
23 | v=$last | ||
24 | fi | ||
25 | else | ||
26 | # includes dirty flag | ||
27 | v=$last+$(hg id -i) | ||
28 | fi | ||
29 | fi | ||
30 | |||
31 | echo "#ifndef __BUILD_VERSION" > .build-version.h | ||
32 | echo "#define __BUILD_VERSION" >> .build-version.h | ||
33 | echo "#define BTRFS_BUILD_VERSION \"Btrfs $v\"" >> .build-version.h | ||
34 | echo "#endif" >> .build-version.h | ||
35 | |||
36 | diff -q version.h .build-version.h >& /dev/null | ||
37 | |||
38 | if [ $? == 0 ]; then | ||
39 | rm .build-version.h | ||
40 | exit 0 | ||
41 | fi | ||
42 | |||
43 | mv .build-version.h version.h | ||