You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
13 years ago
|
#
|
||
|
# For a description of the syntax of this configuration file,
|
||
|
# see misc/tools/kconfig-language.txt.
|
||
|
#
|
||
|
|
||
|
config EXAMPLE_DISCOVER
|
||
|
bool "UDP Discovery Example"
|
||
|
default n
|
||
|
depends on NET_UDP
|
||
|
select NETUTILS_DISCOVER
|
||
|
---help---
|
||
|
Enable the netutils/discover utility. This example initializes and
|
||
|
starts the UDP discover daemon. This daemon is useful for
|
||
|
discovering devices in local networks, especially with DHCP
|
||
|
configured devices. It listens for UDP broadcasts which also can
|
||
|
include a device class so that groups of devices can be discovered.
|
||
|
It is also possible to address all classes with a kind of broadcast
|
||
|
discover.
|
||
|
|
||
|
config EXAMPLE_DISCOVER_DHCPC
|
||
|
bool "DHCP Client"
|
||
|
default n
|
||
|
depends on EXAMPLE_DISCOVER && !NSH_BUILTIN_APPS
|
||
|
select NETUTILS_DHCPC
|
||
|
select NETUTILS_RESOLV
|
||
|
|
||
|
config EXAMPLE_DISCOVER_NOMAC
|
||
|
bool "Use Canned MAC Address"
|
||
|
default n
|
||
|
depends on EXAMPLE_DISCOVER && !NSH_BUILTIN_APPS
|
||
|
|
||
|
config EXAMPLE_DISCOVER_IPADDR
|
||
|
hex "Target IP address"
|
||
|
default 0x0a000002
|
||
|
depends on EXAMPLE_DISCOVER && !NSH_BUILTIN_APPS && !EXAMPLE_DISCOVER_DHCPC
|
||
|
|
||
|
config EXAMPLE_DISCOVER_DRIPADDR
|
||
|
hex "Default Router IP address (Gateway)"
|
||
|
default 0x0a000001
|
||
|
depends on EXAMPLE_DISCOVER && !NSH_BUILTIN_APPS
|
||
|
|
||
|
config EXAMPLE_DISCOVER_NETMASK
|
||
|
hex "Network Mask"
|
||
|
default 0xffffff00
|
||
|
depends on EXAMPLE_DISCOVER && !NSH_BUILTIN_APPS
|