New message added to messages.c: full_version
Used where possible
diff --git a/init/init.c b/init/init.c
index 5a89439..ab4ad56 100644
--- a/init/init.c
+++ b/init/init.c
@@ -46,6 +46,10 @@
 # include <sys/syslog.h>
 #endif
 
+#define bb_need_full_version
+#define BB_DECLARE_EXTERN
+#include "messages.c"
+
 /* From <linux/vt.h> */
 struct vt_stat {
 	unsigned short v_active;        /* active vt */
@@ -938,16 +942,14 @@
 			CONSOLE|
 #endif
 			LOG,
-			"init started:  BusyBox v%s (%s) multi-call binary\r\n",
-			BB_VER, BB_BT);
+			"init started:  %s\r\n", full_version);
 #else
 	message(
 #if ! defined BB_FEATURE_EXTRA_QUIET
 			CONSOLE|
 #endif
 			LOG,
-			"init(%d) started:  BusyBox v%s (%s) multi-call binary\r\n",
-			getpid(), BB_VER, BB_BT);
+			"init(%d) started:  %s\r\n", getpid(), full_version);
 #endif