diff options
author | Peter Stuge <peter@stuge.se> | 2011-08-21 06:17:05 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-08-21 07:40:39 +0200 |
commit | 875b9b197f64e845a2c220a1f69a5c1b4000092f (patch) | |
tree | c5fe306520307d4dc6acf9409efff57ba5030acc /Makefile.inc | |
parent | b98dbfb97e7a110ee2fc78b10524a147112e18a4 (diff) |
Use git describe to set KERNELVERSION
Change-Id: Id579b19fc38c7ca2b98ad1e87aaec71c070a9178
Signed-off-by: Peter Stuge <peter@stuge.se>
Reviewed-on: http://review.coreboot.org/163
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc index 89467db6d9..6c51a84cdd 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -19,8 +19,7 @@ ####################################################################### # misleadingly named, this is the coreboot version -REV=-r$(shell if [ -d $(top)/.git -a -f "`which git`" ]; then git --git-dir=/$(top)/.git show -s --pretty=format:%h; fi) -export KERNELVERSION := 4.0$(REV) +export KERNELVERSION := $(shell if [ -d "$(top)/.git" -a -f "`which git`" ]; then git describe; else echo unknown; fi) ####################################################################### # Basic component discovery |