X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fstat.c;h=3b85808b5d7dbb57f0f6f2e3eca4965f0a4e3dc0;hb=86d5bf4246a7ba68d220bc6c7a7a3be62119dc12;hp=ddcfcf2d78bd319e7984fdb0c4077ee6a97e2fc1;hpb=9de2e5a22213842da5b116723392de88de9ed419;p=oweals%2Fbusybox.git diff --git a/coreutils/stat.c b/coreutils/stat.c index ddcfcf2d7..3b85808b5 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c @@ -13,19 +13,19 @@ * 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)" @@ -33,9 +33,12 @@ //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..."