This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See crosstool-NG for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 2 of 2] docs/help: rename defconfig/olddefconfig into savedefconfig/defconfig


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>

---
 docs/ct-ng.1.in    |  14 +++++++-------
 kconfig/kconfig.mk |   4 ++--
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/docs/ct-ng.1.in b/docs/ct-ng.1.in
--- a/docs/ct-ng.1.in
+++ b/docs/ct-ng.1.in
@@ -60,7 +60,7 @@ Samples can be later recalled by calling
 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
@@ -71,10 +71,10 @@ versions of
 By default the mini-defconfig is saved to a file named
 .IR defconfig ,
 unless the variable
-.B $DEFCONFIG
+.B $CONFIG
 is set, in which case the mini-defconfig will be saved to the file referenced
 by
-.BR $DEFCONFIG .
+.BR $CONFIG .
 
 Note: only the
 .I .config
@@ -87,18 +87,18 @@ saved. Use
 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
-.B $DEFCONFIG
+.B $CONFIG
 is set, in which case the mini-defconfig will be read from the file referenced
 by
-.B $DEFCONFIG
+.B $CONFIG
 ."
 .TP
 .B build
diff --git a/kconfig/kconfig.mk b/kconfig/kconfig.mk
--- a/kconfig/kconfig.mk
+++ b/kconfig/kconfig.mk
@@ -58,6 +58,6 @@ help-config::
 	@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  '  savedefconfig      - Save current config as a mini-defconfig to $${CONFIG}'
+	@echo  '  defconfig          - Update config from a mini-defconfig $${CONFIG}'
 	@echo  '                       (default: $${CONFIG}=./defconfig)'

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]