summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMichael Brown2006-12-05 00:40:35 +0100
committerMichael Brown2006-12-05 00:40:35 +0100
commitd9f32726b46665165b9004797aebd58c7f2b03f4 (patch)
treece200468c58ced411949813c4ef853eb28248e9b /src/include
parentAdded debug statements (diff)
downloadipxe-d9f32726b46665165b9004797aebd58c7f2b03f4.tar.gz
ipxe-d9f32726b46665165b9004797aebd58c7f2b03f4.tar.xz
ipxe-d9f32726b46665165b9004797aebd58c7f2b03f4.zip
Added quick and dirty commands for testing the new NVO code.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cmdlist.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/cmdlist.h b/src/include/cmdlist.h
index 623cac765..33cd349b3 100644
--- a/src/include/cmdlist.h
+++ b/src/include/cmdlist.h
@@ -4,12 +4,14 @@
void test_req();
void test2_req();
void help_req();
+void nvo_cmd_req();
void commandlist()
{
- test_req();
- test2_req();
+ // test_req();
+ // test2_req();
help_req();
+ nvo_cmd_req();
}
#endif