994b030749
This package adds the userspace libraries for the SGX graphics accelerator of the following Texas Instruments SoCs: AM335x, AM437x, AM4430, AM5430 It also adds a config file for the libraries and a System-V init script. Signed-off-by: Lothar Felten <lothar.felten@gmail.com> [Thomas: - Add Config.in comment about the ti-sgx-km dependency. - Add dependency on glibc since the package consists of pre-built libraries that can only work with glibc. - Add Config.in comment about thread and glibc dependencies - Use tabs for indentation everywhere. - Use git:// instead of http:// to clone, since http:// doesn't work.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
980 B
Plaintext
38 lines
980 B
Plaintext
comment "ti-sgx-um needs the ti-sgx-km driver"
|
|
depends on !BR2_PACKAGE_TI_SGX_KM
|
|
|
|
comment "ti-sgx-um needs a glibc toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_USES_GLIBC ||
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_TI_SGX_UM
|
|
bool "ti-sgx-um"
|
|
depends on BR2_PACKAGE_TI_SGX_KM
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm
|
|
# pre-built binaries
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
select BR2_PACKAGE_LIBDRM
|
|
select BR2_PACKAGE_LIBDRM_OMAP
|
|
select BR2_PACKAGE_HAS_LIBEGL
|
|
select BR2_PACKAGE_HAS_LIBGLES
|
|
select BR2_PACKAGE_HAS_POWERVR
|
|
help
|
|
Graphics libraries for TI CPUs with SGX5xx GPU.
|
|
This package supports AM335x, AM437x, AM4430 and AM5430.
|
|
For older CPUs or kernels use the ti-gfx package.
|
|
|
|
http://git.ti.com/graphics/omap5-sgx-ddk-um-linux
|
|
|
|
if BR2_PACKAGE_TI_SGX_UM
|
|
|
|
config BR2_PACKAGE_PROVIDES_LIBEGL
|
|
default "ti-sgx-um"
|
|
|
|
config BR2_PACKAGE_PROVIDES_LIBGLES
|
|
default "ti-sgx-um"
|
|
|
|
config BR2_PACKAGE_PROVIDES_POWERVR
|
|
default "ti-sgx-um"
|
|
|
|
endif
|