721d3c6e80
The Freescale extract helper was introduced before Freescale was part of NXP. Nowadays, we also have NXP packages, and they do use the same archiving format. Rename the helper under the now more generic NXP name, so that it is more logical to also use it for NXP packages. We do not retain the old Freescale-based name, because we should no longer add Freescale-named packages; they would most probably be introduced under the NXP name. Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: - provide the rationale in the commit log - keep referring to Freescale in comment ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# imx-sc-firmware
|
|
#
|
|
################################################################################
|
|
|
|
IMX_SC_FIRMWARE_VERSION = 1.8.0
|
|
IMX_SC_FIRMWARE_SITE = $(FREESCALE_IMX_SITE)
|
|
IMX_SC_FIRMWARE_SOURCE = imx-sc-firmware-$(IMX_SC_FIRMWARE_VERSION).bin
|
|
|
|
IMX_SC_FIRMWARE_LICENSE = NXP Semiconductor Software License Agreement
|
|
IMX_SC_FIRMWARE_LICENSE_FILES = EULA COPYING
|
|
IMX_SC_FIRMWARE_REDISTRIBUTE = NO
|
|
|
|
define IMX_SC_FIRMWARE_EXTRACT_CMDS
|
|
$(call NXP_EXTRACT_HELPER,$(IMX_SC_FIRMWARE_DL_DIR)/$(IMX_SC_FIRMWARE_SOURCE))
|
|
endef
|
|
|
|
IMX_SC_FIRMWARE_INSTALL_IMAGES = YES
|
|
|
|
# SCFW firmware is needed when generating imx8-boot-sd.bin which is
|
|
# done in post-image script.
|
|
ifeq ($(BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X),y)
|
|
define IMX_SC_FIRMWARE_INSTALL_IMAGES_CMDS
|
|
cp $(@D)/mx8qx-mek-scfw-tcm.bin $(BINARIES_DIR)/mx8qx-mek-scfw-tcm.bin
|
|
cp $(@D)/mx8qx-val-scfw-tcm.bin $(BINARIES_DIR)/mx8qx-val-scfw-tcm.bin
|
|
endef
|
|
else ifeq ($(BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8),y)
|
|
define IMX_SC_FIRMWARE_INSTALL_IMAGES_CMDS
|
|
cp $(@D)/mx8qm-*-scfw-tcm.bin $(BINARIES_DIR)/
|
|
endef
|
|
endif
|
|
|
|
$(eval $(generic-package))
|