Browse Source

add comments & fix descriptions in toolchain config items

SVN-Revision: 17561
Nicolas Thill 16 years ago
parent
commit
47ac8caa62
3 changed files with 17 additions and 4 deletions
  1. 15 2
      toolchain/Config.in
  2. 1 1
      toolchain/binutils/Config.in
  3. 1 1
      toolchain/gcc/Config.in

+ 15 - 2
toolchain/Config.in

@@ -42,14 +42,24 @@ menuconfig EXTRA_TARGET_ARCH
 		  both powerpc and powerpc64 binaries, you'll need to
 		  both powerpc and powerpc64 binaries, you'll need to
 		  specify -m64 here.
 		  specify -m64 here.
 
 
+comment "Binary tools"
+	depends TOOLCHAINOPTS
+
 source "toolchain/binutils/Config.in"
 source "toolchain/binutils/Config.in"
+
+comment "Compiler"
+	depends TOOLCHAINOPTS
+
 source "toolchain/gcc/Config.in"
 source "toolchain/gcc/Config.in"
 
 
+comment "C Library"
+	depends TOOLCHAINOPTS
+
 choice
 choice
-	prompt "LIBC implementation" if TOOLCHAINOPTS
+	prompt "C Library implementation" if TOOLCHAINOPTS
 	default USE_UCLIBC
 	default USE_UCLIBC
 	help
 	help
-	  Select the LIBC implementation.
+	  Select the C library implementation.
 
 
 	config USE_EGLIBC
 	config USE_EGLIBC
 		bool "Use eglibc"
 		bool "Use eglibc"
@@ -68,6 +78,9 @@ source "toolchain/eglibc/Config.in"
 source "toolchain/glibc/Config.in"
 source "toolchain/glibc/Config.in"
 source "toolchain/uClibc/Config.in"
 source "toolchain/uClibc/Config.in"
 
 
+comment "Debuggers"
+	depends TOOLCHAINOPTS
+
 config GDB
 config GDB
 	bool
 	bool
 	prompt "Build gdb" if TOOLCHAINOPTS
 	prompt "Build gdb" if TOOLCHAINOPTS

+ 1 - 1
toolchain/binutils/Config.in

@@ -17,7 +17,7 @@ endchoice
 
 
 config EXTRA_BINUTILS_CONFIG_OPTIONS
 config EXTRA_BINUTILS_CONFIG_OPTIONS
 	string
 	string
-	prompt "Additional binutils options" if TOOLCHAINOPTS
+	prompt "Additional binutils configure options" if TOOLCHAINOPTS
 	default ""
 	default ""
 	help
 	help
 	    Any additional binutils options you may want to include....
 	    Any additional binutils options you may want to include....

+ 1 - 1
toolchain/gcc/Config.in

@@ -50,7 +50,7 @@ config EABI_SUPPORT
 
 
 config EXTRA_GCC_CONFIG_OPTIONS
 config EXTRA_GCC_CONFIG_OPTIONS
 	string
 	string
-	prompt "Additional gcc options" if TOOLCHAINOPTS
+	prompt "Additional gcc configure options" if TOOLCHAINOPTS
 	default ""
 	default ""
 	help
 	help
 	    Any additional gcc options you may want to include....
 	    Any additional gcc options you may want to include....