More Kconfig updates

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4610 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-04-14 20:22:48 +00:00
parent 3766aebbb4
commit 5162ff3d5b
5 changed files with 17 additions and 8 deletions

View File

@ -5,7 +5,7 @@
comment "Interpreters" comment "Interpreters"
source "$APPSDIR/interprets/hello/Kconfig" source "$APPSDIR/interpreters/ficl/Kconfig"
config PCODE config PCODE
bool "Pascal p-code interpreter" bool "Pascal p-code interpreter"

View File

@ -9,11 +9,9 @@ config NETUTILS_RESOLV
---help--- ---help---
Enable support for the name resolution. Enable support for the name resolution.
if NETUTILS_RESOLV
config NET_RESOLV_ENTRIES config NET_RESOLV_ENTRIES
int "Number of resolver entries" int "Number of resolver entries"
default 8 default 8
depends on NETUTILS_RESOLV
---help--- ---help---
Number of resolver entries. Default: 8 Number of resolver entries. Default: 8
endif

View File

@ -11,34 +11,37 @@ config SYSTEM_I2CTOOL
---help--- ---help---
Enable support for the I2C tool. Enable support for the I2C tool.
if SYSTEM_I2CTOOL
config I2CTOOL_BUILTIN config I2CTOOL_BUILTIN
bool "NSH built-in command" bool "NSH built-in command"
default y default y
depends on NSH_BUILTIN_APPS depends on SYSTEM_I2CTOOL && NSH_BUILTIN_APPS
---help--- ---help---
Build the tools as an NSH built-in command Build the tools as an NSH built-in command
config I2CTOOL_MINBUS config I2CTOOL_MINBUS
int "Minimum bus number" int "Minimum bus number"
default 0 default 0
depends on SYSTEM_I2CTOOL
---help--- ---help---
Smallest bus index supported by the hardware (default 0). Smallest bus index supported by the hardware (default 0).
config I2CTOOL_MAXBUS config I2CTOOL_MAXBUS
int "Maximum bus number" int "Maximum bus number"
depends on SYSTEM_I2CTOOL
default 3 default 3
---help--- ---help---
Largest bus index supported by the hardware (default 3) Largest bus index supported by the hardware (default 3)
config I2CTOOL_MINADDR config I2CTOOL_MINADDR
hex "Minimum I2C address" hex "Minimum I2C address"
depends on SYSTEM_I2CTOOL
default 0x03 default 0x03
---help--- ---help---
Minium 7-bit device address (default: 0x03) Minium 7-bit device address (default: 0x03)
config I2CTOOL_MAXADDR config I2CTOOL_MAXADDR
hex "Maximum I2C address" hex "Maximum I2C address"
depends on SYSTEM_I2CTOOL
default 0x77 default 0x77
---help--- ---help---
Largest 7-bit device address (default: 0x77) Largest 7-bit device address (default: 0x77)
@ -46,13 +49,13 @@ config I2CTOOL_MAXADDR
config I2CTOOL_MAXREGADDR config I2CTOOL_MAXREGADDR
hex "Maximum I2C register address" hex "Maximum I2C register address"
default 0xff default 0xff
depends on SYSTEM_I2CTOOL
---help--- ---help---
Largest I2C register address (default: 0xff) Largest I2C register address (default: 0xff)
config I2CTOOL_DEFFREQ config I2CTOOL_DEFFREQ
int "Default I2C frequency" int "Default I2C frequency"
default 4000000 default 4000000
depends on SYSTEM_I2CTOOL
---help--- ---help---
Default I2C frequency (default: 4000000) Default I2C frequency (default: 4000000)
endif

View File

@ -10,6 +10,7 @@ config SYSTEM_READLINE
Enable support for the readline() function. Enable support for the readline() function.
if SYSTEM_READLINE if SYSTEM_READLINE
config READLINE_ECHO
bool "Echo character input" bool "Echo character input"
default y default y
---help--- ---help---

View File

@ -2,3 +2,10 @@
# For a description of the syntax of this configuration file, # For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt. # see misc/tools/kconfig-language.txt.
# #
comment "VSN board add-ons"
source "$APPSDIR/vsn/poweroff/Kconfig"
source "$APPSDIR/vsn/ramtron/Kconfig"
source "$APPSDIR/vsn/sdcard/Kconfig"
source "$APPSDIR/vsn/sysinfo/Kconfig"