diff options
author | Tom Rini <trini@konsulko.com> | 2022-11-27 10:25:36 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-07 16:04:17 -0500 |
commit | e524f3a449f58e2ef967fb9b64b01db3d099a27a (patch) | |
tree | c43505efa6b8a29f4382024c6ef606e9a9d34d94 /net/Makefile | |
parent | 9e0bcf8043084515fd7d0102b5f3192ae2be1124 (diff) | |
download | u-boot-e524f3a449f58e2ef967fb9b64b01db3d099a27a.tar.gz u-boot-e524f3a449f58e2ef967fb9b64b01db3d099a27a.tar.bz2 u-boot-e524f3a449f58e2ef967fb9b64b01db3d099a27a.zip |
net: Remove eth_legacy.c
As there are no more non-DM_ETH cases for networking, remove this legacy
file and update the Makefile to match current usage.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'net/Makefile')
-rw-r--r-- | net/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/net/Makefile b/net/Makefile index 13eef04029..bea000b206 100644 --- a/net/Makefile +++ b/net/Makefile @@ -10,18 +10,14 @@ obj-$(CONFIG_CMD_BOOTP) += bootp.o obj-$(CONFIG_CMD_CDP) += cdp.o obj-$(CONFIG_CMD_DNS) += dns.o obj-$(CONFIG_DM_DSA) += dsa-uclass.o -ifdef CONFIG_DM_ETH -obj-$(CONFIG_NET) += eth-uclass.o +obj-$(CONFIG_$(SPL_)DM_ETH) += eth-uclass.o obj-$(CONFIG_$(SPL_TPL_)BOOTDEV_ETH) += eth_bootdev.o -else -obj-$(CONFIG_NET) += eth_legacy.o -endif obj-$(CONFIG_DM_MDIO) += mdio-uclass.o obj-$(CONFIG_DM_MDIO_MUX) += mdio-mux-uclass.o -obj-$(CONFIG_NET) += eth_common.o +obj-$(CONFIG_$(SPL_)DM_ETH) += eth_common.o obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o obj-$(CONFIG_IPV6) += ndisc.o -obj-$(CONFIG_NET) += net.o +obj-$(CONFIG_$(SPL_)DM_ETH) += net.o obj-$(CONFIG_IPV6) += net6.o obj-$(CONFIG_CMD_NFS) += nfs.o obj-$(CONFIG_CMD_PING) += ping.o |