aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-02-16 15:41:12 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-02-16 15:41:12 +0000
commiteaa3b29a6df75786b5cad98dad0abf7b2ddc1ebd (patch)
tree4b2b90de0396e9d6ae5bd4cb088fe4b32ac0bdf4
parentdd1ccddf1b33972966760857092eb9b659b7a40a (diff)
downloadbusybox-eaa3b29a6df75786b5cad98dad0abf7b2ddc1ebd.tar.gz
forgoten new file for 14080 revison
-rw-r--r--applets/version.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/applets/version.c b/applets/version.c
new file mode 100644
index 000000000..6f6ec24ff
--- /dev/null
+++ b/applets/version.c
@@ -0,0 +1,10 @@
+#include "busybox.h"
+
+#ifndef BB_EXTRA_VERSION
+#define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
+#else
+#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
+#endif
+
+const char BB_BANNER[]=BANNER;
+const char * const bb_msg_full_version = BANNER " multi-call binary";