diff options
| author | Stefan Hajnoczi | 2010-01-30 10:48:21 +0100 |
|---|---|---|
| committer | Marty Connor | 2010-02-01 01:21:00 +0100 |
| commit | 1548189ffa8a54275ed58476993dba6dcaf799a0 (patch) | |
| tree | de749661196bde3e5bdcdf77f1636b1ceaff46d5 /src/config | |
| parent | [proto] Remove unsupported FSP protocol (diff) | |
| download | ipxe-1548189ffa8a54275ed58476993dba6dcaf799a0.tar.gz ipxe-1548189ffa8a54275ed58476993dba6dcaf799a0.tar.xz ipxe-1548189ffa8a54275ed58476993dba6dcaf799a0.zip | |
[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')
| -rw-r--r-- | src/config/config.c | 3 | ||||
| -rw-r--r-- | src/config/general.h | 1 |
2 files changed, 0 insertions, 4 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 diff --git a/src/config/general.h b/src/config/general.h index eb8a0b530..3501846aa 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -54,7 +54,6 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */ -#undef DOWNLOAD_PROTO_NFS /* Network File System */ #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */ #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */ #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */ |
