summaryrefslogblamecommitdiff
path: root/apps/examples/webserver/Kconfig
blob: 1a132302277af2878b3259b027eeb624f5cecdac (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                                             
                                      
 
 
                         




                                                 
                     
 
                                
                       



                                                     
                                  
                               



                                                              
                                 
                          



                                                               
                               





                                                                             
     
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config EXAMPLES_WEBSERVER
	bool "uIP web server example"
	default n
	---help---
		Enable the uIP web server example

if EXAMPLES_WEBSERVER

config EXAMPLES_WEBSERVER_IPADDR
	hex "Device IP"
	default 0x0a000002
	---help---
		This is the IP address of your board.

config EXAMPLES_WEBSERVER_DRIPADDR
	hex "Default Router IP"
	default 0x0a000001
	---help---
		This is the IP address of your router/gateway.

config EXAMPLES_WEBSERVER_NETMASK
	hex "Network Mask"
	default 0xffffff00
	---help---
		This is the network mask to use on this device.

config EXAMPLES_WEBSERVER_NOMAC
	bool "No hardware MAC"
	default y
	---help---
		Some devices don't have hardware MAC then we need to define a
		software MAC.

endif