807af79a17
Changelog: - Remove platform check in hdmi-cec and imx-lib - simplify to support builds on multiple machines - For ipu use the dummy defaul object to fix build issues on non-ipu hardware This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/commit/7946533 Implicitly tested through gstreamer as the plugins rely on them for vpu decoding, e.g.: # gst-launch-0.10 playbin uri=file:///root/tears_of_steel_1080p.webm # gst-launch-1.0 playbin uri=file:///root/tears_of_steel_1080p.webm # gst-launch-1.0 filesrc location=/root/tears_of_steel_1080p.webm ! \ matroskademux ! imxvpudec ! imxipuvideosink Signed-off-by: Andrew Webster <awebster@arcx.com> Reviewed-by: Gary Bisson <gary.bisson@boundarydevices.com> Tested-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# imx-lib
|
|
#
|
|
################################################################################
|
|
|
|
IMX_LIB_VERSION = 5.4
|
|
IMX_LIB_SITE = $(FREESCALE_IMX_SITE)
|
|
IMX_LIB_LICENSE = LGPLv2.1+
|
|
IMX_LIB_LICENSE_FILES = COPYING-LGPL-2.1
|
|
|
|
IMX_LIB_INSTALL_STAGING = YES
|
|
|
|
# imx-lib needs access to imx-specific kernel headers
|
|
IMX_LIB_DEPENDENCIES += linux
|
|
IMX_LIB_INCLUDE = \
|
|
-I$(LINUX_DIR)/drivers/mxc/security/rng/include \
|
|
-I$(LINUX_DIR)/drivers/mxc/security/sahara2/include \
|
|
-idirafter $(LINUX_DIR)/include/uapi
|
|
|
|
IMX_LIB_MAKE_ENV = \
|
|
$(TARGET_MAKE_ENV) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM) \
|
|
INCLUDE="$(IMX_LIB_INCLUDE)"
|
|
|
|
define IMX_LIB_BUILD_CMDS
|
|
$(IMX_LIB_MAKE_ENV) $(MAKE1) -C $(@D)
|
|
endef
|
|
|
|
define IMX_LIB_INSTALL_STAGING_CMDS
|
|
$(IMX_LIB_MAKE_ENV) $(MAKE1) -C $(@D) DEST_DIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define IMX_LIB_INSTALL_TARGET_CMDS
|
|
$(IMX_LIB_MAKE_ENV) $(MAKE1) -C $(@D) DEST_DIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|