aboutsummaryrefslogtreecommitdiff
path: root/miscutils/bbconfig.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-11-22 23:14:24 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-11-22 23:14:24 +0100
commitfb4da167114e96d7f20ef97474f976f8ffa604e7 (patch)
tree6f688202bc89ffa68b6679d1b252fd69b7471c94 /miscutils/bbconfig.c
parent9f8eb1ee7620020e01b3596ac7259d51ebca7a7b (diff)
downloadbusybox-w32-fb4da167114e96d7f20ef97474f976f8ffa604e7.tar.gz
busybox-w32-fb4da167114e96d7f20ef97474f976f8ffa604e7.tar.bz2
busybox-w32-fb4da167114e96d7f20ef97474f976f8ffa604e7.zip
Split miscutils/Config.src items into miscutils/*.c files
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/bbconfig.c')
-rw-r--r--miscutils/bbconfig.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/miscutils/bbconfig.c b/miscutils/bbconfig.c
index e5f4eb379..8a709f9d3 100644
--- a/miscutils/bbconfig.c
+++ b/miscutils/bbconfig.c
@@ -1,6 +1,26 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* This file was released into the public domain by Paul Fox. 2/* This file was released into the public domain by Paul Fox.
3 */ 3 */
4//config:config BBCONFIG
5//config: bool "bbconfig"
6//config: default n
7//config: help
8//config: The bbconfig applet will print the config file with which
9//config: busybox was built.
10//config:
11//config:config FEATURE_COMPRESS_BBCONFIG
12//config: bool "Compress bbconfig data"
13//config: default y
14//config: depends on BBCONFIG
15//config: help
16//config: Store bbconfig data in compressed form, uncompress them on-the-fly
17//config: before output.
18//config:
19//config: If you have a really tiny busybox with few applets enabled (and
20//config: bunzip2 isn't one of them), the overhead of the decompressor might
21//config: be noticeable. Also, if you run executables directly from ROM
22//config: and have very little memory, this might not be a win. Otherwise,
23//config: you probably want this.
4 24
5//usage:#define bbconfig_trivial_usage 25//usage:#define bbconfig_trivial_usage
6//usage: "" 26//usage: ""