Config.in 574 B

123456789101112131415161718192021222324252627
  1. comment "udpcast needs a toolchain w/ threads"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_TOOLCHAIN_HAS_THREADS
  4. config BR2_PACKAGE_UDPCAST
  5. bool "udpcast"
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. depends on BR2_USE_MMU # fork()
  8. help
  9. A multicast protocol implementation which happens to
  10. be very handy for imaging drives over the network.
  11. http://www.udpcast.linux.lu/
  12. if BR2_PACKAGE_UDPCAST
  13. config BR2_PACKAGE_UDPCAST_SENDER
  14. bool "sender"
  15. help
  16. The udpcast transmitter.
  17. config BR2_PACKAGE_UDPCAST_RECEIVER
  18. bool "receiver"
  19. help
  20. The udpcast receiver.
  21. endif