# HG changeset patch # User Thomas De Schampheleire # Date 1374042343 -7200 # Node ID dcdc595a23c864ef06202e7ecfab4f3f6e5554e5 # Parent 4e9c41579ebd759734a969e6f594fb87117d9d97 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 [yann.morin.1998@free.fr: rename CONFIG -> DEFCONFIG] Signed-off-by: "Yann E. MORIN" Message-Id: <0c1dff89c9ee1672693f.1374042343@BEANTN0L019720> Patchwork-Id: 259601 diff -r 4e9c41579ebd -r dcdc595a23c8 docs/ct-ng.1.in --- a/docs/ct-ng.1.in Wed Jul 17 08:25:42 2013 +0200 +++ b/docs/ct-ng.1.in Wed Jul 17 08:25:43 2013 +0200 @@ -60,7 +60,7 @@ with the target tuple they represent. ." .TP -.B defconfig +.B savedefconfig Save the current configuration to a mini-defconfig file, that contains only the strictly required symbols to reproduce the configuration. defconfig files are much smaller than a complete .config, so it is easy to send by mail. As @@ -87,11 +87,11 @@ for that ." .TP -.B olddefconfig +.B defconfig Configure .B crosstool-NG using a mini-defconfig file (previously saved with -.B defconfig +.B savedefconfig or manually edited). The default mini-defconfig is read from the file .IR defconfig , unless the variable diff -r 4e9c41579ebd -r dcdc595a23c8 kconfig/kconfig.mk --- a/kconfig/kconfig.mk Wed Jul 17 08:25:42 2013 +0200 +++ b/kconfig/kconfig.mk Wed Jul 17 08:25:43 2013 +0200 @@ -29,11 +29,11 @@ savedefconfig: .config @$(ECHO) ' GEN $@' - $(SILENT)$(CONF) --savedefconfig=$${CONFIG-defconfig} $(KCONFIG_TOP) + $(SILENT)$(CONF) --savedefconfig=$${DEFCONFIG-defconfig} $(KCONFIG_TOP) defconfig: @$(ECHO) ' CONF $@' - $(SILENT)$(CONF) --defconfig=$${CONFIG-defconfig} $(KCONFIG_TOP) + $(SILENT)$(CONF) --defconfig=$${DEFCONFIG-defconfig} $(KCONFIG_TOP) # Always be silent, the stdout an be >.config extractconfig: @@ -58,6 +58,6 @@ @echo ' oldconfig - Update current config using a provided .config as base' @echo ' extractconfig - Extract to stdout the configuration items from a' @echo ' build.log file piped to stdin' - @echo ' defconfig - Save current config as a mini-defconfig to $${CONFIG}' - @echo ' olddefconfig - Update config from a mini-defconfig $${CONFIG}' - @echo ' (default: $${CONFIG}=./defconfig)' + @echo ' savedefconfig - Save current config as a mini-defconfig to $${DEFCONFIG}' + @echo ' defconfig - Update config from a mini-defconfig $${DEFCONFIG}' + @echo ' (default: $${DEFCONFIG}=./defconfig)'