mirror of
https://github.com/nxp-imx/meta-imx.git
synced 2026-01-27 11:32:16 +01:00
9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
# Override do_deploy to change deploy path
|
|
DEPLOY_FILE_EXT = "bin"
|
|
|
|
do_deploy () {
|
|
# Install the demo binaries
|
|
install -d ${DEPLOYDIR}/mcore-demos
|
|
install -m 0644 ${S}/*.${DEPLOY_FILE_EXT} ${DEPLOYDIR}/mcore-demos/
|
|
}
|