zephyr-philosophers: also deploy binary image

Deploy both binary and ELF images in order to make
it easier to flash the image on an actual board, such as Arduino-101.
(Some flashing tools require binary image)

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
This commit is contained in:
Juro Bystricky
2017-01-10 17:00:11 -08:00
parent f47182e4f9
commit 09381bd7c3

View File

@@ -12,6 +12,7 @@ do_compile () {
do_deploy () {
install -D samples/philosophers/outdir/${BOARD}/zephyr.elf ${DEPLOYDIR}/philosophers.elf
install -D samples/philosophers/outdir/${BOARD}/zephyr.bin ${DEPLOYDIR}/philosophers.bin
export DEPLOY_DIR_IMAGE=${DEPLOYDIR}/philosophers.elf
}