menuconfig INETUTILS bool depends on !BB_CONFIG_SYSLOGD prompt "inetutils " help Inetutils is a collection of common network programs. It includes: * An ftp client and server. * A telnet client and server. * An rsh client and server. * An rlogin client and server. * A tftp client and server. * And much more... These are improved versions of programs originally from BSD. 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 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 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 from trusted hosts. config INETUTILS_RSH bool prompt "rsh" depends on INETUTILS help rsh - remote shell Rsh copies its standard input to the remote command, the standard output of the remote command to its standard output, and the standard error of the remote command to its standard error. config INETUTILS_RSHD bool prompt "rshd" depends on INETUTILS select INETUTILS_INETD help Rshd is the server for the program. The server provides remote execution facilities with authentication based on privileged port numbers from trusted hosts. config INETUTILS_SYSLOGD bool prompt "syslogd" depends on INETUTILS && !BB_CONFIG_SYSLOGD help Sysklogd provides two system utilities which provide support for system logging and kernel message trapping. Support of both internet and unix domain sockets enables this utility package to support both local and remote logging. comment "busy box' syslogd is selected!" depends on INETUTILS && 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 prompt "Install inetd startup script" help The /etc/init.d/inetd script lets you control the inetd server. choice prompt "Kind of startup script" depends on INETUTILS_ETC_INITD_INETD default INETUTILS_ETC_INITD_INETD_DEFAULT config INETUTILS_ETC_INITD_INETD_DEFAULT bool prompt "Use generic" help Installs a generic /etc/init.d/inetd startup script. See /generic/etc/init.d/inetd config INETUTILS_ETC_INITD_INETD_USER bool prompt "User defined" help This uses a user defined inetd startup script. PTXdist uses files projectroot/etc/init.d/inetd in your local project endchoice config INETUTILS_TFTPD_BASE_DIR string depends on INETUTILS depends on INETUTILS_TFTPD prompt "tftpd base directory" default "/tftpboot" help This string is added to tftpd's command parameters. Placeholder @ROOT@ in all startup options will be replaced by the string given here 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@" help The string defined here is added to inetd's configuration /etc/inetd.conf. @ROOT@ in this string will be replaced by tftpd exported directory Note: This tftp daemon can be started on demand from inetd only. You must enable one of the two possible inet daemons: There is one embedded in busybox and one in this packet.