Config.in 646 B

1234567891011121314151617181920212223242526272829
  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. select BR2_PACKAGE_UDPCAST_SENDER \
  9. if !BR2_PACKAGE_UDPCAST_RECEIVER
  10. help
  11. A multicast protocol implementation which happens to
  12. be very handy for imaging drives over the network.
  13. http://www.udpcast.linux.lu/
  14. if BR2_PACKAGE_UDPCAST
  15. config BR2_PACKAGE_UDPCAST_SENDER
  16. bool "sender"
  17. help
  18. The udpcast transmitter.
  19. config BR2_PACKAGE_UDPCAST_RECEIVER
  20. bool "receiver"
  21. help
  22. The udpcast receiver.
  23. endif