summaryrefslogtreecommitdiffstats
path: root/rules/ntpclient.in
diff options
context:
space:
mode:
authorHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:47:51 +0000
committerHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:47:51 +0000
commita46c32499b384837b97ad8ecb5680f5255681687 (patch)
tree64dbdfaa60a973426da972e971704daa14086db3 /rules/ntpclient.in
parent757d298f67f737c93d1d0a56d465e3cba7f4e31f (diff)
downloadptxdist-a46c32499b384837b97ad8ecb5680f5255681687.tar.gz
ptxdist-a46c32499b384837b97ad8ecb5680f5255681687.tar.xz
* change bool to tristate .in Files from N to O
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8317 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/ntpclient.in')
-rw-r--r--rules/ntpclient.in17
1 files changed, 7 insertions, 10 deletions
diff --git a/rules/ntpclient.in b/rules/ntpclient.in
index 5ddcd7e87..9056de826 100644
--- a/rules/ntpclient.in
+++ b/rules/ntpclient.in
@@ -1,6 +1,6 @@
menuconfig NTPCLIENT
- bool
- prompt "ntpclient "
+ tristate
+ prompt "ntpclient "
default n
help
ntpclient is a small and efficient client to the NTP protocol.
@@ -18,20 +18,20 @@ menuconfig NTPCLIENT
See http://doolittle.icarus.com/ntpclient/ for details.
+
+if NTPCLIENT
+
comment "build options ---"
- depends on NTPCLIENT
config NTPCLIENT_BUILD_NTPCLIENT
bool
prompt "ntpclient"
default y
- depends on NTPCLIENT
help
Builds the ntpclient binary
config NTPCLIENT_BUILD_ADJTIMEX
bool
- depends on NTPCLIENT
depends on !BB_CONFIG_ADJTIMEX
prompt "adjtimex"
default y
@@ -39,14 +39,11 @@ config NTPCLIENT_BUILD_ADJTIMEX
Builds the adjtimex binary to control system time
comment "Busybox' adjtimex is in use"
- depends on NTPCLIENT
depends on BB_CONFIG_ADJTIMEX
comment "runtime options ---"
- depends on NTPCLIENT
config NTPCLIENT_INSTALL_STARTSCRIPT
- depends on NTPCLIENT
bool
prompt "Install start script"
default y
@@ -56,7 +53,6 @@ config NTPCLIENT_INSTALL_STARTSCRIPT
choice
prompt "Kind of startup script"
default ROOTFS_ETC_INITD_NTPCLIENT_DEFAULT
- depends on NTPCLIENT
depends on NTPCLIENT_INSTALL_STARTSCRIPT
config ROOTFS_ETC_INITD_NTPCLIENT_DEFAULT
@@ -77,7 +73,6 @@ choice
endchoice
config NTPCLIENT_NTPSERVER_NAME
- depends on NTPCLIENT
depends on NTPCLIENT_INSTALL_STARTSCRIPT
string
prompt "NTP server name"
@@ -85,3 +80,5 @@ config NTPCLIENT_NTPSERVER_NAME
help
This will replace the string @HOST@ in the startup script to the given name.
ntpclient will connect this host to read the current time.
+
+endif