Index: init/init.c
===================================================================
--- init/init.c	(revision eaf34f766b3444c273e4dac09ae77a518d71dc60)
+++ init/init.c	(revision b27a97bb30fc0f831ab37f52c45321ec3d904ca4)
@@ -416,4 +416,13 @@
 }
 
+static void test_console(void)
+{
+	int c;
+
+	while ((c = getchar()) != EOF)
+		putchar(c);
+}
+
+
 int main(int argc, char *argv[])
 {
@@ -423,4 +432,6 @@
 //	version_print();
 
+	printf("Hello\nThis is Init\n");
+	
 //	test_printf();
 //	test_printf2();
@@ -437,7 +448,7 @@
 //	test_async_kbd();
 //	test_fb();
-
-	printf("Hello\nThis is Init\n\nBye.");
-	
+	test_console();
+
+	printf("\nBye.\n");
 
 /*	
