barebox/net/Kconfig
Sascha Hauer f98b02365f net: Add SNTP support
This adds support for retrieving the time via Simple Network Time
Protocol (SNTP). No fancy features are supported, only plainly getting
the current time.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2016-01-07 08:46:09 +01:00

34 lines
437 B
Text

menuconfig NET
bool "Networking Support"
if NET
config NET_NFS
bool
prompt "nfs support"
config NET_NETCONSOLE
bool
depends on !CONSOLE_NONE
prompt "network console support"
help
This option adds support for a simple udp based network console.
config NET_RESOLV
bool
prompt "dns support"
config NET_IFUP
default y
bool
config NET_DHCP
bool
prompt "dhcp support"
config NET_SNTP
bool
prompt "sntp support"
endif