]> git.baikalelectronics.ru Git - uboot.git/commit
cmd: add a new command "config" to show .config contents
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 30 Jan 2017 02:12:07 +0000 (11:12 +0900)
committerTom Rini <trini@konsulko.com>
Wed, 8 Feb 2017 20:56:26 +0000 (15:56 -0500)
commitaf5ae8889208e71ac702048c713049f15af927b7
tree2bc1465b544307fea759aa0faa87265f56ba79da
parent10956ae6fa59cc750cfdbe88c74c072afd36eb86
cmd: add a new command "config" to show .config contents

This feature is inspired by /proc/config.gz of Linux.  In Linux,
if CONFIG_IKCONFIG is enabled, the ".config" file contents are
embedded in the kernel image.  If CONFIG_IKCONFIG_PROC is also
enabled, the ".config" contents are exposed to /proc/config.gz.
Users can do "zcat /proc/config.gz" to check which config options
are enabled on the running kernel image.

The idea is almost the same here; if CONFIG_CMD_CONFIG is enabled,
the ".config" contents are compressed and saved in the U-Boot image,
then printed by the new command "config".

The usage is quite simple.  Enable CONFIG_CMD_CONFIG, then run
 > config
from the command line interface.  The ".config" contents will be
printed on the console.

This feature increases the U-Boot image size by about 4KB (this is
mostly due to the gzip-compressed .config file).  By default, it is
enabled only for Sandbox because we do not care about the memory
footprint on it.  Of course, this feature is architecture agnostic,
so you can enable it on any board if the image size increase is
acceptable for you.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Kconfig
Makefile
cmd/.gitignore [new file with mode: 0644]
cmd/Kconfig
cmd/Makefile
cmd/config.c [new file with mode: 0644]
scripts/.gitignore
scripts/Kconfig [new file with mode: 0644]
scripts/Makefile