Config.in 744 B

12345678910111213141516171819
  1. config BR2_PACKAGE_AVRDUDE
  2. bool "avrdude"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_USE_WCHAR # elfutils
  5. depends on !BR2_STATIC_LIBS # elfutils
  6. depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
  7. select BR2_PACKAGE_ELFUTILS
  8. select BR2_PACKAGE_LIBUSB
  9. select BR2_PACKAGE_LIBUSB_COMPAT
  10. select BR2_PACKAGE_NCURSES
  11. help
  12. avrdude is a programmer for Atmel AVR microcontrollers
  13. this package provides a version with new linuxspi driver
  14. https://github.com/kcuzner/avrdude
  15. comment "avrdude needs a uClibc or glibc toolchain w/ threads, wchar, dynamic library"
  16. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_STATIC_LIBS \
  17. || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)