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-fb4da167114e96d7f20ef97474f976f8ffa604e7.tar.gz
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 @@
/* vi: set sw=4 ts=4: */
/* This file was released into the public domain by Paul Fox.
*/
+//config:config BBCONFIG
+//config: bool "bbconfig"
+//config: default n
+//config: help
+//config: The bbconfig applet will print the config file with which
+//config: busybox was built.
+//config:
+//config:config FEATURE_COMPRESS_BBCONFIG
+//config: bool "Compress bbconfig data"
+//config: default y
+//config: depends on BBCONFIG
+//config: help
+//config: Store bbconfig data in compressed form, uncompress them on-the-fly
+//config: before output.
+//config:
+//config: If you have a really tiny busybox with few applets enabled (and
+//config: bunzip2 isn't one of them), the overhead of the decompressor might
+//config: be noticeable. Also, if you run executables directly from ROM
+//config: and have very little memory, this might not be a win. Otherwise,
+//config: you probably want this.
//usage:#define bbconfig_trivial_usage
//usage: ""