diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-08 09:30:56 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-08 09:30:56 +0000 |
commit | 16b4a2de97d98d9683909b7b083035e65b3f87de (patch) | |
tree | 7f05fe86b045e8fb5186c09b8b2aea445f8c8c70 /networking | |
parent | c8985bf3530d04946c5f4859eefdebb229c088c7 (diff) | |
download | busybox-w32-16b4a2de97d98d9683909b7b083035e65b3f87de.tar.gz busybox-w32-16b4a2de97d98d9683909b7b083035e65b3f87de.tar.bz2 busybox-w32-16b4a2de97d98d9683909b7b083035e65b3f87de.zip |
ftpd: new applet by Adam Tkac
$ size ftpd.o
text data bss dec hex filename
5703 0 0 5703 1647 ftpd.o
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Config.in | 13 | ||||
-rw-r--r-- | networking/Kbuild | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/networking/Config.in b/networking/Config.in index c455ff408..f3ba85620 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
@@ -93,6 +93,19 @@ config FAKEIDENTD | |||
93 | fakeidentd listens on the ident port and returns a predefined | 93 | fakeidentd listens on the ident port and returns a predefined |
94 | fake value on any query. | 94 | fake value on any query. |
95 | 95 | ||
96 | config FTPD | ||
97 | bool "ftpd" | ||
98 | default n | ||
99 | help | ||
100 | simple FTP daemon. You have to run it via inetd. | ||
101 | |||
102 | config FEATURE_FTP_WRITE | ||
103 | bool "enable write" | ||
104 | default y | ||
105 | depends on FTPD | ||
106 | help | ||
107 | Enable all kinds of FTP write commands (you have to add -w parameter) | ||
108 | |||
96 | config FTPGET | 109 | config FTPGET |
97 | bool "ftpget" | 110 | bool "ftpget" |
98 | default n | 111 | default n |
diff --git a/networking/Kbuild b/networking/Kbuild index 77071269a..d632774ff 100644 --- a/networking/Kbuild +++ b/networking/Kbuild | |||
@@ -11,6 +11,7 @@ lib-$(CONFIG_BRCTL) += brctl.o | |||
11 | lib-$(CONFIG_DNSD) += dnsd.o | 11 | lib-$(CONFIG_DNSD) += dnsd.o |
12 | lib-$(CONFIG_ETHER_WAKE) += ether-wake.o | 12 | lib-$(CONFIG_ETHER_WAKE) += ether-wake.o |
13 | lib-$(CONFIG_FAKEIDENTD) += isrv_identd.o isrv.o | 13 | lib-$(CONFIG_FAKEIDENTD) += isrv_identd.o isrv.o |
14 | lib-$(CONFIG_FTPD) += ftpd.o | ||
14 | lib-$(CONFIG_FTPGET) += ftpgetput.o | 15 | lib-$(CONFIG_FTPGET) += ftpgetput.o |
15 | lib-$(CONFIG_FTPPUT) += ftpgetput.o | 16 | lib-$(CONFIG_FTPPUT) += ftpgetput.o |
16 | lib-$(CONFIG_HOSTNAME) += hostname.o | 17 | lib-$(CONFIG_HOSTNAME) += hostname.o |