summaryrefslogtreecommitdiff
path: root/gpxe
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-09-07 22:56:45 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-09-07 22:56:45 -0700
commit8ca8fb3bc75b94ffd54274025c465bfd185ddd56 (patch)
tree9e0052c804a7cb03b087d3bcbbd52c13a203d492 /gpxe
parentc14f98ab23dbc912aa9db26d86434a4d2bd80a5f (diff)
downloadsyslinux-8ca8fb3bc75b94ffd54274025c465bfd185ddd56.tar.gz
gPXE: enable NFS, FTP, HTTPS
Enable the NFS, FTP, and HTTPS protocols in the gpxelinux.0 configuration. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'gpxe')
-rw-r--r--gpxe/src/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gpxe/src/config.h b/gpxe/src/config.h
index ae39fb55..603604ab 100644
--- a/gpxe/src/config.h
+++ b/gpxe/src/config.h
@@ -93,10 +93,10 @@
*/
#define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
-#undef DOWNLOAD_PROTO_NFS /* Network File System */
+#define 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 */
+#define DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
+#define DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
#undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
#undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
#undef DOWNLOAD_PROTO_FSP /* FSP? */