diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-13 15:16:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-13 15:16:20 +0200 |
commit | d46e3d386da9afd01d9ddf1ec35b475678a65d77 (patch) | |
tree | e02e1a2402ab5e147abe475e51c3c2a9f8236cfc /package/busybox/config/coreutils/Config.in | |
parent | 0d7eae088948ff5b1e0fbf66785ba71848900357 (diff) | |
parent | 14737aace17a515e3e7c1f05187909c26a5b1406 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/busybox/config/coreutils/Config.in')
-rw-r--r-- | package/busybox/config/coreutils/Config.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/busybox/config/coreutils/Config.in b/package/busybox/config/coreutils/Config.in index 069eab70d..9c55d74aa 100644 --- a/package/busybox/config/coreutils/Config.in +++ b/package/busybox/config/coreutils/Config.in @@ -5,6 +5,12 @@ menu "Coreutils" +config BUSYBOX_BASE64 + bool "base64" + default y + help + Base64 encode and decode + config BUSYBOX_BASENAME bool "basename" default y @@ -115,6 +121,14 @@ config BUSYBOX_FEATURE_DATE_ISOFMT Enable option (-I) to output an ISO-8601 compliant date/time string. +# defaults to "no": stat's nanosecond field is a bit non-portable +config BUSYBOX_FEATURE_DATE_NANO + bool "Support %[num]N nanosecond format specifier" + default n + depends on BUSYBOX_DATE && BUSYBOX_PLATFORM_LINUX # syscall(__NR_clock_gettime) + help + Support %[num]N format specifier. Adds ~250 bytes of code. + config BUSYBOX_FEATURE_DATE_COMPAT bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format" default y @@ -183,6 +197,10 @@ config BUSYBOX_FEATURE_DF_FANCY help This option enables -a, -i and -B. + -a Show all filesystems + -i Inodes + -B <SIZE> Blocksize + config BUSYBOX_DIRNAME bool "dirname" default y @@ -631,6 +649,7 @@ config BUSYBOX_FEATURE_SPLIT_FANCY config BUSYBOX_STAT bool "stat" default y + depends on BUSYBOX_PLATFORM_LINUX # statfs() help display file or filesystem status. @@ -682,6 +701,11 @@ config BUSYBOX_FEATURE_FANCY_TAIL The options (-q, -s, and -v) are provided by GNU tail, but are not specific in the SUSv3 standard. + -q Never output headers giving file names + -s SEC Wait SEC seconds between reads with -f + -v Always output headers giving file names + + config BUSYBOX_TEE bool "tee" default y |