From: H. Peter Anvin Date: Mon, 8 Sep 2008 05:56:45 +0000 (-0700) Subject: gPXE: enable NFS, FTP, HTTPS X-Git-Tag: syslinux-3.72-pre4~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ca8fb3bc75b94ffd54274025c465bfd185ddd56;p=platform%2Fupstream%2Fsyslinux.git gPXE: enable NFS, FTP, HTTPS Enable the NFS, FTP, and HTTPS protocols in the gpxelinux.0 configuration. Signed-off-by: H. Peter Anvin --- diff --git a/gpxe/src/config.h b/gpxe/src/config.h index ae39fb5..603604a 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? */