summaryrefslogtreecommitdiffstats
path: root/src/core/main.c
diff options
context:
space:
mode:
authorMarty Connor2006-08-09 04:30:35 +0200
committerMarty Connor2006-08-09 04:30:35 +0200
commit41af7457a8c731ed358f70ae3c78983893ae84ad (patch)
tree1049f7efa4a666efb7905e135ce4b0e90393a2fb /src/core/main.c
parentAdd a couple of small but vital parts to PXENV_UDP_WRITE. (diff)
downloadipxe-41af7457a8c731ed358f70ae3c78983893ae84ad.tar.gz
ipxe-41af7457a8c731ed358f70ae3c78983893ae84ad.tar.xz
ipxe-41af7457a8c731ed358f70ae3c78983893ae84ad.zip
Merge of Fredrik Hultin command_line
Diffstat (limited to 'src/core/main.c')
-rw-r--r--src/core/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/main.c b/src/core/main.c
index 0cc30f57..5d3b9e68 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -22,6 +22,7 @@ Literature dealing with the network protocols:
#include "disk.h"
#include "timer.h"
#include "cpu.h"
+#include "cmdline.h"
#include "console.h"
#include <gpxe/init.h>
#include "image.h"
@@ -155,6 +156,8 @@ int main ( void ) {
netdev = next_netdev ();
if ( netdev ) {
test_dhcp ( netdev );
+ //cmdl_start();
+ //test_aoeboot ( &static_single_netdev );
} else {
printf ( "No network device found\n" );
}