Config.in: add -Og option
[buildroot-gz.git] / package / ti-gfx / Config.in
blob1481534d8311db9a5f0cad13e24f51f7656c8502
1 config BR2_PACKAGE_TI_GFX
2         bool "ti-gfx"
3         depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
4         select BR2_HOSTARCH_NEEDS_IA32_LIBS
5         select BR2_PACKAGE_HAS_LIBEGL
6         select BR2_PACKAGE_HAS_LIBGLES
7         select BR2_PACKAGE_HAS_POWERVR
8         select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
9         select BR2_LINUX_NEEDS_MODULES # not using kernel-module infra
10         help
11           Graphics libraries for TI boards.
13           http://downloads.ti.com/dsps/dsps_public_sw/gfxsdk/
15 if BR2_PACKAGE_TI_GFX
17 config BR2_PACKAGE_PROVIDES_LIBEGL
18         default "ti-gfx"
20 config BR2_PACKAGE_PROVIDES_LIBGLES
21         default "ti-gfx"
23 config BR2_PACKAGE_PROVIDES_POWERVR
24         default "ti-gfx"
26 config BR2_PACKAGE_TI_GFX_DEBUG
27         bool "enable debug support"
28         help
29           Turns on debugging in the kernel module, install libraries built with
30           debugging enabled, installs various tests and installs esrev script.
32 config BR2_PACKAGE_TI_GFX_DEMOS
33         bool "install demos"
34         default y
35         help
36           Install the OGLES2ChameleonMan and OGLES2MagicLantern demos
38 config BR2_PACKAGE_TI_GFX_EGLIMAGE
39         bool "install eglimage version of libraries"
40         help
41           Installs OpenGL libaries which support the eglimage api.
43 choice
44         prompt "Target"
45         default BR2_PACKAGE_TI_GFX_ES3
46         help
47           Select the SOC for which you would like to install drivers. Please use the
48           chart at
49           http://processors.wiki.ti.com/index.php/OMAP35x_Graphics_SDK_Getting_Started_Guide
51 config BR2_PACKAGE_TI_GFX_ES3
52         bool "es3.x (OMAP35xx, AM35xx Rev 3.1+)"
53         help
54           OMAP35xx, AM35xx Rev 3.1+
56 config BR2_PACKAGE_TI_GFX_ES5
57         bool "es5.x (AM37xx, DM37xx)"
58         help
59           AM37xx, DM37xx
61 config BR2_PACKAGE_TI_GFX_ES6
62         bool "es6.x (AM387x, DMA814x, AM389x, DM816x)"
63         help
64           AM387x, DM814x, AM389x, DM816x
66 config BR2_PACKAGE_TI_GFX_ES8
67         bool "es8.x (AM335x)"
68         help
69           AM335x
71 endchoice
73 endif
75 comment "ti-gfx needs an (e)glibc toolchain and a Linux kernel to be built"
76         depends on BR2_arm
77         depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC)