9
0
Fork 0

update Kconfig files

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4598 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2012-04-13 02:14:09 +00:00
parent 47c632f878
commit cbd3d90977
49 changed files with 621 additions and 2 deletions

View File

@ -2,3 +2,191 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
menu "ADC example"
source "$APPSDIR/examples/adc/Kconfig"
endmenu
menu "Buttons example"
source "$APPSDIR/examples/buttons/Kconfig"
endmenu
menu "CAN example"
source "$APPSDIR/examples/can/Kconfig"
endmenu
menu "USB CDC/ACM class driver example"
source "$APPSDIR/examples/cdcacm/Kconfig"
endmenu
menu "USB composite class driver example"
source "$APPSDIR/examples/composite/Kconfig"
endmenu
menu "DHCP server example"
source "$APPSDIR/examples/dhcpd/Kconfig"
endmenu
menu "FTP client example"
source "$APPSDIR/examples/ftpc/Kconfig"
endmenu
menu "FTP server example"
source "$APPSDIR/examples/ftpd/Kconfig"
endmenu
menu "\"Hello, World!\" example"
source "$APPSDIR/examples/hello/Kconfig"
endmenu
menu "\"Hello, World!\" C++ example"
source "$APPSDIR/examples/helloxx/Kconfig"
endmenu
menu "USB HID keyboard example"
source "$APPSDIR/examples/hidkbd/Kconfig"
endmenu
menu "IGMP example"
source "$APPSDIR/examples/igmp/Kconfig"
endmenu
menu "LCD read/write example"
source "$APPSDIR/examples/lcdrw/Kconfig"
endmenu
menu "Memory management example"
source "$APPSDIR/examples/mm/Kconfig"
endmenu
menu "File system mount example"
source "$APPSDIR/examples/mount/Kconfig"
endmenu
menu "Network test example"
source "$APPSDIR/examples/nettest/Kconfig"
endmenu
menu "NuttShell (NSH) example"
source "$APPSDIR/examples/nsh/Kconfig"
endmenu
menu "NULL example"
source "$APPSDIR/examples/null/Kconfig"
endmenu
menu "NX graphics example"
source "$APPSDIR/examples/nx/Kconfig"
endmenu
menu "NxConsole example"
source "$APPSDIR/examples/nxconsole/Kconfig"
endmenu
menu "NXFFS file system example"
source "$APPSDIR/examples/nxffs/Kconfig"
endmenu
menu "NXFLAT example"
source "$APPSDIR/examples/nxflat/Kconfig"
endmenu
menu "NX graphics \"Hello, World!\" example"
source "$APPSDIR/examples/nxhello/Kconfig"
endmenu
menu "NX graphics image example"
source "$APPSDIR/examples/nximage/Kconfig"
endmenu
menu "NX graphics lines example"
source "$APPSDIR/examples/nxlines/Kconfig"
endmenu
menu "NX graphics text example"
source "$APPSDIR/examples/nxtext/Kconfig"
endmenu
menu "OS test example"
source "$APPSDIR/examples/ostest/Kconfig"
endmenu
menu "Pascal \"Hello, World!\"example"
source "$APPSDIR/examples/pashello/Kconfig"
endmenu
menu "Pipe example"
source "$APPSDIR/examples/pipe/Kconfig"
endmenu
menu "Poll example"
source "$APPSDIR/examples/poll/Kconfig"
endmenu
menu "Pulse width modulation (PWM) example"
source "$APPSDIR/examples/pwm/Kconfig"
endmenu
menu "Quadrature encoder example"
source "$APPSDIR/examples/qencoder/Kconfig"
endmenu
menu "RGMP example"
source "$APPSDIR/examples/rgmp/Kconfig"
endmenu
menu "ROMFS example"
source "$APPSDIR/examples/romfs/Kconfig"
endmenu
menu "sendmail example"
source "$APPSDIR/examples/sendmail/Kconfig"
endmenu
menu "Serial loopback example"
source "$APPSDIR/examples/serloop/Kconfig"
endmenu
menu "Telnet daemon example"
source "$APPSDIR/examples/telnetd/Kconfig"
endmenu
menu "THTTPD web server example"
source "$APPSDIR/examples/thttpd/Kconfig"
endmenu
menu "TIFF generation example"
source "$APPSDIR/examples/tiff/Kconfig"
endmenu
menu "Touchscreen example"
source "$APPSDIR/examples/touchscreen/Kconfig"
endmenu
menu "UDP example"
source "$APPSDIR/examples/udp/Kconfig"
endmenu
menu "uIP web server example"
source "$APPSDIR/examples/uip/Kconfig"
endmenu
menu "USB serial test example"
source "$APPSDIR/examples/usbserial/Kconfig"
endmenu
menu "USB mass storage class example"
source "$APPSDIR/examples/usbstorage/Kconfig"
endmenu
menu "USB serial terminal example"
source "$APPSDIR/examples/usbterm/Kconfig"
endmenu
menu "wget example"
source "$APPSDIR/examples/wget/Kconfig"
endmenu
menu "WLAN example"
source "$APPSDIR/examples/wlan/Kconfig"
endmenu

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_ADC
bool "ADC example"
default n
---help---
Enable the ADC example
if EXAMPLES_ADC
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_BUTTONS
bool "Buttons example"
default n
---help---
Enable the buttons example
if EXAMPLES_BUTTONS
endif

