From 09381bd7c30050d0e16f405ab778fd86ac7f324c Mon Sep 17 00:00:00 2001 From: Juro Bystricky Date: Tue, 10 Jan 2017 17:00:11 -0800 Subject: [PATCH] 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 --- recipes-kernel/zephyr-kernel/zephyr-philosophers.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-kernel/zephyr-kernel/zephyr-philosophers.bb b/recipes-kernel/zephyr-kernel/zephyr-philosophers.bb index f9e9282..7fb0ea4 100644 --- a/recipes-kernel/zephyr-kernel/zephyr-philosophers.bb +++ b/recipes-kernel/zephyr-kernel/zephyr-philosophers.bb @@ -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 }