u-boot/scripts
Masahiro Yamada 51148790f2 kconfig: switch to Kconfig
This commit enables Kconfig.
Going forward, we use Kconfig for the board configuration.
mkconfig will never be used. Nor will include/config.mk be generated.

Kconfig must be adjusted for U-Boot because our situation is
a little more complicated than Linux Kernel.
We have to generate multiple boot images (Normal, SPL, TPL)
from one source tree.
Each image needs its own configuration input.

Usage:

Run "make <board>_defconfig" to do the board configuration.

It will create the .config file and additionally spl/.config, tpl/.config
if SPL, TPL is enabled, respectively.

You can use "make config", "make menuconfig" etc. to create
a new .config or modify the existing one.

Use "make spl/config", "make spl/menuconfig" etc. for spl/.config
and do likewise for tpl/.config file.

The generic syntax of configuration targets for SPL, TPL is:

  <target_image>/<config_command>

Here, <target_image> is either 'spl' or 'tpl'
      <config_command> is 'config', 'menuconfig', 'xconfig', etc.

When the configuration is done, run "make".
(Or "make <board>_defconfig all" will do the configuration and build
in one time.)

For futher information of how Kconfig works in U-Boot,
please read the comment block of scripts/multiconfig.py.

By the way, there is another item worth remarking here:
coexistence of Kconfig and board herder files.

Prior to Kconfig, we used C headers to define a set of configs.

We expect a very long term to migrate from C headers to Kconfig.
Two different infractructure must coexist in the interim.

In our former configuration scheme, include/autoconf.mk was generated
for use in makefiles.
It is still generated under include/, spl/include/, tpl/include/ directory
for the Normal, SPL, TPL image, respectively.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
2014-07-30 08:48:03 -04:00
..
basic kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
kconfig kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
.gitignore kernel-doc: move kernel-doc tools to scripts/ 2014-02-19 11:10:04 -05:00
Kbuild.include kbuild: sync with Linux Kernel v3.15-rc1 2014-04-18 11:43:36 -04:00
Makefile kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
Makefile.autoconf kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
Makefile.build kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
Makefile.clean kbuild: fix bugs in cleaning targets 2014-03-28 15:06:32 -04:00
Makefile.host cosmetic: kbuild: clean-up coding style (sync with Linux 3.16-rc1) 2014-06-20 11:56:26 -04:00
Makefile.lib Merge branch 'master' of git://git.denx.de/u-boot-dm 2014-06-20 20:03:51 -04:00
Makefile.spl kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
binutils-version.sh Makefile: Move some scripts imported from Linux 2013-12-13 09:18:45 -05:00
checkpatch.pl scripts: update checkpatch.pl to latest upstream version 2014-03-04 12:15:30 -05:00
checkstack.pl Makefile: Move some scripts imported from Linux 2013-12-13 09:18:45 -05:00
cleanpatch Makefile: Move some scripts imported from Linux 2013-12-13 09:18:45 -05:00
docproc.c cosmetic: kbuild: clean-up coding style (sync with Linux 3.16-rc1) 2014-06-20 11:56:26 -04:00
dtc-version.sh Makefile: Move some scripts imported from Linux 2013-12-13 09:18:45 -05:00
gcc-stack-usage.sh Makefile: add a new script to check -fstack-usage support 2014-02-25 07:51:08 -05:00
gcc-version.sh Makefile: Move some scripts imported from Linux 2013-12-13 09:18:45 -05:00
kernel-doc kbuild: consolidate version and timestamp headers generation 2014-02-25 11:01:28 -05:00
ld-version.sh kbuild: sync with Linux Kernel v3.15-rc1 2014-04-18 11:43:36 -04:00
mailmapper scripts: add mailmapper, a tool to create/update mailmap file 2014-07-22 07:44:27 -04:00
mkmakefile kbuild: import more build scripts from Linux v3.13 tag 2014-02-19 11:07:50 -05:00
multiconfig.py kconfig: switch to Kconfig 2014-07-30 08:48:03 -04:00
objdiff kbuild: sync with Linux Kernel v3.15-rc1 2014-04-18 11:43:36 -04:00
setlocalversion Makefile: Move some scripts imported from Linux 2013-12-13 09:18:45 -05:00
show-gnu-make scripts: add scripts/show-gnu-make to get GNU Make command name 2014-07-29 11:48:36 -04:00