Skip to content
Snippets Groups Projects
Unverified Commit c75e908e authored by Otavio Salvador's avatar Otavio Salvador Committed by GitHub
Browse files

Merge pull request #2148 from nxp-upstream/mcore-demos

imx-mcore-demos: Fix 7ULP install
parents fd77debd f02539d3
No related branches found
No related tags found
No related merge requests found
......@@ -39,19 +39,19 @@ S = "${WORKDIR}/${SOC}-${MCORE_TYPE}-demo-${PV}"
SCR = "SCR-${SOC}-${MCORE_TYPE}-demo.txt"
MCORE_DEMO_FILE_EXTENSION ?= "bin"
MCORE_DEMO_FILE_EXTENSION:mx7ulp-nxp-bsp = "img"
do_install () {
install -d ${D}${nonarch_base_libdir}/firmware
install -m 0644 ${S}/*.elf ${D}${nonarch_base_libdir}/firmware
install -m 0644 ${S}/*.bin ${D}${nonarch_base_libdir}/firmware
install -m 0644 ${S}/*.${MCORE_DEMO_FILE_EXTENSION} ${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/
install -m 0644 ${S}/*.${MCORE_DEMO_FILE_EXTENSION} ${DEPLOYDIR}/mcore-demos/
}
addtask deploy after do_install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment