summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2018-04-13 15:26:38 -0500
committerJoe Hershberger <joe.hershberger@ni.com>2018-04-13 15:48:30 -0500
commit5f967c049309c00fa62dab14e039e2a72a2f2aa6 (patch)
tree323243c1c4b75de42049cb9a4768a2d0876a4d84 /net
parent3dfbc53bd6310ccc860cf1ad0e9413d8dbbaf4f1 (diff)
net: Make core net code depend on NET instead of CMD_NET
No commands are necessary to have a network stack. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Duncan Hare <dh@synoia.com>
Diffstat (limited to 'net')
-rw-r--r--net/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/Makefile b/net/Makefile
index ed102ece00..ce6e5adfa5 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -8,18 +8,18 @@
#ccflags-y += -DDEBUG
obj-y += checksum.o
-obj-$(CONFIG_CMD_NET) += arp.o
+obj-$(CONFIG_NET) += arp.o
obj-$(CONFIG_CMD_BOOTP) += bootp.o
obj-$(CONFIG_CMD_CDP) += cdp.o
obj-$(CONFIG_CMD_DNS) += dns.o
ifdef CONFIG_DM_ETH
-obj-$(CONFIG_CMD_NET) += eth-uclass.o
+obj-$(CONFIG_NET) += eth-uclass.o
else
-obj-$(CONFIG_CMD_NET) += eth_legacy.o
+obj-$(CONFIG_NET) += eth_legacy.o
endif
-obj-$(CONFIG_CMD_NET) += eth_common.o
+obj-$(CONFIG_NET) += eth_common.o
obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
-obj-$(CONFIG_CMD_NET) += net.o
+obj-$(CONFIG_NET) += net.o
obj-$(CONFIG_CMD_NFS) += nfs.o
obj-$(CONFIG_CMD_PING) += ping.o
obj-$(CONFIG_CMD_RARP) += rarp.o