xref: /OK3568_Linux_fs/buildroot/package/trinity/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_TRINITY_ARCH_SUPPORTS
2	bool
3	default y
4	depends on BR2_USE_MMU # fork()
5	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # __sync_val_compare_and_swap_4
6	depends on BR2_aarch64 || BR2_arm || BR2_armeb || BR2_i386 || \
7		BR2_mips || BR2_mipsel || BR2_powerpc || BR2_powerpc64 || \
8		BR2_powerpc64le || BR2_sparc || BR2_x86_64
9
10config BR2_PACKAGE_TRINITY
11	bool "trinity"
12	depends on BR2_PACKAGE_TRINITY_ARCH_SUPPORTS
13	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 # IPV6_UNICAST_IF
14	help
15	  A Linux System call fuzz tester
16
17	  http://codemonkey.org.uk/projects/trinity/
18
19comment "trinity needs a toolchain w/ headers >= 3.4"
20	depends on BR2_PACKAGE_TRINITY_ARCH_SUPPORTS
21	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
22