Index: generic/src/console/cmd.c
===================================================================
--- generic/src/console/cmd.c	(revision dabe6333033ab3fdefc2073afacfd46f2a7cb686)
+++ generic/src/console/cmd.c	(revision 6a22fcb1d8d4c7fa9ad4454c62a6df536ba463f1)
@@ -294,4 +294,12 @@
 };
 
+static int cmd_hello(cmd_arg_t *argv);
+static cmd_info_t hello_info = {
+	.name = "hello",
+	.description = "Hello Message",
+	.func = cmd_hello,
+	.argc = 0
+};
+
 /** Data and methods for 'cpus' command. */
 static int cmd_cpus(cmd_arg_t *argv);
@@ -335,4 +343,5 @@
 	&zones_info,
 	&zone_info,
+	&hello_info,
 	NULL
 };
@@ -676,2 +685,9 @@
 	return 1;
 }
+
+
+int cmd_hello(cmd_arg_t *argv)
+{
+	printf("\nHello, World !!!\n");
+	return 1;
+}
