Commit f8c07f2e authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

dhcpcd: bump to version 6.1.0



Now has proper support for nommu and non-IPv6.

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent af616db3
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
config BR2_PACKAGE_DHCPCD
	depends on BR2_INET_IPV6
	depends on BR2_USE_MMU # fork()
	bool "dhcpcd"
	# No support for AI_ADDRCONFIG
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
		!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
	help
	  An RFC2131 compliant DHCP client

	  http://roy.marples.name/downloads/dhcpcd

comment "dhcpcd needs a toolchain w/ IPv6"
	depends on !BR2_INET_IPV6
+12 −5
Original line number Diff line number Diff line
@@ -4,22 +4,29 @@
#
################################################################################

DHCPCD_VERSION = 5.6.7
DHCPCD_VERSION = 6.1.0
DHCPCD_SOURCE = dhcpcd-$(DHCPCD_VERSION).tar.bz2
DHCPCD_SITE = http://roy.marples.name/downloads/dhcpcd/
DHCPCD_SITE = http://roy.marples.name/downloads/dhcpcd
DHCPCD_LICENSE = BSD-2c

ifeq ($(BR2_INET_IPV6),)
	DHCPCD_CONFIG_OPT += --disable-ipv6
endif

ifeq ($(BR2_USE_MMU),)
	DHCPCD_CONFIG_OPT += --disable-fork
endif

define DHCPCD_CONFIGURE_CMDS
	(cd $(@D); \
	./configure \
	$(TARGET_CONFIGURE_OPTS) ./configure \
		--target=$(BR2_GCC_TARGET_ARCH) \
		--os=linux \
		$(DHCPCD_CONFIG_OPT) )
endef

define DHCPCD_BUILD_CMDS
	$(MAKE) \
		$(TARGET_CONFIGURE_OPTS) \
	$(TARGET_MAKE_ENV) $(MAKE) \
		-C $(@D) all
endef