aboutsummaryrefslogtreecommitdiff
path: root/miscutils/bbconfig.c
diff options
context:
space:
mode:
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: ""