xref: /OK3568_Linux_fs/buildroot/package/nbd/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_NBD
2	bool "nbd"
3	depends on BR2_USE_WCHAR
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	depends on BR2_USE_MMU
6	select BR2_PACKAGE_LIBGLIB2
7	help
8	  NBD is a set of utilities to configure network block devices,
9	  allowing access to remote block devices over TCP/IP network.
10
11	  http://nbd.sf.net/
12
13if BR2_PACKAGE_NBD
14
15config BR2_PACKAGE_NBD_CLIENT
16	bool "nbd client"
17	default y
18	help
19	  The client part of NBD.
20
21config BR2_PACKAGE_NBD_SERVER
22	bool "nbd server"
23	help
24	  The server part of NBD.
25
26config BR2_PACKAGE_NBD_TRDUMP
27	bool "nbd trdump"
28	help
29	  Utility to dump server logs in human-readable form.
30
31endif
32
33comment "nbd needs a toolchain w/ wchar, threads"
34	depends on BR2_USE_MMU
35	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
36