1d6065f009
Add hash files for the updated packages. Also update the license of firmware-imx. This patch is based on the Yocto equivalent: 5521d77c9f191b5808cb3bad4af9484ac Those packages have been implicitely tested through gstreamer as the plugins rely on them for vpu decoding for instance: # 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: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
886 B
Makefile
30 lines
886 B
Makefile
################################################################################
|
|
#
|
|
# firmware-imx
|
|
#
|
|
################################################################################
|
|
|
|
FIRMWARE_IMX_VERSION = $(FREESCALE_IMX_VERSION)
|
|
FIRMWARE_IMX_SITE = $(FREESCALE_IMX_SITE)
|
|
FIRMWARE_IMX_SOURCE = firmware-imx-$(FIRMWARE_IMX_VERSION).bin
|
|
|
|
FIRMWARE_IMX_LICENSE = Freescale Semiconductor Software License Agreement, \
|
|
Atheros license (ath6k)
|
|
FIRMWARE_IMX_LICENSE_FILES = EULA COPYING
|
|
FIRMWARE_IMX_REDISTRIBUTE = NO
|
|
|
|
FIRMWARE_IMX_BLOBS = ath6k sdma vpu
|
|
|
|
define FIRMWARE_IMX_EXTRACT_CMDS
|
|
$(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(FIRMWARE_IMX_SOURCE))
|
|
endef
|
|
|
|
define FIRMWARE_IMX_INSTALL_TARGET_CMDS
|
|
mkdir -p $(TARGET_DIR)/lib/firmware
|
|
for blobdir in $(FIRMWARE_IMX_BLOBS); do \
|
|
cp -r $(@D)/firmware/$${blobdir} $(TARGET_DIR)/lib/firmware; \
|
|
done
|
|
endef
|
|
|
|
$(eval $(generic-package))
|