7b2b4c8342
For the underlying reasons, see previous patch, titled: package/opengl/libegl: switch to package-defined providers Reported-by: David Corvoysier <david.corvoysier@orange.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
config BR2_PACKAGE_RPI_USERLAND
|
|
bool "rpi-userland"
|
|
depends on BR2_arm
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_HAS_OPENGL_EGL
|
|
select BR2_PACKAGE_HAS_OPENGL_ES
|
|
select BR2_PACKAGE_HAS_OPENVG
|
|
select BR2_PACKAGE_HAS_OPENMAX
|
|
help
|
|
Raspberry Pi Userland contains the necessary library to use the
|
|
VideoCore driver.
|
|
|
|
Includes source for the ARM side code to interface to:
|
|
EGL, mmal, GLESv2, vcos, openmaxil, vchiq_arm, bcm_host, WFC, OpenVG.
|
|
|
|
https://github.com/raspberrypi/userland/
|
|
|
|
if BR2_PACKAGE_RPI_USERLAND
|
|
|
|
config BR2_PACKAGE_PROVIDES_OPENGL_EGL
|
|
default "rpi-userland"
|
|
|
|
config BR2_PACKAGE_PROVIDES_OPENGL_ES
|
|
default "rpi-userland"
|
|
|
|
config BR2_PACKAGE_PROVIDES_OPENVG
|
|
default "rpi-userland"
|
|
|
|
config BR2_PACKAGE_PROVIDES_OPENMAX
|
|
default "rpi-userland"
|
|
|
|
endif
|
|
|
|
comment "rpi-userland needs a toolchain w/ C++, largefile, threads"
|
|
depends on BR2_arm
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|