From d88832ad7eb4feb98f0891661085399b6ba63934 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 5 Dec 2006 23:26:07 +0000 Subject: [PATCH] Support PXE and iSCSI by default --- src/tests/dhcptest.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tests/dhcptest.c b/src/tests/dhcptest.c index a315de09..a38584d3 100644 --- a/src/tests/dhcptest.c +++ b/src/tests/dhcptest.c @@ -143,9 +143,11 @@ static int test_dhcp_boot ( struct net_device *netdev, char *filename ) { if ( strncmp ( filename, "iscsi:", 6 ) == 0 ) { return test_dhcp_iscsi_boot ( netdev, &filename[6] ); } + /* if ( strncmp ( filename, "ftp:", 4 ) == 0 ) { return test_dhcp_ftp ( netdev, &filename[4] ); } + */ /* if ( strncmp ( filename, "hello:", 6 ) == 0 ) { return test_dhcp_hello ( &filename[6] ); @@ -153,8 +155,9 @@ static int test_dhcp_boot ( struct net_device *netdev, char *filename ) { if ( strncmp ( filename, "http:", 5 ) == 0 ) { return test_dhcp_http ( netdev, filename ); } - return test_dhcp_tftp ( netdev, filename ); */ + return test_dhcp_tftp ( netdev, filename ); + return -EPROTONOSUPPORT; }