Commit 79ce08bb authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

packages: remove non-IPv6 dependencies and tweaks



Now that IPv6 is mandatory remove package dependencies and conditionals
for it.

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 55bab4f6
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_AICCU
	bool "aiccu"
	depends on BR2_INET_IPV6
	depends on BR2_USE_WCHAR
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_USE_MMU # fork()
@@ -22,8 +21,8 @@ config BR2_PACKAGE_AICCU

	  http://www.sixxs.net/tools/aiccu/

comment "aiccu needs a toolchain w/ IPv6, wchar, threads"
comment "aiccu needs a toolchain w/ wchar, threads"
	depends on BR2_USE_MMU
	depends on !(BR2_INET_IPV6 && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
	depends on !(BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
+2 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_ARGUS
	bool "argus"
	depends on BR2_INET_IPV6
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_USE_MMU # fork()
	select BR2_PACKAGE_LIBPCAP
@@ -10,6 +9,6 @@ config BR2_PACKAGE_ARGUS

	  http://qosient.com/argus/

comment "argus needs a toolchain w/ threads, IPv6"
	depends on !(BR2_TOOLCHAIN_HAS_THREADS && BR2_INET_IPV6)
comment "argus needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_USE_MMU
+2 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_ATFTP
	bool "atftp"
	depends on BR2_INET_IPV6
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  atftp is a client/server implementation of the TFTP
@@ -11,5 +10,5 @@ config BR2_PACKAGE_ATFTP

	  http://sourceforge.net/projects/atftp/

comment "atftp needs a toolchain w/ threads, IPv6"
	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6
comment "atftp needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+2 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_BATCTL
	bool "batctl"
	depends on BR2_INET_IPV6
	depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
	select BR2_PACKAGE_LIBNL
	help
@@ -8,5 +7,5 @@ config BR2_PACKAGE_BATCTL

	  http://www.open-mesh.org/projects/batman-adv/wiki/Using-batctl

comment "batctl needs a toolchain w/ IPv6, threads"
	depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
comment "batctl needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+2 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_BIND
	bool "bind"
	depends on BR2_INET_IPV6
	depends on BR2_USE_MMU # fork()
	depends on !BR2_STATIC_LIBS
	help
@@ -38,6 +37,6 @@ config BR2_PACKAGE_BIND_TOOLS

endif

comment "bind needs a toolchain w/ IPv6, dynamic library"
comment "bind needs a toolchain w/ dynamic library"
	depends on BR2_USE_MMU
	depends on !BR2_INET_IPV6 || BR2_STATIC_LIBS
	depends on BR2_STATIC_LIBS
Loading