diff options
author | Stefan Hajnoczi <stefanha@gmail.com> | 2010-01-30 09:48:21 +0000 |
---|---|---|
committer | Marty Connor <mdc@etherboot.org> | 2010-01-31 19:21:00 -0500 |
commit | 1548189ffa8a54275ed58476993dba6dcaf799a0 (patch) | |
tree | de749661196bde3e5bdcdf77f1636b1ceaff46d5 /src/config/config.c | |
parent | e501e6e19e819652c5fdd1b69a5d4921d00106bd (diff) | |
download | ipxe-1548189ffa8a54275ed58476993dba6dcaf799a0.tar.gz |
[proto] Remove unsupported NFS protocol
The NFS protocol code came from legacy Etherboot and was never updated
to work as a gPXE protocol. There has been no demand for this protocol,
so this patch removes it.
I have an unfinished NFSv3 over TCP implementation for gPXE that can be
used as the base for new work, should we want to resurrect this
protocol.
Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
Signed-off-by: Marty Connor <mdc@etherboot.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r-- | src/config/config.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/config/config.c b/src/config/config.c index 825240252..dd3b09a84 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -109,9 +109,6 @@ REQUIRE_OBJECT ( pxe_call ); #ifdef DOWNLOAD_PROTO_TFTP REQUIRE_OBJECT ( tftp ); #endif -#ifdef DOWNLOAD_PROTO_NFS -REQUIRE_OBJECT ( nfs ); -#endif #ifdef DOWNLOAD_PROTO_HTTP REQUIRE_OBJECT ( http ); #endif |