aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-04-06 18:48:32 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-04-06 18:48:32 +0200
commit6dbbac5d4fbe1bd84f5dae4a271b4934a366d199 (patch)
tree9a5c182c33b1d125e45b10b2c12f027c721c6b9f /Config.in
parentf6916dbed4233ef0e202d1b299cb5a2e9287a696 (diff)
downloadbusybox-6dbbac5d4fbe1bd84f5dae4a271b4934a366d199.tar.gz
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.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index bb7dd6d5d..323b96cfc 100644
--- a/Config.in
+++ b/Config.in
@@ -252,6 +252,26 @@ config FEATURE_CLEAN_UP
Don't enable this unless you have a really good reason to clean
things up manually.
+config FEATURE_UTMP
+ bool "Support utmp file"
+ default n
+ help
+ The file /var/run/utmp is used to track who is currently logged in.
+ With this option on, certain applets (getty, login, telnetd etc)
+ will create and delete entries there.
+ "who" apples requires this option.
+
+config FEATURE_WTMP
+ bool "Support wtmp file"
+ default n
+ select FEATURE_UTMP
+ help
+ The file /var/run/wtmp is used to track when users have logged into
+ and logged out of the system.
+ With this option on, certain applets (getty, login, telnetd etc)
+ will append new entries there.
+ "last" apples requires this option.
+
config FEATURE_PIDFILE
bool "Support writing pidfiles"
default n