7fdcf8e897
adds accelerated GPU support for the OMAP35xx, AM35xx, AM37xx, DM37xx, AM387x, DM814x, AM389x, DM816x, and AM335x platforms. [Peter: fix .pc files install] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Sundareson, Prabindh <prabu@ti.com> Cc: Peter Korsgaard <jacmet@uclibc.org> Cc: Sinan Akpolat <sinan@linkas.com.tr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
533 B
Makefile
25 lines
533 B
Makefile
################################################################################
|
|
#
|
|
# Virtual package for libEGL
|
|
#
|
|
################################################################################
|
|
|
|
LIBEGL_SOURCE =
|
|
|
|
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
|
|
LIBEGL_DEPENDENCIES += rpi-userland
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TI_GFX),y)
|
|
LIBEGL_DEPENDENCIES += ti-gfx
|
|
endif
|
|
|
|
ifeq ($(LIBEGL_DEPENDENCIES),)
|
|
define LIBEGL_CONFIGURE_CMDS
|
|
echo "No libEGL implementation selected. Configuration error."
|
|
exit 1
|
|
endef
|
|
endif
|
|
|
|
$(eval $(generic-package))
|