diff options
author | Bernhard Reutner-Fischer | 2008-05-22 21:56:26 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2008-05-22 21:56:26 +0000 |
commit | 69d5ba2f95287a59fb31583b014474859b22025b (patch) | |
tree | 5743f607901b6f3f6a9d2e4b0be06489b8cf109d /miscutils/Config.in | |
parent | a959a2abdd5bef3dadcf653665831a14f404240c (diff) | |
download | busybox-69d5ba2f95287a59fb31583b014474859b22025b.zip busybox-69d5ba2f95287a59fb31583b014474859b22025b.tar.gz |
- untangle the implementation of the small and huge last applets
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r-- | miscutils/Config.in | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index 427906f..dffde34 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in @@ -229,13 +229,23 @@ config LAST help 'last' displays a list of the last users that logged into the system. -config FEATURE_LAST_FANCY - bool "Fancy output" - default n +choice + prompt "Choose last implementation" depends on LAST + default FEATURE_LAST_SMALL + +config FEATURE_LAST_SMALL + bool "small" + help + This is a small version of last with just the basic set of + features. + +config FEATURE_LAST_FANCY + bool "huge" help 'last' displays detailed information about the last users that logged into the system (mimics sysvinit last). +900 bytes. +endchoice config LESS bool "less" |