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/core | |
| 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/core')
| -rw-r--r-- | src/core/main.c | 1 | ||||
| -rw-r--r-- | src/core/settings.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/core/main.c b/src/core/main.c index 74452b788..ec052b063 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -9,7 +9,6 @@ Literature dealing with the network protocols: DHCP - RFC2131, RFC2132 (options) TFTP - RFC1350, RFC2347 (options), RFC2348 (blocksize), RFC2349 (tsize) RPC - RFC1831, RFC1832 (XDR), RFC1833 (rpcbind/portmapper) - NFS - RFC1094, RFC1813 (v3, useful for clarifications, not implemented) IGMP - RFC1112 **************************************************************************/ diff --git a/src/core/settings.c b/src/core/settings.c index 2fefdb908..7d83101cf 100644 --- a/src/core/settings.c +++ b/src/core/settings.c @@ -1426,7 +1426,7 @@ struct setting filename_setting __setting = { /** Root path setting */ struct setting root_path_setting __setting = { .name = "root-path", - .description = "NFS/iSCSI root path", + .description = "iSCSI root path", .tag = DHCP_ROOT_PATH, .type = &setting_type_string, }; |
