The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / freescale-imx / gpu-viv-bin-mx6q / Config.in
1 comment "gpu-viv-bin-mx6q needs an (e)glibc toolchain"
2         depends on BR2_arm
3         depends on !BR2_TOOLCHAIN_USES_GLIBC
4
5 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
6         bool "gpu-viv-bin-mx6q"
7         select BR2_PACKAGE_HAS_LIBEGL
8         select BR2_PACKAGE_HAS_LIBGLES
9         select BR2_PACKAGE_HAS_LIBOPENVG
10         depends on BR2_arm # Only relevant for i.MX6
11         # Library binaries are linked against libc.so.6
12         depends on BR2_TOOLCHAIN_USES_GLIBC
13         help
14           Userspace libraries for Vivante GPU on i.MX6 platforms
15
16           It contains libraries and headers for GLES, OpenCL, and
17           OpenVG. It also contains a DRI plugin for X11. It also
18           contains a plugin for DirectFB-1.4.0, but that doesn't work
19           together with buildroot's DirectFB version.
20
21           This library is provided by Freescale as-is and doesn't have
22           an upstream.
23
24 if BR2_PACKAGE_GPU_VIV_BIN_MX6Q
25
26 choice
27         prompt "Output option"
28         help
29           There are two versions of this library: one for
30           direct framebuffer access, one for X11 rendering.
31           Choose here which version to install.
32
33 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q_OUTPUT_X11
34         bool "X11"
35         depends on BR2_PACKAGE_XORG7
36         select BR2_PACKAGE_XLIB_LIBXDAMAGE # Runtime dependency
37         select BR2_PACKAGE_XLIB_LIBXEXT # Runtime dependency
38
39 comment "X11 backend needs Xorg package"
40         depends on !BR2_PACKAGE_XORG7
41
42 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q_OUTPUT_FB
43         bool "Framebuffer"
44
45 endchoice
46
47 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q_OUTPUT
48         string
49         default "x11" if BR2_PACKAGE_GPU_VIV_BIN_MX6Q_OUTPUT_X11
50         default "fb" if BR2_PACKAGE_GPU_VIV_BIN_MX6Q_OUTPUT_FB
51
52 config BR2_PACKAGE_PROVIDES_LIBEGL
53         default "gpu-viv-bin-mx6q"
54
55 config BR2_PACKAGE_PROVIDES_LIBGLES
56         default "gpu-viv-bin-mx6q"
57
58 config BR2_PACKAGE_PROVIDES_LIBOPENVG
59         default "gpu-viv-bin-mx6q"
60
61 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q_EXAMPLES
62         bool "install examples"
63         help
64           Copy the Vivante examples to the target.
65
66           Warning: examples take approximately 150 MB of disk space.
67
68 endif