1config BR2_PACKAGE_OPENFPGALOADER 2 bool "openfpgaloader" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi1 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libftdi1 -> libusb 5 depends on BR2_INSTALL_LIBSTDCPP 6 select BR2_PACKAGE_LIBFTDI1 7 help 8 Universal utility for programming FPGA 9 10 https://github.com/trabucayre/openFPGALoader/ 11 12comment "openfpgaloader needs a toolchain w/ threads, C++, gcc >= 4.9" 13 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 14 !BR2_INSTALL_LIBSTDCPP || \ 15 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 16