]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Added missing config.[ch] lines for FTP protocol
authorMichael Brown <mcb30@etherboot.org>
Thu, 28 Jun 2007 17:49:57 +0000 (18:49 +0100)
committerMichael Brown <mcb30@etherboot.org>
Thu, 28 Jun 2007 17:49:57 +0000 (18:49 +0100)
src/config.h
src/core/config.c

index 1e75f46112a9aab36c1f7f4525a57fdfee12218a..463d091729111f5597a85851d2dcac3df4a561c7 100644 (file)
@@ -73,6 +73,7 @@
 #define        DOWNLOAD_PROTO_TFTP     /* Trivial File Transfer Protocol */
 #undef DOWNLOAD_PROTO_NFS      /* Network File System */
 #define        DOWNLOAD_PROTO_HTTP     /* Hypertext 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_FSP      /* FSP? */
index ac3100a3fd3d0028deec6d047bb3bc53e155cf72..71f8777d99677e1180793e9d943c4e23ccfb8c6a 100644 (file)
@@ -91,6 +91,9 @@ REQUIRE_OBJECT ( nfs );
 #ifdef DOWNLOAD_PROTO_HTTP
 REQUIRE_OBJECT ( http );
 #endif
+#ifdef DOWNLOAD_PROTO_FTP
+REQUIRE_OBJECT ( ftp );
+#endif
 #ifdef DOWNLOAD_PROTO_TFTM
 REQUIRE_OBJECT ( tftm );
 #endif