X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=net%2FMakefile;h=ae54eee5afe047ec6a9cd7cbe2cf448819d286ee;hb=b5914419ebd51596c0a0c7ab89e10a1b734954b2;hp=b3a22c2e5b80ded898f5860130f33b0783579a6e;hpb=818f91eb5778781083e33ce3291bba76a3f1601c;p=oweals%2Fu-boot.git diff --git a/net/Makefile b/net/Makefile index b3a22c2e5b..ae54eee5af 100644 --- a/net/Makefile +++ b/net/Makefile @@ -12,7 +12,11 @@ obj-$(CONFIG_CMD_NET) += arp.o obj-$(CONFIG_CMD_NET) += bootp.o obj-$(CONFIG_CMD_CDP) += cdp.o obj-$(CONFIG_CMD_DNS) += dns.o -obj-$(CONFIG_CMD_NET) += eth.o +ifdef CONFIG_DM_ETH +obj-$(CONFIG_CMD_NET) += eth-uclass.o +else +obj-$(CONFIG_CMD_NET) += eth_legacy.o +endif obj-$(CONFIG_CMD_NET) += eth_common.o obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o obj-$(CONFIG_CMD_NET) += net.o @@ -21,3 +25,8 @@ obj-$(CONFIG_CMD_PING) += ping.o obj-$(CONFIG_CMD_RARP) += rarp.o obj-$(CONFIG_CMD_SNTP) += sntp.o obj-$(CONFIG_CMD_NET) += tftp.o + +# Disable this warning as it is triggered by: +# sprintf(buf, index ? "foo%d" : "foo", index) +# and this is intentional usage. +CFLAGS_eth_common.o += -Wno-format-extra-args