Skip to content
Snippets Groups Projects
Commit 1d88f972 authored by patacongo's avatar patacongo
Browse files

update Kconfig files

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4598 42af7a65-404d-4744-a932-0658087f49c3
parent 330cb043
No related branches found
No related tags found
No related merge requests found
Showing
with 367 additions and 0 deletions
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
#
# 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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment