19 lines
328 B
Bash
Executable File
19 lines
328 B
Bash
Executable File
#! /bin/bash
|
|
|
|
source $(dirname $0)/../target.sh
|
|
|
|
lscript=/tmp/flash$$.jlink
|
|
|
|
cat >$lscript <<EOF
|
|
h
|
|
r
|
|
loadfile outdir/$BOARD/zephyr.bin $BASE_BOOT
|
|
loadfile hello.signed.bin $BASE_PRIMARY_SLOT
|
|
loadfile shell.signed.bin $BASE_SECONDARY_SLOT
|
|
q
|
|
EOF
|
|
|
|
JLinkExe -device $SOC -si SWD -speed auto \
|
|
-CommanderScript $lscript
|
|
rm $lscript
|