Config.in 547 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_NBD
  2. bool "nbd"
  3. depends on BR2_USE_WCHAR # glib2
  4. select BR2_PACKAGE_LIBGLIB2
  5. help
  6. NBD is a set of utilities to configure network block devices,
  7. allowing access to remote block devices over TCP/IP network.
  8. Depends on glib.
  9. http://nbd.sf.net/
  10. comment "nbd requires a toolchain with WCHAR support"
  11. depends on !BR2_USE_WCHAR
  12. if BR2_PACKAGE_NBD
  13. config BR2_NBD_CLIENT
  14. bool "nbd client"
  15. default y
  16. help
  17. the client part of NBD.
  18. config BR2_NBD_SERVER
  19. bool "nbd server"
  20. help
  21. the server part of NBD.
  22. endif