xref: /OK3568_Linux_fs/buildroot/package/openvmtools/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_OPENVMTOOLS
2*4882a593Smuzhiyun	bool "openvmtools"
3*4882a593Smuzhiyun	depends on BR2_i386 || BR2_x86_64
4*4882a593Smuzhiyun	depends on BR2_USE_MMU # libglib2
5*4882a593Smuzhiyun	depends on BR2_USE_WCHAR # libglib2
6*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
7*4882a593Smuzhiyun	depends on BR2_ENABLE_LOCALE
8*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_USES_UCLIBC
9*4882a593Smuzhiyun	select BR2_PACKAGE_LIBGLIB2
10*4882a593Smuzhiyun	select BR2_PACKAGE_LIBDNET
11*4882a593Smuzhiyun	select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
12*4882a593Smuzhiyun	help
13*4882a593Smuzhiyun	  Open Virtual Machine Tools for VMware guest OS
14*4882a593Smuzhiyun
15*4882a593Smuzhiyun	  http://open-vm-tools.sourceforge.net/
16*4882a593Smuzhiyun
17*4882a593Smuzhiyun	  ICU locales, Xerces, and X11 tools are currently not
18*4882a593Smuzhiyun	  supported.
19*4882a593Smuzhiyun
20*4882a593Smuzhiyun	  NOTE: Support for vmblock-fuse will be enabled in
21*4882a593Smuzhiyun	  openvmtools if the libfuse package is selected.
22*4882a593Smuzhiyun
23*4882a593Smuzhiyunif BR2_PACKAGE_OPENVMTOOLS
24*4882a593Smuzhiyun
25*4882a593Smuzhiyunconfig BR2_PACKAGE_OPENVMTOOLS_PAM
26*4882a593Smuzhiyun	bool "PAM support"
27*4882a593Smuzhiyun	# linux-pam needs locale and wchar, but we already have this
28*4882a593Smuzhiyun	# dependency on the main symbol, above.
29*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
30*4882a593Smuzhiyun	select BR2_PACKAGE_LINUX_PAM
31*4882a593Smuzhiyun	help
32*4882a593Smuzhiyun	  Support for PAM in openvmtools
33*4882a593Smuzhiyun
34*4882a593Smuzhiyuncomment "PAM support needs a toolchain w/ dynamic library"
35*4882a593Smuzhiyun	depends on BR2_STATIC_LIBS
36*4882a593Smuzhiyun
37*4882a593Smuzhiyunconfig BR2_PACKAGE_OPENVMTOOLS_RESOLUTIONKMS
38*4882a593Smuzhiyun	bool "resolutionkms support"
39*4882a593Smuzhiyun	depends on BR2_PACKAGE_HAS_UDEV
40*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm
41*4882a593Smuzhiyun	depends on BR2_i386 || BR2_x86_64 # libdrm vmwgfx
42*4882a593Smuzhiyun	select BR2_PACKAGE_LIBDRM
43*4882a593Smuzhiyun	select BR2_PACKAGE_LIBDRM_VMWGFX
44*4882a593Smuzhiyun	help
45*4882a593Smuzhiyun	  Enable support for resolutionkms
46*4882a593Smuzhiyun
47*4882a593Smuzhiyuncomment "resolutionkms needs udev, a toolchain w/ threads"
48*4882a593Smuzhiyun	depends on BR2_i386 || BR2_x86_64
49*4882a593Smuzhiyun	depends on !BR2_PACKAGE_HAS_UDEV || !BR2_TOOLCHAIN_HAS_THREADS
50*4882a593Smuzhiyun
51*4882a593Smuzhiyunendif
52*4882a593Smuzhiyun
53*4882a593Smuzhiyuncomment "openvmtools needs a glibc or musl toolchain w/ wchar, threads, locale"
54*4882a593Smuzhiyun	depends on BR2_i386 || BR2_x86_64
55*4882a593Smuzhiyun	depends on BR2_USE_MMU
56*4882a593Smuzhiyun	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
57*4882a593Smuzhiyun		!BR2_ENABLE_LOCALE || \
58*4882a593Smuzhiyun		BR2_TOOLCHAIN_USES_UCLIBC
59