Skip to content

Commit

Permalink
Kconfig: Aesthetic/formatting fixes to toolchain/Config.in.
Browse files Browse the repository at this point in the history
Non-functional edits to toolchain/Config.in:

* fix spelling mistake ("us" -> "is")
* Overly long help lines shortened to avoid line wrap
* Standardize help info to use tab(s), then two spaces

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

SVN-Revision: 42518
  • Loading branch information
hauke committed Sep 13, 2014
1 parent 275ba42 commit 40dde1c
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions toolchain/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,17 @@ menuconfig EXTERNAL_TOOLCHAIN
bool
prompt "Use external toolchain" if DEVEL
help
If enabled, OpenWrt will compile using an existing toolchain instead of compiling one
If enabled, OpenWrt will compile using an existing toolchain instead of
compiling one.

config NATIVE_TOOLCHAIN
bool
prompt "Use host's toolchain" if DEVEL
depends on EXTERNAL_TOOLCHAIN
select NO_STRIP
help
If enabled, OpenWrt will compile using the native toolchain for your host instead of compiling one
If enabled, OpenWrt will compile using the native toolchain for your
host instead of compiling one.

config TARGET_NAME
string
Expand Down Expand Up @@ -95,37 +97,37 @@ menuconfig EXTERNAL_TOOLCHAIN
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
default "uclibc"
help
Specify the libc type used by the external toolchain. The given value us passed as -m
flag to all gcc and g++ invocations. This is mainly intended for multilib toolchains
which support glibc and uclibc at the same time. If no value is specified, no -m flag
is passed.
Specify the libc type used by the external toolchain. The given value
is passed as -m flag to all gcc and g++ invocations. This is mainly
intended for multilib toolchains which support glibc and uclibc at
the same time. If no value is specified, no -m flag is passed.

config TOOLCHAIN_BIN_PATH
string
prompt "Toolchain program path" if DEVEL
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
default "./usr/bin ./bin"
help
Specify additional directories searched for toolchain binaries (override PATH)
Use ./DIR for directories relative to the root above
Specify additional directories searched for toolchain binaries
(override PATH). Use ./DIR for directories relative to the root above.

config TOOLCHAIN_INC_PATH
string
prompt "Toolchain include path" if DEVEL
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
default "./usr/include ./include"
help
Specify additional directories searched for header files (override CPPFLAGS)
Use ./DIR for directories relative to the root above
Specify additional directories searched for header files (override
CPPFLAGS). Use ./DIR for directories relative to the root above.

config TOOLCHAIN_LIB_PATH
string
prompt "Toolchain library path" if DEVEL
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
default "./usr/lib ./lib"
help
Specify additional directories searched for libraries (override LDFLAGS)
Use ./DIR for directories relative to the root above
Specify additional directories searched for libraries (override LDFLAGS).
Use ./DIR for directories relative to the root above.

config NEED_TOOLCHAIN
bool
Expand Down Expand Up @@ -237,15 +239,15 @@ config GDB
prompt "Build gdb" if TOOLCHAINOPTS
default y if !EXTERNAL_TOOLCHAIN
help
Enable if you want to build the gdb
Enable if you want to build the gdb.

config INSIGHT
bool
prompt "Build insight-gdb" if TOOLCHAINOPTS
select GDB
default n
help
Enable if you want to build insight-gdb
Enable if you want to build insight-gdb.

config USE_EGLIBC
bool
Expand Down

0 comments on commit 40dde1c

Please sign in to comment.