mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-03-05 14:01:04 +01:00
Introduce the DNS Kconfig symbol so that various network commands may use host names without the dns command (CMD_DNS) being selected. Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> CC: E Shattow <e@freeshell.de>
15 lines
492 B
Makefile
15 lines
492 B
Makefile
ccflags-y += -I$(srctree)/lib/lwip/lwip/src/include -I$(srctree)/lib/lwip/u-boot
|
|
|
|
obj-$(CONFIG_$(PHASE_)DM_ETH) += net-lwip.o
|
|
obj-$(CONFIG_CMD_DHCP) += dhcp.o
|
|
obj-$(CONFIG_DNS) += dns.o
|
|
obj-$(CONFIG_LWIP_ICMP_SHOW_UNREACH) += icmp_unreach.o
|
|
obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
|
|
obj-$(CONFIG_WGET) += wget.o
|
|
|
|
ifeq (y,$(CONFIG_WGET_BUILTIN_CACERT))
|
|
$(obj)/builtin_cacert.c: $(CONFIG_WGET_BUILTIN_CACERT_PATH:"%"=%) FORCE
|
|
$(call if_changed,bin2c,builtin_cacert)
|
|
obj-y += builtin_cacert.o
|
|
endif
|