View File

@ -2,3 +2,13 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_CAN
bool "CAN example"
default n
---help---
Enable the CAN example
if EXAMPLES_CAN
endif

View File

@ -2,3 +2,13 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_CDCACM
bool "CAN example"
default n
---help---
Enable the USB CDC/ACM class driver example
if EXAMPLES_CDCACM
endif

View File

@ -0,0 +1,14 @@
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_COMPOSITE
bool "USB composite class driver example"
default n
---help---
Enable the USB compsite class driver example
if EXAMPLES_COMPOSITE
endif

View File

@ -2,3 +2,13 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_DHCPD
bool "DHCP server example"
default n
---help---
Enable the DHCP server example
if EXAMPLES_DHCPD
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_FTPC
bool "FTP client example"
default n
---help---
Enable the FTP client example
if EXAMPLES_FTPC
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_FTPD
bool "FTP server example"
default n
---help---
Enable the FTP server example
if EXAMPLES_FTPD
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_HELLO
bool "\"Hello, World!\" example"
default n
---help---
Enable the \"Hello, World!\" example
if EXAMPLES_HELLO
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_HELLOXX
bool "\"Hello, World!\" C++ example"
default n
---help---
Enable the \"Hello, World!\" C++ example
if EXAMPLES_HELLOXX
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_HIDKBD
bool "USB HID keyboard example"
default n
---help---
Enable the USB HID keyboard example
if EXAMPLES_HIDKBD
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_IGMP
bool "IGMP example"
default n
---help---
Enable the IGMP example
if EXAMPLES_IGMP
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_LCDRW
bool "LCD read/write example"
default n
---help---
Enable the LCD read/write example
if EXAMPLES_LCDRW
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_MM
bool "Memory management example"
default n
---help---
Enable the memory management example
if EXAMPLES_MM
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_MOUNT
bool "File system mount example"
default n
---help---
Enable the file system mount example
if EXAMPLES_MOUNT
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NETTEST
bool "Network test example"
default n
---help---
Enable the network test example
if EXAMPLES_NETTEST
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NSH
bool "NuttShell (NSH) example"
default n
---help---
Enable the NuttShell (NSH) example
if EXAMPLES_NSH
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NULL
bool "NULL example"
default n
---help---
Enable the NULL example
if EXAMPLES_NULL
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NX
bool "NX graphics example"
default n
---help---
Enable the NX graphics example
if EXAMPLES_NX
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXCONSOLE
bool "NxConsole example"
default n
---help---
Enable the NxConsole example
if EXAMPLES_NXCONSOLE
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXFFS
bool "NXFFS file system example"
default n
---help---
Enable the NXFFS file system example
if EXAMPLES_NXFFS
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXFLAT
bool "NXFLAT example"
default n
---help---
Enable the NXFLAT example
if EXAMPLES_NXFLAT
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXHELLO
bool "NX graphics \"Hello, World!\" example"
default n
---help---
Enable the NX graphics \"Hello, World!\" example
if EXAMPLES_HELLOXX
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXIMAGE
bool "NX graphics image example"
default n
---help---
Enable the X graphics image example
if EXAMPLES_NXIMAGE
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXLINES
bool "NX graphics lines example"
default n
---help---
Enable the X graphics lines example
if EXAMPLES_NXLINES
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_NXTEXT
bool "NX graphics text example"
default n
---help---
Enable the NX graphics text example
if EXAMPLES_NXTEXT
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_OSTEST
bool "OS test example"
default n
---help---
Enable the OS test example
if EXAMPLES_OSTEST
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_PASHELLO
bool "Pascal \"Hello, World!\" example"
default n
---help---
Enable the Pascal \"Hello, World!\" example
if EXAMPLES_PASHELLO
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_PIPE
bool "Pipe example"
default n
---help---
Enable the pipe example
if EXAMPLES_PIPE
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_POLL
bool "Poll example"
default n
---help---
Enable the poll example
if EXAMPLES_POLL
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_PWM
bool "Pulse width modulation (PWM) example"
default n
---help---
Enable the Pulse width modulation (PWM) example
if EXAMPLES_PWM
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_QENCODER
bool "Quadrature encoder example"
default n
---help---
Enable the quadrature encoder example
if EXAMPLES_QENCODER
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_RGMP
bool "RGMP example"
default n
---help---
Enable the RGMP example
if EXAMPLES_RGMP
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_ROMFS
bool "ROMFS example"
default n
---help---
Enable the ROMFS example
if EXAMPLES_ROMFS
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_SENDMAIL
bool "Sendmail example"
default n
---help---
Enable the sendmail example
if EXAMPLES_SENDMAIL
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_SERLOOP
bool "Serial loopback example"
default n
---help---
Enable the serial loopback example
if EXAMPLES_SERLOOP
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_TELNETD
bool "Telnet daemon example"
default n
---help---
Enable the Telnet daemon example
if EXAMPLES_TELNETD
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_THTTPD
bool "THTTPD web server example"
default n
---help---
Enable the THTTPD web server example
if EXAMPLES_THTTPD
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_TIFF
bool "TIFF file generation example"
default n
---help---
Enable the TIFF file generation example
if EXAMPLES_TIFF
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_TOUCHSCREEN
bool "Touchscreen example"
default n
---help---
Enable the touchscreen example
if EXAMPLES_TOUCHSCREEN
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_UDP
bool "UDP example"
default n
---help---
Enable the UDP example
if EXAMPLES_UDP
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_UIP
bool "uIP web server example"
default n
---help---
Enable the uIP web server example
if EXAMPLES_UIP
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_USBSERIAL
bool "USB serial test example"
default n
---help---
Enable the USB serial test example
if EXAMPLES_USBSERIAL
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_USBMSC
bool "USB mass storage class example"
default n
---help---
Enable the USB mass storage class example
if EXAMPLES_USBMSC
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_USBTERM
bool "USB serial terminal example"
default n
---help---
Enable the USB serial terminal example
if EXAMPLES_USBTERM
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_WGET
bool "wget example"
default n
---help---
Enable the wget example
if EXAMPLES_WGET
endif

View File

@ -2,3 +2,12 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_WLAN
bool "WLAN example"
default n
---help---
Enable the WLAN example
if EXAMPLES_WLAN
endif

View File

@ -1,4 +1,4 @@
NuttX TODO List (Last updated March 19, 2012)
NuttX TODO List (Last updated April 12, 2012)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This file summarizes known NuttX bugs, limitations, inconsistencies with
@ -14,7 +14,7 @@ nuttx/
(2) C++ Support
(5) Binary loaders (binfmt/)
(17) Network (net/, drivers/net)
(2) USB (drivers/usbdev, drivers/usbhost)
(3) USB (drivers/usbdev, drivers/usbhost)
(8) Libraries (lib/)
(10) File system/Generic drivers (fs/, drivers/)
(1) Graphics subystem (graphics/)