summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/common/version.c2
-rw-r--r--firmware/firmware.make6
-rw-r--r--firmware/include/version.h26
3 files changed, 30 insertions, 4 deletions
diff --git a/firmware/common/version.c b/firmware/common/version.c
index 762842c6de..bb856e4219 100644
--- a/firmware/common/version.c
+++ b/firmware/common/version.c
@@ -19,5 +19,5 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include "version.h" 22#include "rbversion.h"
23const char rbversion[] = RBVERSION; 23const char rbversion[] = RBVERSION;
diff --git a/firmware/firmware.make b/firmware/firmware.make
index 8e2d475683..8f8014d82c 100644
--- a/firmware/firmware.make
+++ b/firmware/firmware.make
@@ -47,11 +47,11 @@ $(BUILDDIR)/sysfont.o: $(SYSFONT) $(BUILDDIR)/sysfont.h
47 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$(BUILDDIR)/sysfont.c))$(CC) $(CFLAGS) -c $(BUILDDIR)/sysfont.c -o $@ 47 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$(BUILDDIR)/sysfont.c))$(CC) $(CFLAGS) -c $(BUILDDIR)/sysfont.c -o $@
48 48
49SVNVERSION:=$(shell $(TOOLSDIR)/version.sh $(ROOTDIR)) 49SVNVERSION:=$(shell $(TOOLSDIR)/version.sh $(ROOTDIR))
50OLDSVNVERSION:=$(shell grep 'RBVERSION' $(BUILDDIR)/version.h 2>/dev/null|cut -d '"' -f 2 || echo "NOREVISION") 50OLDSVNVERSION:=$(shell grep 'RBVERSION' $(BUILDDIR)/rbversion.h 2>/dev/null|cut -d '"' -f 2 || echo "NOREVISION")
51 51
52ifneq ($(SVNVERSION),$(OLDSVNVERSION)) 52ifneq ($(SVNVERSION),$(OLDSVNVERSION))
53.PHONY: $(BUILDDIR)/version.h 53.PHONY: $(BUILDDIR)/rbversion.h
54endif 54endif
55 55
56$(BUILDDIR)/version.h: 56$(BUILDDIR)/rbversion.h:
57 $(call PRINTS,GEN $(@F))$(TOOLSDIR)/genversion.sh $(BUILDDIR) $(TOOLSDIR)/version.sh $(ROOTDIR) 57 $(call PRINTS,GEN $(@F))$(TOOLSDIR)/genversion.sh $(BUILDDIR) $(TOOLSDIR)/version.sh $(ROOTDIR)
diff --git a/firmware/include/version.h b/firmware/include/version.h
new file mode 100644
index 0000000000..e9e291a8c4
--- /dev/null
+++ b/firmware/include/version.h
@@ -0,0 +1,26 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 by Frank Gevaerts
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef _RBVERSION_H_
22#define _RBVERSION_H_
23
24extern const char rbversion[];
25
26#endif /* _RBVERSION_H_ */