barebox/net/Kconfig
Wadim Egorov e9bd26c7a7 net: dhcp: Split dhcp funcionality & add dhcp command
dhcp/bootp was bound to the command functionality.
This patch splits the dhcp command.
We are now able to use bootp without a shell.

This patch adds also a check for environment variables and globalvar.
So only when ENVIRONMENT_VARIABLES and GLOBALVAR is set, all received
dhcp data will be stored.

Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2015-06-05 13:32:39 +02:00

30 lines
391 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"
endif