docs/help: rename defconfig/olddefconfig into
authorThomas De Schampheleire <patrickdepinguin@gmail.com>
Wed Jul 17 08:25:43 2013 +0200 (2013-07-17)
changeset 3225dcdc595a23c8
parent 3224 4e9c41579ebd
child 3226 20b02b5019cd
docs/help: rename defconfig/olddefconfig into

After commit 15f57d843296e244487ac0845a73247f9d6749b8, the defconfig target
has been renamed into savedefconfig, and olddefconfig into defconfig. However,
the help text and man page was not updated.

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
[yann.morin.1998@free.fr: rename CONFIG -> DEFCONFIG]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <0c1dff89c9ee1672693f.1374042343@BEANTN0L019720>
Patchwork-Id: 259601
docs/ct-ng.1.in
kconfig/kconfig.mk
     1.1 --- a/docs/ct-ng.1.in	Wed Jul 17 08:25:42 2013 +0200
     1.2 +++ b/docs/ct-ng.1.in	Wed Jul 17 08:25:43 2013 +0200
     1.3 @@ -60,7 +60,7 @@
     1.4  with the target tuple they represent.
     1.5  ."
     1.6  .TP
     1.7 -.B defconfig
     1.8 +.B savedefconfig
     1.9  Save the current configuration to a mini-defconfig file, that contains only
    1.10  the strictly required symbols to reproduce the configuration. defconfig files
    1.11  are much smaller than a complete .config, so it is easy to send by mail. As
    1.12 @@ -87,11 +87,11 @@
    1.13  for that
    1.14  ."
    1.15  .TP
    1.16 -.B olddefconfig
    1.17 +.B defconfig
    1.18  Configure
    1.19  .B crosstool-NG
    1.20  using a mini-defconfig file (previously saved with
    1.21 -.B defconfig
    1.22 +.B savedefconfig
    1.23  or manually edited). The default mini-defconfig is read from the file
    1.24  .IR defconfig ,
    1.25  unless the variable
     2.1 --- a/kconfig/kconfig.mk	Wed Jul 17 08:25:42 2013 +0200
     2.2 +++ b/kconfig/kconfig.mk	Wed Jul 17 08:25:43 2013 +0200
     2.3 @@ -29,11 +29,11 @@
     2.4  
     2.5  savedefconfig: .config
     2.6  	@$(ECHO) '  GEN   $@'
     2.7 -	$(SILENT)$(CONF) --savedefconfig=$${CONFIG-defconfig} $(KCONFIG_TOP)
     2.8 +	$(SILENT)$(CONF) --savedefconfig=$${DEFCONFIG-defconfig} $(KCONFIG_TOP)
     2.9  
    2.10  defconfig:
    2.11  	@$(ECHO) '  CONF  $@'
    2.12 -	$(SILENT)$(CONF) --defconfig=$${CONFIG-defconfig} $(KCONFIG_TOP)
    2.13 +	$(SILENT)$(CONF) --defconfig=$${DEFCONFIG-defconfig} $(KCONFIG_TOP)
    2.14  
    2.15  # Always be silent, the stdout an be >.config
    2.16  extractconfig:
    2.17 @@ -58,6 +58,6 @@
    2.18  	@echo  '  oldconfig          - Update current config using a provided .config as base'
    2.19  	@echo  '  extractconfig      - Extract to stdout the configuration items from a'
    2.20  	@echo  '                       build.log file piped to stdin'
    2.21 -	@echo  '  defconfig          - Save current config as a mini-defconfig to $${CONFIG}'
    2.22 -	@echo  '  olddefconfig       - Update config from a mini-defconfig $${CONFIG}'
    2.23 -	@echo  '                       (default: $${CONFIG}=./defconfig)'
    2.24 +	@echo  '  savedefconfig      - Save current config as a mini-defconfig to $${DEFCONFIG}'
    2.25 +	@echo  '  defconfig          - Update config from a mini-defconfig $${DEFCONFIG}'
    2.26 +	@echo  '                       (default: $${DEFCONFIG}=./defconfig)'