diff options
author | Mike Frysinger | 2005-07-01 01:04:32 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-07-01 01:04:32 +0000 |
commit | 8deb686d2e07ab812887a1a43a00ce5035c2b590 (patch) | |
tree | 132237fb52e98c8d72570d7ee2728f3e299383de /loginutils/Config.in | |
parent | a87bb6080925177b0c09416a6b4e213bd9450042 (diff) | |
download | busybox-8deb686d2e07ab812887a1a43a00ce5035c2b590.zip busybox-8deb686d2e07ab812887a1a43a00ce5035c2b590.tar.gz |
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.in | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in index 5619aa9..12c208c 100644 --- a/loginutils/Config.in +++ b/loginutils/Config.in @@ -57,14 +57,21 @@ config CONFIG_GETTY help getty lets you log in on a tty, it is normally invoked by init. -config CONFIG_FEATURE_U_W_TMP - bool " Support utmp and wtmp files" - depends on CONFIG_GETTY || CONFIG_LOGIN || CONFIG_SU || CONFIG_WHO || CONFIG_LAST +config CONFIG_FEATURE_UTMP + bool " Support utmp file" + depends on CONFIG_GETTY || CONFIG_LOGIN || CONFIG_SU || CONFIG_WHO default n help - The files /var/run/utmp and /var/run/wtmp can be used to track when - user's have logged into and logged out of the system, allowing programs - such as 'who' and 'last' to list who is currently logged in. + The file /var/run/utmp is used to track who is currently logged in. + +config CONFIG_FEATURE_WTMP + bool " Support wtmp file" + depends on CONFIG_GETTY || CONFIG_LOGIN || CONFIG_SU || CONFIG_LAST + default n + select CONFIG_FEATURE_UTMP + help + The file /var/run/wtmp is used to track when user's have logged into + and logged out of the system. config CONFIG_LOGIN bool "login" |