summaryrefslogtreecommitdiffstats
path: root/src/commandline/commands/test2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandline/commands/test2.c')
-rw-r--r--src/commandline/commands/test2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/commandline/commands/test2.c b/src/commandline/commands/test2.c
deleted file mode 100644
index 6cb2ee70b..000000000
--- a/src/commandline/commands/test2.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <vsprintf.h>
-#include <gpxe/command.h>
-
-void test2_req(){}
-
-static int cmd_test2_exec ( int argc, char **argv ) {
- int i;
-
- printf("Hello, world!\nI got the following arguments passed to me: \n");
- for(i = 0; i < argc; i++){
- printf("%d: \"%s\"\n", i, argv[i]);
- }
- return 0;
-}
-
-struct command test2_command __command = {
- .name = "test2",
- .exec = cmd_test2_exec,
-};
-