Config.in 533 B

123456789101112131415
  1. config BR2_PACKAGE_IMX_USB_LOADER
  2. bool "imx-usb-loader"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  5. select BR2_PACKAGE_LIBUSB
  6. help
  7. This package contains tools to download and execute code
  8. on Freescale i.MX5/i.MX6 and Vybrid SoCs through the
  9. Serial Download Protocol.
  10. https://github.com/boundarydevices/imx_usb_loader
  11. comment "imx-usb-loader needs a toolchain w/ threads, gcc >= 4.9"
  12. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  13. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9