From a0cf700991fad1ffea2859220327c24665e34c39 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 6 Apr 2012 16:33:17 +0000 Subject: Adding skeleton Kconfig files (part 3 of 2) git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4566 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/Kconfig | 4 ++++ apps/examples/adc/Kconfig | 4 ++++ apps/examples/buttons/Kconfig | 4 ++++ apps/examples/can/Kconfig | 4 ++++ apps/examples/cdcacm/Kconfig | 4 ++++ apps/examples/dhcpd/Kconfig | 4 ++++ apps/examples/ftpc/Kconfig | 4 ++++ apps/examples/ftpd/Kconfig | 4 ++++ apps/examples/hello/Kconfig | 4 ++++ apps/examples/helloxx/Kconfig | 4 ++++ apps/examples/hidkbd/Kconfig | 4 ++++ apps/examples/igmp/Kconfig | 4 ++++ apps/examples/lcdrw/Kconfig | 4 ++++ apps/examples/mm/Kconfig | 4 ++++ apps/examples/mount/Kconfig | 4 ++++ apps/examples/nettest/Kconfig | 4 ++++ apps/examples/nsh/Kconfig | 4 ++++ apps/examples/null/Kconfig | 4 ++++ apps/examples/nx/Kconfig | 4 ++++ apps/examples/nxconsole/Kconfig | 4 ++++ apps/examples/nxffs/Kconfig | 4 ++++ apps/examples/nxflat/Kconfig | 4 ++++ apps/examples/nxhello/Kconfig | 4 ++++ apps/examples/nximage/Kconfig | 4 ++++ apps/examples/nxlines/Kconfig | 4 ++++ apps/examples/nxtext/Kconfig | 4 ++++ apps/examples/ostest/Kconfig | 4 ++++ apps/examples/pashello/Kconfig | 4 ++++ apps/examples/pipe/Kconfig | 4 ++++ apps/examples/poll/Kconfig | 4 ++++ apps/examples/pwm/Kconfig | 4 ++++ apps/examples/qencoder/Kconfig | 4 ++++ apps/examples/rgmp/Kconfig | 4 ++++ apps/examples/romfs/Kconfig | 4 ++++ apps/examples/sendmail/Kconfig | 4 ++++ apps/examples/serloop/Kconfig | 4 ++++ apps/examples/telnetd/Kconfig | 4 ++++ apps/examples/thttpd/Kconfig | 4 ++++ apps/examples/tiff/Kconfig | 4 ++++ apps/examples/touchscreen/Kconfig | 4 ++++ apps/examples/udp/Kconfig | 4 ++++ apps/examples/uip/Kconfig | 4 ++++ apps/examples/usbserial/Kconfig | 4 ++++ apps/examples/usbstorage/Kconfig | 4 ++++ apps/examples/usbterm/Kconfig | 4 ++++ apps/examples/wget/Kconfig | 4 ++++ apps/examples/wlan/Kconfig | 4 ++++ 47 files changed, 188 insertions(+) create mode 100644 apps/examples/Kconfig create mode 100644 apps/examples/adc/Kconfig create mode 100644 apps/examples/buttons/Kconfig create mode 100644 apps/examples/can/Kconfig create mode 100644 apps/examples/cdcacm/Kconfig create mode 100644 apps/examples/dhcpd/Kconfig create mode 100644 apps/examples/ftpc/Kconfig create mode 100644 apps/examples/ftpd/Kconfig create mode 100644 apps/examples/hello/Kconfig create mode 100644 apps/examples/helloxx/Kconfig create mode 100644 apps/examples/hidkbd/Kconfig create mode 100644 apps/examples/igmp/Kconfig create mode 100644 apps/examples/lcdrw/Kconfig create mode 100644 apps/examples/mm/Kconfig create mode 100644 apps/examples/mount/Kconfig create mode 100644 apps/examples/nettest/Kconfig create mode 100644 apps/examples/nsh/Kconfig create mode 100644 apps/examples/null/Kconfig create mode 100644 apps/examples/nx/Kconfig create mode 100644 apps/examples/nxconsole/Kconfig create mode 100644 apps/examples/nxffs/Kconfig create mode 100644 apps/examples/nxflat/Kconfig create mode 100644 apps/examples/nxhello/Kconfig create mode 100644 apps/examples/nximage/Kconfig create mode 100644 apps/examples/nxlines/Kconfig create mode 100644 apps/examples/nxtext/Kconfig create mode 100644 apps/examples/ostest/Kconfig create mode 100644 apps/examples/pashello/Kconfig create mode 100644 apps/examples/pipe/Kconfig create mode 100644 apps/examples/poll/Kconfig create mode 100644 apps/examples/pwm/Kconfig create mode 100644 apps/examples/qencoder/Kconfig create mode 100644 apps/examples/rgmp/Kconfig create mode 100644 apps/examples/romfs/Kconfig create mode 100644 apps/examples/sendmail/Kconfig create mode 100644 apps/examples/serloop/Kconfig create mode 100644 apps/examples/telnetd/Kconfig create mode 100644 apps/examples/thttpd/Kconfig create mode 100644 apps/examples/tiff/Kconfig create mode 100644 apps/examples/touchscreen/Kconfig create mode 100644 apps/examples/udp/Kconfig create mode 100644 apps/examples/uip/Kconfig create mode 100644 apps/examples/usbserial/Kconfig create mode 100644 apps/examples/usbstorage/Kconfig create mode 100644 apps/examples/usbterm/Kconfig create mode 100644 apps/examples/wget/Kconfig create mode 100644 apps/examples/wlan/Kconfig (limited to 'apps/examples') diff --git a/apps/examples/Kconfig b/apps/examples/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/adc/Kconfig b/apps/examples/adc/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/adc/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/buttons/Kconfig b/apps/examples/buttons/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/buttons/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/can/Kconfig b/apps/examples/can/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/can/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/cdcacm/Kconfig b/apps/examples/cdcacm/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/cdcacm/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/dhcpd/Kconfig b/apps/examples/dhcpd/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/dhcpd/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/ftpc/Kconfig b/apps/examples/ftpc/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/ftpc/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/ftpd/Kconfig b/apps/examples/ftpd/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/ftpd/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/hello/Kconfig b/apps/examples/hello/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/hello/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/helloxx/Kconfig b/apps/examples/helloxx/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/helloxx/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/hidkbd/Kconfig b/apps/examples/hidkbd/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/hidkbd/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/igmp/Kconfig b/apps/examples/igmp/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/igmp/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/lcdrw/Kconfig b/apps/examples/lcdrw/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/lcdrw/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/mm/Kconfig b/apps/examples/mm/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/mm/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/mount/Kconfig b/apps/examples/mount/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/mount/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nettest/Kconfig b/apps/examples/nettest/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nettest/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nsh/Kconfig b/apps/examples/nsh/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nsh/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/null/Kconfig b/apps/examples/null/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/null/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nx/Kconfig b/apps/examples/nx/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nx/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nxconsole/Kconfig b/apps/examples/nxconsole/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nxconsole/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nxffs/Kconfig b/apps/examples/nxffs/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nxffs/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nxflat/Kconfig b/apps/examples/nxflat/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nxflat/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nxhello/Kconfig b/apps/examples/nxhello/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nxhello/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nximage/Kconfig b/apps/examples/nximage/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nximage/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nxlines/Kconfig b/apps/examples/nxlines/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nxlines/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/nxtext/Kconfig b/apps/examples/nxtext/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/nxtext/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/ostest/Kconfig b/apps/examples/ostest/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/ostest/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/pashello/Kconfig b/apps/examples/pashello/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/pashello/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/pipe/Kconfig b/apps/examples/pipe/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/pipe/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/poll/Kconfig b/apps/examples/poll/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/poll/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/pwm/Kconfig b/apps/examples/pwm/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/pwm/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/qencoder/Kconfig b/apps/examples/qencoder/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/qencoder/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/rgmp/Kconfig b/apps/examples/rgmp/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/rgmp/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/romfs/Kconfig b/apps/examples/romfs/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/romfs/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/sendmail/Kconfig b/apps/examples/sendmail/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/sendmail/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/serloop/Kconfig b/apps/examples/serloop/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/serloop/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/telnetd/Kconfig b/apps/examples/telnetd/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/telnetd/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/thttpd/Kconfig b/apps/examples/thttpd/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/thttpd/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/tiff/Kconfig b/apps/examples/tiff/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/tiff/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/touchscreen/Kconfig b/apps/examples/touchscreen/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/touchscreen/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/udp/Kconfig b/apps/examples/udp/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/udp/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/uip/Kconfig b/apps/examples/uip/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/uip/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/usbserial/Kconfig b/apps/examples/usbserial/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/usbserial/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/usbstorage/Kconfig b/apps/examples/usbstorage/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/usbstorage/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/usbterm/Kconfig b/apps/examples/usbterm/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/usbterm/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/wget/Kconfig b/apps/examples/wget/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/wget/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# diff --git a/apps/examples/wlan/Kconfig b/apps/examples/wlan/Kconfig new file mode 100644 index 000000000..887f91bb1 --- /dev/null +++ b/apps/examples/wlan/Kconfig @@ -0,0 +1,4 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# -- cgit v1.2.3