diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-17 20:56:36 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-19 18:35:26 +0200 |
commit | 07c3f3802d68880825052fb7902534bd31dc3f05 (patch) | |
tree | a296152d451acf6a79bc7215c7000d23aaa176b7 /runit | |
parent | e6a1a2321c47d61868f66beb9a258399cdb09eb2 (diff) | |
download | busybox-w32-07c3f3802d68880825052fb7902534bd31dc3f05.tar.gz busybox-w32-07c3f3802d68880825052fb7902534bd31dc3f05.tar.bz2 busybox-w32-07c3f3802d68880825052fb7902534bd31dc3f05.zip |
Config.in: mark all applets POSIX only
Diffstat (limited to 'runit')
-rw-r--r-- | runit/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/runit/Config.in b/runit/Config.in index 422ca7517..c45ec631b 100644 --- a/runit/Config.in +++ b/runit/Config.in | |||
@@ -8,6 +8,7 @@ menu "Runit Utilities" | |||
8 | config RUNSV | 8 | config RUNSV |
9 | bool "runsv" | 9 | bool "runsv" |
10 | default n | 10 | default n |
11 | depends on PLATFORM_POSIX | ||
11 | help | 12 | help |
12 | runsv starts and monitors a service and optionally an appendant log | 13 | runsv starts and monitors a service and optionally an appendant log |
13 | service. | 14 | service. |
@@ -15,6 +16,7 @@ config RUNSV | |||
15 | config RUNSVDIR | 16 | config RUNSVDIR |
16 | bool "runsvdir" | 17 | bool "runsvdir" |
17 | default n | 18 | default n |
19 | depends on PLATFORM_POSIX | ||
18 | help | 20 | help |
19 | runsvdir starts a runsv process for each subdirectory, or symlink to | 21 | runsvdir starts a runsv process for each subdirectory, or symlink to |
20 | a directory, in the services directory dir, up to a limit of 1000 | 22 | a directory, in the services directory dir, up to a limit of 1000 |
@@ -32,6 +34,7 @@ config FEATURE_RUNSVDIR_LOG | |||
32 | config SV | 34 | config SV |
33 | bool "sv" | 35 | bool "sv" |
34 | default n | 36 | default n |
37 | depends on PLATFORM_POSIX | ||
35 | help | 38 | help |
36 | sv reports the current status and controls the state of services | 39 | sv reports the current status and controls the state of services |
37 | monitored by the runsv supervisor. | 40 | monitored by the runsv supervisor. |
@@ -47,6 +50,7 @@ config SV_DEFAULT_SERVICE_DIR | |||
47 | config SVLOGD | 50 | config SVLOGD |
48 | bool "svlogd" | 51 | bool "svlogd" |
49 | default n | 52 | default n |
53 | depends on PLATFORM_POSIX | ||
50 | help | 54 | help |
51 | svlogd continuously reads log data from its standard input, optionally | 55 | svlogd continuously reads log data from its standard input, optionally |
52 | filters log messages, and writes the data to one or more automatically | 56 | filters log messages, and writes the data to one or more automatically |
@@ -55,28 +59,33 @@ config SVLOGD | |||
55 | config CHPST | 59 | config CHPST |
56 | bool "chpst" | 60 | bool "chpst" |
57 | default n | 61 | default n |
62 | depends on PLATFORM_POSIX | ||
58 | help | 63 | help |
59 | chpst changes the process state according to the given options, and | 64 | chpst changes the process state according to the given options, and |
60 | execs specified program. | 65 | execs specified program. |
61 | 66 | ||
62 | config SETUIDGID | 67 | config SETUIDGID |
63 | bool "setuidgid" | 68 | bool "setuidgid" |
69 | depends on PLATFORM_POSIX | ||
64 | help | 70 | help |
65 | Sets soft resource limits as specified by options | 71 | Sets soft resource limits as specified by options |
66 | 72 | ||
67 | config ENVUIDGID | 73 | config ENVUIDGID |
68 | bool "envuidgid" | 74 | bool "envuidgid" |
75 | depends on PLATFORM_POSIX | ||
69 | help | 76 | help |
70 | Sets $UID to account's uid and $GID to account's gid | 77 | Sets $UID to account's uid and $GID to account's gid |
71 | 78 | ||
72 | config ENVDIR | 79 | config ENVDIR |
73 | bool "envdir" | 80 | bool "envdir" |
81 | depends on PLATFORM_POSIX | ||
74 | help | 82 | help |
75 | Sets various environment variables as specified by files | 83 | Sets various environment variables as specified by files |
76 | in the given directory | 84 | in the given directory |
77 | 85 | ||
78 | config SOFTLIMIT | 86 | config SOFTLIMIT |
79 | bool "softlimit" | 87 | bool "softlimit" |
88 | depends on PLATFORM_POSIX | ||
80 | help | 89 | help |
81 | Sets soft resource limits as specified by options | 90 | Sets soft resource limits as specified by options |
82 | 91 | ||