summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-07-17 16:17:19 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-22 08:11:58 +0200
commit0bd652f62a5406aed7fbb3e0349b8c787bde6953 (patch)
tree2955236c35fa338ef6fabbd27b7de0c7196601ed /include
parentad7f4c29b97122b9a0343d9c96bc0dbce99c5665 (diff)
downloadbarebox-0bd652f62a5406aed7fbb3e0349b8c787bde6953.tar.gz
barebox-0bd652f62a5406aed7fbb3e0349b8c787bde6953.tar.xz
Add release string
Currently we only have version_string which contains information about the date the binary was compiled and by whom it has been compiled. This adds a release_string which only contains the plain release version. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index e7ab5feeac..ca817aac4f 100644
--- a/include/common.h
+++ b/include/common.h
@@ -259,6 +259,7 @@ int open_and_lseek(const char *filename, int mode, loff_t pos);
#define RW_BUF_SIZE (unsigned)4096
extern const char version_string[];
+extern const char release_string[];
#ifdef CONFIG_BANNER
void barebox_banner(void);
#else