Config.in 817 B

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