config: trim/improve item names and help texts.
[oweals/busybox.git] / coreutils / stat.c
index ddcfcf2d78bd319e7984fdb0c4077ee6a97e2fc1..3b85808b5d7dbb57f0f6f2e3eca4965f0a4e3dc0 100644 (file)
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 //config:config STAT
-//config:      bool "stat"
+//config:      bool "stat (10 kb)"
 //config:      default y
 //config:      help
-//config:        display file or filesystem status.
+//config:      display file or filesystem status.
 //config:
 //config:config FEATURE_STAT_FORMAT
 //config:      bool "Enable custom formats (-c)"
 //config:      default y
 //config:      depends on STAT
 //config:      help
-//config:        Without this, stat will not support the '-c format' option where
-//config:        users can pass a custom format string for output. This adds about
-//config:        7k to a nonstatic build on amd64.
+//config:      Without this, stat will not support the '-c format' option where
+//config:      users can pass a custom format string for output. This adds about
+//config:      7k to a nonstatic build on amd64.
 //config:
 //config:config FEATURE_STAT_FILESYSTEM
 //config:      bool "Enable display of filesystem status (-f)"
 //config:      depends on STAT
 //config:      select PLATFORM_LINUX # statfs()
 //config:      help
-//config:        Without this, stat will not support the '-f' option to display
-//config:        information about filesystem status.
+//config:      Without this, stat will not support the '-f' option to display
+//config:      information about filesystem status.
 
+//applet:IF_STAT(APPLET(stat, BB_DIR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_STAT) += stat.o
 
 //usage:#define stat_trivial_usage
 //usage:       "[OPTIONS] FILE..."