mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 21:26:36 +00:00
dhcpcd: bump to version 6.1.0
Now has proper support for nommu and non-IPv6. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
af616db359
commit
f8c07f2e72
@ -1,11 +1,9 @@
|
|||||||
config BR2_PACKAGE_DHCPCD
|
config BR2_PACKAGE_DHCPCD
|
||||||
depends on BR2_INET_IPV6
|
|
||||||
depends on BR2_USE_MMU # fork()
|
|
||||||
bool "dhcpcd"
|
bool "dhcpcd"
|
||||||
|
# No support for AI_ADDRCONFIG
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
|
||||||
|
!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
|
||||||
help
|
help
|
||||||
An RFC2131 compliant DHCP client
|
An RFC2131 compliant DHCP client
|
||||||
|
|
||||||
http://roy.marples.name/downloads/dhcpcd
|
http://roy.marples.name/downloads/dhcpcd
|
||||||
|
|
||||||
comment "dhcpcd needs a toolchain w/ IPv6"
|
|
||||||
depends on !BR2_INET_IPV6
|
|
||||||
|
@ -4,22 +4,29 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
DHCPCD_VERSION = 5.6.7
|
DHCPCD_VERSION = 6.1.0
|
||||||
DHCPCD_SOURCE = dhcpcd-$(DHCPCD_VERSION).tar.bz2
|
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
|
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
|
define DHCPCD_CONFIGURE_CMDS
|
||||||
(cd $(@D); \
|
(cd $(@D); \
|
||||||
./configure \
|
$(TARGET_CONFIGURE_OPTS) ./configure \
|
||||||
--target=$(BR2_GCC_TARGET_ARCH) \
|
--target=$(BR2_GCC_TARGET_ARCH) \
|
||||||
--os=linux \
|
--os=linux \
|
||||||
$(DHCPCD_CONFIG_OPT) )
|
$(DHCPCD_CONFIG_OPT) )
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define DHCPCD_BUILD_CMDS
|
define DHCPCD_BUILD_CMDS
|
||||||
$(MAKE) \
|
$(TARGET_MAKE_ENV) $(MAKE) \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
|
||||||
-C $(@D) all
|
-C $(@D) all
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user