libopenmax: Add libopenmax virtual package

this adds the libopenmax virtual package for hardware based video acceleration

[Peter: fix openmax-without-any-backends check]
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Spenser Gilliland 2013-05-30 06:30:36 +00:00 committed by Peter Korsgaard
parent 1460245354
commit 37f6ecd4d0
4 changed files with 29 additions and 0 deletions

View File

@ -1,6 +1,7 @@
config BR2_PACKAGE_BELLAGIO
bool "bellagio"
depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_HAS_OPENMAX
help
Bellagio is an opensource implementation of the
OpenMAX IL API.

View File

@ -6,3 +6,6 @@ config BR2_PACKAGE_HAS_OPENGL_ES
config BR2_PACKAGE_HAS_OPENVG
bool
config BR2_PACKAGE_HAS_OPENMAX
bool

View File

@ -0,0 +1,24 @@
#############################################################
#
# Virtual package for libopenmax
#
#############################################################
LIBOPENMAX_SOURCE =
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
LIBOPENMAX_DEPENDENCIES += rpi-userland
endif
ifeq ($(BR2_PACKAGE_BELLAGIO),y)
LIBOPENMAX_DEPENDENCIES += bellagio
endif
ifeq ($(LIBOPENMAX_DEPENDENCIES),)
define LIBOPENMAX_CONFIGURE_CMDS
echo "No libopenmax implementation selected. Configuration error."
exit 1
endef
endif
$(eval $(generic-package))

View File

@ -6,6 +6,7 @@ config BR2_PACKAGE_RPI_USERLAND
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.