Config.in 822 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_IMX_UUC
  2. bool "imx-uuc"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_arm # Only relevant for i.MX
  5. depends on BR2_USE_MMU # fork()
  6. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 # usb_functionfs_descs_head_v2
  7. select BR2_PACKAGE_HOST_DOSFSTOOLS
  8. help
  9. This package provides the Universal Adapter user-space
  10. utility that is used to receive commands from the
  11. Manufacturing Tool using the Freescale UTP Protocol.
  12. It requires a Freescale/NXP kernel whose configuration
  13. contains the CONFIG_FSL_UTP option.
  14. This package is provided by Freescale/NXP as-is and doesn't
  15. have an upstream.
  16. comment "imx-uuc needs a toolchain w/ threads, headers >= 3.18"
  17. depends on BR2_arm
  18. depends on BR2_USE_MMU
  19. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  20. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18