mirror of
https://github.com/nxp-imx/meta-imx.git
synced 2026-01-27 11:32:16 +01:00
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
# Copyright 2017-2021 NXP
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "i.MX M4/M7/M33 core Demo images"
|
|
SECTION = "app"
|
|
LICENSE = "Proprietary"
|
|
|
|
inherit deploy fsl-eula2-unpack2
|
|
|
|
SOC ?= "INVALID"
|
|
SOC:mx7ulp-nxp-bsp = "imx7ulp"
|
|
SOC:mx8dxl-nxp-bsp = "imx8dxl"
|
|
SOC:mx8mm-nxp-bsp = "imx8mm"
|
|
SOC:mx8mn-nxp-bsp = "imx8mn"
|
|
SOC:mx8mnul-nxp-bsp = "imx8mnddr3l"
|
|
SOC:mx8mp-nxp-bsp = "imx8mp"
|
|
SOC:mx8mpul-nxp-bsp = "imx8mp"
|
|
SOC:mx8mq-nxp-bsp = "imx8mq"
|
|
SOC:mx8qm-nxp-bsp = "imx8qm"
|
|
SOC:mx8qxp-nxp-bsp = "imx8qx"
|
|
SOC:mx8dx-nxp-bsp = "imx8qx"
|
|
SOC:mx8ulp-nxp-bsp = "imx8ulp"
|
|
SOC:mx93-nxp-bsp = "imx93"
|
|
SOC:mx95-nxp-bsp = "imx95"
|
|
|
|
MCORE_TYPE ?= "m4"
|
|
MCORE_TYPE:mx8mn-nxp-bsp = "m7"
|
|
MCORE_TYPE:mx8mnul-nxp-bsp = "m7"
|
|
MCORE_TYPE:mx8mp-nxp-bsp = "m7"
|
|
MCORE_TYPE:mx8mpul-nxp-bsp = "m7"
|
|
MCORE_TYPE:mx8ulp-nxp-bsp = "m33"
|
|
MCORE_TYPE:mx93-nxp-bsp = "m33"
|
|
MCORE_TYPE:mx95-nxp-bsp = "m7"
|
|
|
|
IMX_PACKAGE_NAME = "${SOC}-${MCORE_TYPE}-demo-${PV}"
|
|
SRC_URI:append = ";name=${SOC}"
|
|
|
|
SCR = "SCR-${SOC}-${MCORE_TYPE}-demo.txt"
|
|
|
|
do_install () {
|
|
# install elf format binary to /lib/firmware
|
|
install -d ${D}${nonarch_base_libdir}/firmware
|
|
install -m 0644 ${S}/*.elf ${D}${nonarch_base_libdir}/firmware
|
|
}
|
|
|
|
DEPLOY_FILE_EXT ?= "bin"
|
|
DEPLOY_FILE_EXT:mx7ulp-nxp-bsp = "img"
|
|
|
|
do_deploy () {
|
|
# Install the demo binaries
|
|
install -d ${DEPLOYDIR}/mcore-demos
|
|
install -m 0644 ${S}/*.${DEPLOY_FILE_EXT} ${DEPLOYDIR}/mcore-demos/
|
|
}
|
|
|
|
addtask deploy after do_install
|
|
|
|
PACKAGE_ARCH = "${MACHINE_SOCARCH}"
|