1*4882a593Smuzhiyunconfig BR2_PACKAGE_MRAA_ARCH_SUPPORTS 2*4882a593Smuzhiyun bool 3*4882a593Smuzhiyun default y if BR2_aarch64 || BR2_aarch64_be 4*4882a593Smuzhiyun default y if BR2_arm || BR2_armeb 5*4882a593Smuzhiyun default y if BR2_i386 || BR2_x86_64 6*4882a593Smuzhiyun default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el 7*4882a593Smuzhiyun 8*4882a593Smuzhiyunconfig BR2_PACKAGE_MRAA 9*4882a593Smuzhiyun bool "mraa" 10*4882a593Smuzhiyun depends on BR2_PACKAGE_MRAA_ARCH_SUPPORTS 11*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS 12*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 13*4882a593Smuzhiyun help 14*4882a593Smuzhiyun mraa is a C/C++ library with bindings to javascript & python 15*4882a593Smuzhiyun to interface with the IO on Galileo, Edison & other 16*4882a593Smuzhiyun platforms, with a structured and sane API where port 17*4882a593Smuzhiyun names/numbering matches the board that you are on. 18*4882a593Smuzhiyun 19*4882a593Smuzhiyun http://iotdk.intel.com/docs/master/mraa 20*4882a593Smuzhiyun 21*4882a593Smuzhiyuncomment "mraa needs a toolchain w/ threads, dynamic library" 22*4882a593Smuzhiyun depends on BR2_PACKAGE_MRAA_ARCH_SUPPORTS 23*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 24