summaryrefslogtreecommitdiffstats
path: root/rules/inetutils.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2009-02-20 23:13:39 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2009-02-20 23:13:39 +0000
commit2e878658a02ca4651673cad2f41a57f27557d6dc (patch)
treefd1c10f972e4e7f79775a2b3c52fe907869e6032 /rules/inetutils.in
parentbe1d99320d214120a306d659e3eacac4411b5ad3 (diff)
downloadptxdist-2e878658a02ca4651673cad2f41a57f27557d6dc.tar.gz
ptxdist-2e878658a02ca4651673cad2f41a57f27557d6dc.tar.xz
* init: introduce infrastructure for multiple init methods
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@9802 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/inetutils.in')
-rw-r--r--rules/inetutils.in71
1 files changed, 23 insertions, 48 deletions
diff --git a/rules/inetutils.in b/rules/inetutils.in
index 3fb3348bd..b62c42288 100644
--- a/rules/inetutils.in
+++ b/rules/inetutils.in
@@ -9,24 +9,35 @@ menuconfig INETUTILS
* An rsh client and server.
* An rlogin client and server.
* A tftp client and server.
- * And much more...
+ * And much more...
These are improved versions of programs originally from BSD.
if INETUTILS
-comment "build options ---"
+# -----
-config INETUTILS_INETD
+menuconfig INETUTILS_INETD
bool
depends on !BUSYBOX_INETD || ALLYES
- prompt "inetd"
+ prompt "inetd "
help
This is the network super daemon. It opens network connection for
various other programs and start them if a connection request occures.
+if INETUTILS_INETD
+
+config INETUTILS_INETD_STARTSCRIPT
+ bool
+ default y
+ prompt "install /etc/init.d/inetd"
+
+endif
+
comment "BusyBox' inetd is selected!"
depends on BUSYBOX_INETD
+# -----
+
config INETUTILS_PING
bool
depends on !BUSYBOX_PING || ALLYES
@@ -37,6 +48,8 @@ config INETUTILS_PING
comment "BusyBox' ping is selected!"
depends on BUSYBOX_PING
+# -----
+
config INETUTILS_RCP
bool
prompt "rcp"
@@ -82,45 +95,17 @@ config INETUTILS_SYSLOGD
comment "BusyBox' syslogd is selected!"
depends on BUSYBOX_SYSLOGD
-config INETUTILS_TFTPD
+# -----
+
+menuconfig INETUTILS_TFTPD
bool
- prompt "tftpd"
+ prompt "tftpd "
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 ---"
-
-config INETUTILS_ETC_INITD_INETD
- 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 <ptxdist-install>/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
+if INETUTILS_TFTPD
config INETUTILS_TFTPD_BASE_DIR
string
@@ -131,16 +116,6 @@ config INETUTILS_TFTPD_BASE_DIR
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_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.
+endif
endif