2014-06-27 03:02:08 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-06-27 03:02:08 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "Routing Table Configuration"
|
|
|
|
|
|
|
|
config NET_ROUTE
|
|
|
|
bool "Routing table support"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Build in support for a routing table. See include/net/route.h
|
|
|
|
|
|
|
|
if NET_ROUTE
|
|
|
|
|
|
|
|
config NET_MAXROUTES
|
|
|
|
int "Routing table size"
|
|
|
|
default 4
|
|
|
|
---help---
|
|
|
|
The size of the routing table (in entries).
|
|
|
|
|
|
|
|
endif # NET_ROUTE
|
|
|
|
endmenu # ARP Configuration
|