diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2018-04-13 15:26:38 -0500 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2018-04-13 15:48:30 -0500 |
commit | 5f967c049309c00fa62dab14e039e2a72a2f2aa6 (patch) | |
tree | 323243c1c4b75de42049cb9a4768a2d0876a4d84 /net | |
parent | 3dfbc53bd6310ccc860cf1ad0e9413d8dbbaf4f1 (diff) | |
download | u-boot-5f967c049309c00fa62dab14e039e2a72a2f2aa6.zip u-boot-5f967c049309c00fa62dab14e039e2a72a2f2aa6.tar.gz u-boot-5f967c049309c00fa62dab14e039e2a72a2f2aa6.tar.bz2 |
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/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/Makefile b/net/Makefile index ed102ec..ce6e5ad 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 |