diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-06 18:48:32 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-06 18:48:32 +0200 |
commit | 6dbbac5d4fbe1bd84f5dae4a271b4934a366d199 (patch) | |
tree | 9a5c182c33b1d125e45b10b2c12f027c721c6b9f /Config.in | |
parent | f6916dbed4233ef0e202d1b299cb5a2e9287a696 (diff) | |
download | busybox-w32-6dbbac5d4fbe1bd84f5dae4a271b4934a366d199.tar.gz busybox-w32-6dbbac5d4fbe1bd84f5dae4a271b4934a366d199.tar.bz2 busybox-w32-6dbbac5d4fbe1bd84f5dae4a271b4934a366d199.zip |
Move utmp/wtmp support to "General configuration" section
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -252,6 +252,26 @@ config FEATURE_CLEAN_UP | |||
252 | Don't enable this unless you have a really good reason to clean | 252 | Don't enable this unless you have a really good reason to clean |
253 | things up manually. | 253 | things up manually. |
254 | 254 | ||
255 | config FEATURE_UTMP | ||
256 | bool "Support utmp file" | ||
257 | default n | ||
258 | help | ||
259 | The file /var/run/utmp is used to track who is currently logged in. | ||
260 | With this option on, certain applets (getty, login, telnetd etc) | ||
261 | will create and delete entries there. | ||
262 | "who" apples requires this option. | ||
263 | |||
264 | config FEATURE_WTMP | ||
265 | bool "Support wtmp file" | ||
266 | default n | ||
267 | select FEATURE_UTMP | ||
268 | help | ||
269 | The file /var/run/wtmp is used to track when users have logged into | ||
270 | and logged out of the system. | ||
271 | With this option on, certain applets (getty, login, telnetd etc) | ||
272 | will append new entries there. | ||
273 | "last" apples requires this option. | ||
274 | |||
255 | config FEATURE_PIDFILE | 275 | config FEATURE_PIDFILE |
256 | bool "Support writing pidfiles" | 276 | bool "Support writing pidfiles" |
257 | default n | 277 | default n |