Commit 22001201 authored by Arnout Vandecappelle (Essensium/Mind)'s avatar Arnout Vandecappelle (Essensium/Mind) Committed by Peter Korsgaard
Browse files

firmware-imx: new package



[Peter: ensure lib/firmware exists, move under 'Misc devices firmware']
Signed-off-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 85bd7b91
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -203,6 +203,7 @@ endmenu
menu "Hardware handling"
menu "Misc devices firmwares"
source "package/b43-firmware/Config.in"
source "package/firmware-imx/Config.in"
source "package/linux-firmware/Config.in"
source "package/rpi-firmware/Config.in"
source "package/ux500-firmware/Config.in"
+13 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_FIRMWARE_IMX
	bool "firmware-imx"
	depends on BR2_arm # Only relevant for i.MX
	help
	  Firmware blobs for the Freescale i.MX SoCs.

	  It contains blobs for Atheros AR6003, SDMA and VPU.

	  Note: it also contains a blob for ar3k/30101 but upstream
	  linux-firmware has that as well.

	  This library is provided by Freescale as-is and doesn't have
	  an upstream.
+39 −0
Original line number Diff line number Diff line
#############################################################
#
# buildroot makefile for firmware-imx
#
#############################################################

FIRMWARE_IMX_VERSION = 12.09.01
# No official download site from freescale, just this mirror
FIRMWARE_IMX_SITE = http://download.ossystems.com.br/bsp/freescale/source
FIRMWARE_IMX_SOURCE = firmware-imx-$(FIRMWARE_IMX_VERSION).bin
FIRMWARE_IMX_LICENSE = Freescale Semiconductor Software License Agreement, \
	Atheros license (ath6k)
FIRMWARE_IMX_LICENSE_FILES = licenses/vpu/EULA licenses/ath6k/AR6102/License.txt
# This is a legal minefield: the EULA specifies that
# the Board Support Package includes software and hardware (sic!)
# for which a separate license is needed...
FIRMWARE_IMX_REDISTRIBUTE = NO

FIRMWARE_IMX_BLOBS = ath6k sdma vpu

# The archive is a shell-self-extractor of a bzipped tar. It happens
# to extract in the correct directory (firmware-imx-x.y.z)
# The --force makes sure it doesn't fail if the source dir already exists.
# The --auto-accept skips the license check - not needed for us
# because we have legal-info.
define FIRMWARE_IMX_EXTRACT_CMDS
	cd $(BUILD_DIR); \
	sh $(DL_DIR)/$(FIRMWARE_IMX_SOURCE) --force --auto-accept
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))