Commit c64fc769 authored by Samuel Martin's avatar Samuel Martin Committed by Peter Korsgaard
Browse files
parent 98fe337d
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ config BR2_PACKAGE_CONNTRACK_TOOLS
	depends on BR2_INET_IPV6
	depends on BR2_LARGEFILE
	depends on BR2_USE_MMU # fork()
	depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
	select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
	select BR2_PACKAGE_LIBNETFILTER_CTHELPER
	select BR2_PACKAGE_LIBNETFILTER_CTTIMEOUT
@@ -16,5 +17,7 @@ config BR2_PACKAGE_CONNTRACK_TOOLS

	  http://www.netfilter.org/projects/conntrack-tools/

comment "conntrack-tools requires a toolchain with IPV6 and LARGEFILE support"
	depends on !BR2_INET_IPV6 || !BR2_LARGEFILE
comment "conntrack-tools requires a toolchain with IPV6, LARGEFILE and threading support"
	depends on !BR2_INET_IPV6 || \
		!BR2_LARGEFILE || \
		!(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
+4 −0
Original line number Diff line number Diff line
@@ -7,8 +7,12 @@ config BR2_PACKAGE_LIBTIRPC
	# used instead of libtirpc.
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
		!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  Libtirpc is a port of Sun's Transport-Independent RPC
	  library to Linux.

	  http://sourceforge.net/projects/libtirpc/

comment "libtirpc requires a toolchain with threading support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LMBENCH
	bool "lmbench"
	depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
	select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
	help
	  LMbench is a suite of simple, portable,
	  ANSI/C microbenchmarks for UNIX/POSIX.

	  http://sourceforge.net/projects/lmbench/

comment "lmbench requires a toolchain with threading support"
	depends on !(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
+4 −2
Original line number Diff line number Diff line
config BR2_PACKAGE_NFS_UTILS
	bool "nfs-utils"
	depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
	select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
	depends on BR2_LARGEFILE
	help
@@ -9,8 +10,9 @@ config BR2_PACKAGE_NFS_UTILS

	  http://sourceforge.net/projects/nfs

comment "nfs-utils requires a toolchain with LARGEFILE support"
	depends on !BR2_LARGEFILE
comment "nfs-utils requires a toolchain with LARGEFILE and threading support"
	depends on !BR2_LARGEFILE || \
		!(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)

menu "NFS utilities selection"
	depends on BR2_PACKAGE_NFS_UTILS
+5 −2
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ config BR2_PACKAGE_QUOTA
	depends on BR2_USE_WCHAR
	depends on BR2_USE_MMU # fork()
	depends on !(BR2_microblazeel || BR2_microblazebe) # util-linux
	depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
	select BR2_PACKAGE_UTIL_LINUX
	select BR2_PACKAGE_UTIL_LINUX_BINARIES
	select BR2_PACKAGE_UTIL_LINUX_MOUNT
@@ -14,5 +15,7 @@ config BR2_PACKAGE_QUOTA

	  http://sourceforge.net/projects/linuxquota/

comment "quota requires a toolchain with LARGEFILE + WCHAR support"
	depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
comment "quota requires a toolchain with LARGEFILE, WCHAR and threading support"
	depends on !BR2_LARGEFILE || \
		!BR2_USE_WCHAR || \
		!(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
Loading