Browse Source

[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>
tags/v1.20.1
Marin Mareo Hannache 12 years ago
parent
commit
6ab98fa9f7
2 changed files with 0 additions and 4 deletions
  1. 0
    3
      src/config/config.c
  2. 0
    1
      src/config/general.h

+ 0
- 3
src/config/config.c View File

125
 #ifdef DOWNLOAD_PROTO_FTP
125
 #ifdef DOWNLOAD_PROTO_FTP
126
 REQUIRE_OBJECT ( ftp );
126
 REQUIRE_OBJECT ( ftp );
127
 #endif
127
 #endif
128
-#ifdef DOWNLOAD_PROTO_TFTM
129
-REQUIRE_OBJECT ( tftm );
130
-#endif
131
 #ifdef DOWNLOAD_PROTO_SLAM
128
 #ifdef DOWNLOAD_PROTO_SLAM
132
 REQUIRE_OBJECT ( slam );
129
 REQUIRE_OBJECT ( slam );
133
 #endif
130
 #endif

+ 0
- 1
src/config/general.h View File

58
 #define	DOWNLOAD_PROTO_HTTP	/* Hypertext Transfer Protocol */
58
 #define	DOWNLOAD_PROTO_HTTP	/* Hypertext Transfer Protocol */
59
 #undef	DOWNLOAD_PROTO_HTTPS	/* Secure Hypertext Transfer Protocol */
59
 #undef	DOWNLOAD_PROTO_HTTPS	/* Secure Hypertext Transfer Protocol */
60
 #undef	DOWNLOAD_PROTO_FTP	/* File Transfer Protocol */
60
 #undef	DOWNLOAD_PROTO_FTP	/* File Transfer Protocol */
61
-#undef	DOWNLOAD_PROTO_TFTM	/* Multicast Trivial File Transfer Protocol */
62
 #undef	DOWNLOAD_PROTO_SLAM	/* Scalable Local Area Multicast */
61
 #undef	DOWNLOAD_PROTO_SLAM	/* Scalable Local Area Multicast */
63
 
62
 
64
 /*
63
 /*

Loading…
Cancel
Save