aboutsummaryrefslogtreecommitdiff
path: root/miscutils/Config.in
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-22 21:56:26 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-22 21:56:26 +0000
commit69d5ba2f95287a59fb31583b014474859b22025b (patch)
tree5743f607901b6f3f6a9d2e4b0be06489b8cf109d /miscutils/Config.in
parenta959a2abdd5bef3dadcf653665831a14f404240c (diff)
downloadbusybox-w32-69d5ba2f95287a59fb31583b014474859b22025b.tar.gz
busybox-w32-69d5ba2f95287a59fb31583b014474859b22025b.tar.bz2
busybox-w32-69d5ba2f95287a59fb31583b014474859b22025b.zip
- untangle the implementation of the small and huge last applets
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r--miscutils/Config.in16
1 files changed, 13 insertions, 3 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in
index 427906ff8..dffde34db 100644
--- a/miscutils/Config.in
+++ b/miscutils/Config.in
@@ -229,13 +229,23 @@ config LAST
229 help 229 help
230 'last' displays a list of the last users that logged into the system. 230 'last' displays a list of the last users that logged into the system.
231 231
232config FEATURE_LAST_FANCY 232choice
233 bool "Fancy output" 233 prompt "Choose last implementation"
234 default n
235 depends on LAST 234 depends on LAST
235 default FEATURE_LAST_SMALL
236
237config FEATURE_LAST_SMALL
238 bool "small"
239 help
240 This is a small version of last with just the basic set of
241 features.
242
243config FEATURE_LAST_FANCY
244 bool "huge"
236 help 245 help
237 'last' displays detailed information about the last users that 246 'last' displays detailed information about the last users that
238 logged into the system (mimics sysvinit last). +900 bytes. 247 logged into the system (mimics sysvinit last). +900 bytes.
248endchoice
239 249
240config LESS 250config LESS
241 bool "less" 251 bool "less"