diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 14:46:56 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 14:46:56 +0100 |
commit | af3f42011628585cd5c8f5c1fd4b43f2e370a23d (patch) | |
tree | 125ee16d5080008fcf459ad55d91af1dcd488ef9 /coreutils/split.c | |
parent | 5b966c6180c139fba6846d632fd9bc0c34a8e1bc (diff) | |
download | busybox-w32-af3f42011628585cd5c8f5c1fd4b43f2e370a23d.tar.gz busybox-w32-af3f42011628585cd5c8f5c1fd4b43f2e370a23d.tar.bz2 busybox-w32-af3f42011628585cd5c8f5c1fd4b43f2e370a23d.zip |
Convert all coreutils/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/split.c')
-rw-r--r-- | coreutils/split.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index 19d58a21b..50918a1ce 100644 --- a/coreutils/split.c +++ b/coreutils/split.c | |||
@@ -5,6 +5,25 @@ | |||
5 | * | 5 | * |
6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
7 | */ | 7 | */ |
8 | //config:config SPLIT | ||
9 | //config: bool "split" | ||
10 | //config: default y | ||
11 | //config: help | ||
12 | //config: split a file into pieces. | ||
13 | //config: | ||
14 | //config:config FEATURE_SPLIT_FANCY | ||
15 | //config: bool "Fancy extensions" | ||
16 | //config: default y | ||
17 | //config: depends on SPLIT | ||
18 | //config: help | ||
19 | //config: Add support for features not required by SUSv3. | ||
20 | //config: Supports additional suffixes 'b' for 512 bytes, | ||
21 | //config: 'g' for 1GiB for the -b option. | ||
22 | |||
23 | //applet:IF_SPLIT(APPLET(split, BB_DIR_USR_BIN, BB_SUID_DROP)) | ||
24 | |||
25 | //kbuild:lib-$(CONFIG_SPLIT) += split.o | ||
26 | |||
8 | /* BB_AUDIT: SUSv3 compliant | 27 | /* BB_AUDIT: SUSv3 compliant |
9 | * SUSv3 requirements: | 28 | * SUSv3 requirements: |
10 | * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html | 29 | * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html |