aboutsummaryrefslogtreecommitdiff
path: root/loginutils/Config.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-01 01:04:32 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-01 01:04:32 +0000
commit8deb686d2e07ab812887a1a43a00ce5035c2b590 (patch)
tree132237fb52e98c8d72570d7ee2728f3e299383de /loginutils/Config.in
parenta87bb6080925177b0c09416a6b4e213bd9450042 (diff)
downloadbusybox-w32-8deb686d2e07ab812887a1a43a00ce5035c2b590.tar.gz
busybox-w32-8deb686d2e07ab812887a1a43a00ce5035c2b590.tar.bz2
busybox-w32-8deb686d2e07ab812887a1a43a00ce5035c2b590.zip
Patch by jonlar in Bug 312 to split the U_W_TMP feature into sep UTMP and WTMP options
Diffstat (limited to 'loginutils/Config.in')
-rw-r--r--loginutils/Config.in19
1 files changed, 13 insertions, 6 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in
index 5619aa9af..12c208c64 100644
--- a/loginutils/Config.in
+++ b/loginutils/Config.in
@@ -57,14 +57,21 @@ config CONFIG_GETTY
57 help 57 help
58 getty lets you log in on a tty, it is normally invoked by init. 58 getty lets you log in on a tty, it is normally invoked by init.
59 59
60config CONFIG_FEATURE_U_W_TMP 60config CONFIG_FEATURE_UTMP
61 bool " Support utmp and wtmp files" 61 bool " Support utmp file"
62 depends on CONFIG_GETTY || CONFIG_LOGIN || CONFIG_SU || CONFIG_WHO || CONFIG_LAST 62 depends on CONFIG_GETTY || CONFIG_LOGIN || CONFIG_SU || CONFIG_WHO
63 default n 63 default n
64 help 64 help
65 The files /var/run/utmp and /var/run/wtmp can be used to track when 65 The file /var/run/utmp is used to track who is currently logged in.
66 user's have logged into and logged out of the system, allowing programs 66
67 such as 'who' and 'last' to list who is currently logged in. 67config CONFIG_FEATURE_WTMP
68 bool " Support wtmp file"
69 depends on CONFIG_GETTY || CONFIG_LOGIN || CONFIG_SU || CONFIG_LAST
70 default n
71 select CONFIG_FEATURE_UTMP
72 help
73 The file /var/run/wtmp is used to track when user's have logged into
74 and logged out of the system.
68 75
69config CONFIG_LOGIN 76config CONFIG_LOGIN
70 bool "login" 77 bool "login"