kumquat-buildroot/package/dhcpcd/Config.in
Thomas Petazzoni 5522747595 dhcpcd: needs MMU
dhcpcd fails to build on non-MMU platforms, even with the
--disable-fork option:

  bind.o: In function `_daemonise':
  bind.c:(.text+0x62): undefined reference to `_fork'
  collect2: ld returned 1 exit status

Therefore, we make dhcpcd depend on MMU support, and remove the
non-MMU condition in the .mk file. More recent versions of dhcpcd do
support non-MMU properly, but this commit intends to be only a fix.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: Samuel Martin <s.martin49@gmail.com>
2013-11-04 22:00:19 +01:00

12 lines
258 B
Plaintext

config BR2_PACKAGE_DHCPCD
depends on BR2_INET_IPV6
depends on BR2_USE_MMU # fork()
bool "dhcpcd"
help
An RFC2131 compliant DHCP client
http://roy.marples.name/downloads/dhcpcd
comment "dhcpcd needs a toolchain w/ IPv6"
depends on !BR2_INET_IPV6