diff options
-rw-r--r-- | Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index ad97363139..158ac44a8a 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -19,7 +19,9 @@ ####################################################################### # misleadingly named, this is the coreboot version -export KERNELVERSION := $(shell if [ -d "$(top)/.git" -a -f "`which git`" ]; then git describe --dirty 2>/dev/null || git describe; else echo unknown; fi) +export KERNELVERSION := $(shell if [ -d "$(top)/.git" -a -f "`which git`" ]; \ + then git describe --dirty --always || git describe; \ + else echo 4.0$(KERNELREVISION); fi) ####################################################################### # Basic component discovery |