# SPDX-License-Identifier: GPL-2.0-only

menuconfig NET
	bool "Networking Support"
	select POLLER

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
	depends on !SHELL_NONE
	bool

config NET_DHCP
	bool
	prompt "dhcp support"

config NET_SNTP
	bool
	prompt "sntp support"

config NET_FASTBOOT
	bool
	select BANNER
	select FASTBOOT_BASE
	prompt "Android Fastboot support"
	help
	  This option adds support for the UDP variant of the Fastboot
	  protocol.

endif
