2006-03-30 01:24:02 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2017-10-05 19:03:28 +05:30
|
|
|
/*
|
|
|
|
* This file was released into the public domain by Paul Fox.
|
2006-03-30 01:24:02 +05:30
|
|
|
*/
|
2016-11-23 03:44:24 +05:30
|
|
|
//config:config BBCONFIG
|
2017-07-19 18:02:54 +05:30
|
|
|
//config: bool "bbconfig (9.7 kb)"
|
2016-11-23 03:44:24 +05:30
|
|
|
//config: default n
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: The bbconfig applet will print the config file with which
|
|
|
|
//config: busybox was built.
|
2016-11-23 03:44:24 +05:30
|
|
|
//config:
|
|
|
|
//config:config FEATURE_COMPRESS_BBCONFIG
|
|
|
|
//config: bool "Compress bbconfig data"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on BBCONFIG
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: Store bbconfig data in compressed form, uncompress them on-the-fly
|
|
|
|
//config: before output.
|
2016-11-23 03:44:24 +05:30
|
|
|
//config:
|
2017-07-21 13:20:55 +05:30
|
|
|
//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.
|
2011-04-11 06:59:49 +05:30
|
|
|
|
2016-11-23 04:24:17 +05:30
|
|
|
//applet:IF_BBCONFIG(APPLET(bbconfig, BB_DIR_BIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_BBCONFIG) += bbconfig.o
|
|
|
|
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define bbconfig_trivial_usage
|
|
|
|
//usage: ""
|
|
|
|
//usage:#define bbconfig_full_usage "\n\n"
|
|
|
|
//usage: "Print the config file used by busybox build"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-08-01 21:34:40 +05:30
|
|
|
#include "bbconfigopts.h"
|
2010-08-29 18:06:11 +05:30
|
|
|
#if ENABLE_FEATURE_COMPRESS_BBCONFIG
|
2011-09-22 16:15:14 +05:30
|
|
|
# include "bb_archive.h"
|
2010-08-29 18:06:11 +05:30
|
|
|
# include "bbconfigopts_bz2.h"
|
|
|
|
#endif
|
2005-08-01 21:34:40 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int bbconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int bbconfig_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
2005-08-01 21:34:40 +05:30
|
|
|
{
|
2010-08-29 18:06:11 +05:30
|
|
|
#if ENABLE_FEATURE_COMPRESS_BBCONFIG
|
2018-11-02 18:44:31 +05:30
|
|
|
const char *outbuf = unpack_bz2_data(bbconfig_config_bz2,
|
|
|
|
sizeof(bbconfig_config_bz2), sizeof(bbconfig_config));
|
|
|
|
if (outbuf) {
|
|
|
|
full_write1_str(outbuf);
|
2010-08-29 18:06:11 +05:30
|
|
|
}
|
|
|
|
#else
|
2010-06-07 17:44:26 +05:30
|
|
|
full_write1_str(bbconfig_config);
|
2010-08-29 18:06:11 +05:30
|
|
|
#endif
|
2005-08-01 21:34:40 +05:30
|
|
|
return 0;
|
|
|
|
}
|