summaryrefslogtreecommitdiffstats
path: root/rules/inetutils.in
diff options
context:
space:
mode:
authorHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
committerHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
commit17df9f2c792259af0074adf384745903c2b972a4 (patch)
tree9b233de816eef1a7b52ba2735962f7b559d66406 /rules/inetutils.in
parente77d46edfa498ea6b9e482eed2f9a4783fb8d66d (diff)
downloadptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.gz
ptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.xz
* change bool to tristate .in Files from H to M
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8312 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/inetutils.in')
-rw-r--r--rules/inetutils.in27
1 files changed, 9 insertions, 18 deletions
diff --git a/rules/inetutils.in b/rules/inetutils.in
index 8b7403a68..f895edc57 100644
--- a/rules/inetutils.in
+++ b/rules/inetutils.in
@@ -1,7 +1,7 @@
menuconfig INETUTILS
- bool
+ tristate
depends on !BB_CONFIG_SYSLOGD
- prompt "inetutils "
+ prompt "inetutils "
help
Inetutils is a collection of common network programs. It includes:
* An ftp client and server.
@@ -12,43 +12,40 @@ menuconfig INETUTILS
* And much more...
These are improved versions of programs originally from BSD.
+if INETUTILS
+
comment "build options ---"
- depends on INETUTILS
config INETUTILS_INETD
bool
depends on !BB_CONFIG_INETD
prompt "inetd"
- depends on INETUTILS
help
This is the network super daemon. It opens network connection for
various other programs and start them if a connection request occures.
comment "busy box' inetd is selected!"
- depends on INETUTILS && BB_CONFIG_INETD
+ depends on BB_CONFIG_INETD
config INETUTILS_PING
bool
depends on !BB_CONFIG_PING
prompt "ping"
- depends on INETUTILS
help
Ping is a small tool to check if another host is alive in the network
comment "busy box' ping is selected!"
- depends on INETUTILS && BB_CONFIG_PING
+ depends on BB_CONFIG_PING
config INETUTILS_RCP
bool
prompt "rcp"
- depends on INETUTILS
help
Rcp copies files between machines.
config INETUTILS_RLOGIND
bool
prompt "rlogind"
- depends on INETUTILS
help
Rlogind is the server for the program. The server provides a remote
login facility with authentication based on privileged port numbers
@@ -57,7 +54,6 @@ config INETUTILS_RLOGIND
config INETUTILS_RSH
bool
prompt "rsh"
- depends on INETUTILS
help
rsh - remote shell
Rsh copies its standard input to the remote command, the standard
@@ -67,7 +63,6 @@ config INETUTILS_RSH
config INETUTILS_RSHD
bool
prompt "rshd"
- depends on INETUTILS
select INETUTILS_INETD
help
Rshd is the server for the program. The server provides remote
@@ -77,7 +72,7 @@ config INETUTILS_RSHD
config INETUTILS_SYSLOGD
bool
prompt "syslogd"
- depends on INETUTILS && !BB_CONFIG_SYSLOGD
+ depends on !BB_CONFIG_SYSLOGD
help
Sysklogd provides two system utilities which provide support
for system logging and kernel message trapping. Support of both
@@ -85,22 +80,19 @@ config INETUTILS_SYSLOGD
to support both local and remote logging.
comment "busy box' syslogd is selected!"
- depends on INETUTILS && BB_CONFIG_SYSLOGD
+ depends on BB_CONFIG_SYSLOGD
config INETUTILS_TFTPD
bool
prompt "tftpd"
- depends on INETUTILS
help
TFTPD is a ftp daemon to be used for diskless clients. Most bootloaders
use the Trivial File Transfer Protocol to load their OS image. Note:
There is no authentication!
comment "runtime options ---"
- depends on INETUTILS
config INETUTILS_ETC_INITD_INETD
- depends on INETUTILS
depends on INETUTILS_INETD
bool
default y
@@ -132,7 +124,6 @@ config INETUTILS_ETC_INITD_INETD
config INETUTILS_TFTPD_BASE_DIR
string
- depends on INETUTILS
depends on INETUTILS_TFTPD
prompt "tftpd base directory"
default "/tftpboot"
@@ -142,7 +133,6 @@ config INETUTILS_TFTPD_BASE_DIR
config INETUTILS_TFTPD_STRING
string
- depends on INETUTILS
depends on INETUTILS_TFTPD
prompt "inetd service entry"
default "tftp dgram udp wait nobody /sbin/tftpd tftpd -l @ROOT@"
@@ -153,3 +143,4 @@ config INETUTILS_TFTPD_STRING
must enable one of the two possible inet daemons: There is one
embedded in busybox and one in this packet.
+endif