Update buidlroot to version 2016.08.1
This commit is contained in:
16
bsp/buildroot/package/libimxvpuapi/Config.in
Normal file
16
bsp/buildroot/package/libimxvpuapi/Config.in
Normal file
@@ -0,0 +1,16 @@
|
||||
comment "libimxvpuapi needs an i.MX platform with VPU support"
|
||||
depends on BR2_arm
|
||||
depends on !BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||
|
||||
config BR2_PACKAGE_LIBIMXVPUAPI
|
||||
bool "libimxvpuapi"
|
||||
depends on BR2_arm # Only relevant for i.MX
|
||||
depends on BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||
select BR2_PACKAGE_IMX_VPU
|
||||
help
|
||||
This library provides an API for using the iMX6 VPU video
|
||||
engine. It is an alternative to Freescale's VPU
|
||||
wrapper. Both the wrapper and this library are layered on
|
||||
top of imx-vpu, the low-level iMX6 VPU interface.
|
||||
|
||||
https://github.com/Freescale/libimxvpuapi
|
||||
2
bsp/buildroot/package/libimxvpuapi/libimxvpuapi.hash
Normal file
2
bsp/buildroot/package/libimxvpuapi/libimxvpuapi.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# locally computed hash
|
||||
sha256 8e6dc4105db6164c0de72fd60eb73f4ba1632f7ba5052b1abc834b462b566da2 libimxvpuapi-0.10.2.tar.gz
|
||||
35
bsp/buildroot/package/libimxvpuapi/libimxvpuapi.mk
Normal file
35
bsp/buildroot/package/libimxvpuapi/libimxvpuapi.mk
Normal file
@@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# libimxvpuapi
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBIMXVPUAPI_VERSION = 0.10.2
|
||||
LIBIMXVPUAPI_SITE = $(call github,Freescale,libimxvpuapi,$(LIBIMXVPUAPI_VERSION))
|
||||
LIBIMXVPUAPI_LICENSE = LGPLv2.1+
|
||||
LIBIMXVPUAPI_LICENSE_FILES = LICENSE
|
||||
LIBIMXVPUAPI_DEPENDENCIES = host-pkgconf host-python imx-vpu
|
||||
LIBIMXVPUAPI_INSTALL_STAGING = YES
|
||||
|
||||
define LIBIMXVPUAPI_CONFIGURE_CMDS
|
||||
cd $(@D); \
|
||||
$(TARGET_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python2 ./waf configure \
|
||||
--prefix=/usr --libdir=/usr/lib
|
||||
endef
|
||||
|
||||
define LIBIMXVPUAPI_BUILD_CMDS
|
||||
cd $(@D); \
|
||||
$(HOST_DIR)/usr/bin/python2 ./waf build -j $(PARALLEL_JOBS)
|
||||
endef
|
||||
|
||||
define LIBIMXVPUAPI_INSTALL_STAGING_CMDS
|
||||
cd $(@D); \
|
||||
$(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(STAGING_DIR) install
|
||||
endef
|
||||
|
||||
define LIBIMXVPUAPI_INSTALL_TARGET_CMDS
|
||||
cd $(@D); \
|
||||
$(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(TARGET_DIR) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user