summaryrefslogtreecommitdiffstats
path: root/net/Kconfig
blob: 59b64175de55e4214a04cb8576dadcad71391908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
menuconfig NET
	bool "Networking Support"

if NET

config NET_DHCP
	bool
	prompt "dhcp support"

config NET_NFS
	bool
	prompt "nfs support"

config NET_PING
	bool
	prompt "ping 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_CMD_IFUP
	bool
	prompt "ifup support"
	help
	  This enables the 'ifup' command which is used to bring up network
	  interfaces based on config files under /env/network/<ethname>

endif