mirror of https://github.com/ipxe/ipxe.git
[tftp] Remove configuration option for tftm
DOWNLOAD_PROTO_TFTM is now useless as tftm support has been merged into tftp.c. DOWNLOAD_PROTO_TFTP should be used instead. Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/6/head
parent
196751ce95
commit
6ab98fa9f7
|
@ -125,9 +125,6 @@ REQUIRE_OBJECT ( https );
|
||||||
#ifdef DOWNLOAD_PROTO_FTP
|
#ifdef DOWNLOAD_PROTO_FTP
|
||||||
REQUIRE_OBJECT ( ftp );
|
REQUIRE_OBJECT ( ftp );
|
||||||
#endif
|
#endif
|
||||||
#ifdef DOWNLOAD_PROTO_TFTM
|
|
||||||
REQUIRE_OBJECT ( tftm );
|
|
||||||
#endif
|
|
||||||
#ifdef DOWNLOAD_PROTO_SLAM
|
#ifdef DOWNLOAD_PROTO_SLAM
|
||||||
REQUIRE_OBJECT ( slam );
|
REQUIRE_OBJECT ( slam );
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -58,7 +58,6 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||||
#define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
|
#define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
|
||||||
#undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
|
#undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
|
||||||
#undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
|
#undef 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_SLAM /* Scalable Local Area Multicast */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue