]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
README.kconfig: document backward compatibility "make *_config"
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Thu, 28 Aug 2014 01:56:55 +0000 (10:56 +0900)
committerTom Rini <trini@ti.com>
Thu, 28 Aug 2014 21:18:49 +0000 (17:18 -0400)
Commit 3ff291f371fa9858426774f3732924bacb61ed1c
(kconfig: convert Kconfig helper script into a shell script)
restored "<board>_config" target for backward compatibility.
It should be documented.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
doc/README.kconfig
scripts/multiconfig.sh

index cd549a8a5441b932dd8275efddaf806473da930b..3aad5b4185b5c6bf66887c4d7d02d3bcebb3f41f 100644 (file)
@@ -114,6 +114,13 @@ See below for how each configuration target works in U-Boot:
   coalesced together with "<condition:>" prefix for each line as shown above.
   This file can be used as an input of "defconfig" target.
 
+- <board>_config
+
+  This does not exist in Linux's Kconfig.
+  Prior to Kconfig, in U-Boot, "make <board>_config" was used for the
+  configuration.  It is still supported for backward compatibility and
+  its behavior is the same as "make <board>_defconfig".
+
 
 Migration steps to Kconfig
 --------------------------
index 56cf0c2a5d56a19821f7a80038b3d03f0c27efcf..4190798a9762effc774cb7195de6eebc9bd1a274 100644 (file)
@@ -248,6 +248,7 @@ case $target in
 *_defconfig)
        do_board_defconfig $target;;
 *_config)
+       # backward compatibility
        do_board_defconfig ${target%_config}_defconfig;;
 silentoldconfig)
        do_silentoldconfig;;