Add a #define to make init extra quiet on boot.
 -Erik
diff --git a/init/init.c b/init/init.c
index 350ea62..8e28f07 100644
--- a/init/init.c
+++ b/init/init.c
@@ -843,11 +843,19 @@
 
 	/* Hello world */
 #ifndef DEBUG_INIT
-	message(LOG,
+	message(
+#if ! defined BB_FEATURE_EXTRA_QUIET
+			CONSOLE|
+#endif
+			LOG,
 			"init started:  BusyBox v%s (%s) multi-call binary\r\n",
 			BB_VER, BB_BT);
 #else
-	message(LOG,
+	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);
 #endif