zephyr/boards/arm/arduino_101_ble/Makefile.board
Patrice Buriez 1f429cd4a2 boards: arduino_101: support 'make flash' over DFU
Let 'make flash' invoke the dfuutil.sh support script, and
export the relevant DFUUTIL_* environment variables, for all
3 cores of the Arduino 101 board: x86, ARC and BLE.

This is backward compatible with the current usage of OpenOCD
over JTAG, since this is only enabled when the environment
variable ZEPHYR_FLASH_OVER_DFU is set to y.

Change-Id: Ic5528cb87a180378d7120d150c27d1e24c9ebe75
Signed-off-by: Patrice Buriez <patrice.buriez@intel.com>
2017-03-14 23:39:38 +00:00

9 lines
195 B
Makefile

ifeq (${ZEPHYR_FLASH_OVER_DFU},y)
FLASH_SCRIPT = dfuutil.sh
DFUUTIL_PID = 8087:0aba
DFUUTIL_ALT = ble_core
DFUUTIL_IMG = ${O}/${KERNEL_BIN_NAME}
export DFUUTIL_PID DFUUTIL_ALT DFUUTIL_IMG
endif