diff options
| author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2018-12-13 14:02:52 -0800 | 
|---|---|---|
| committer | Palmer Dabbelt <palmer@sifive.com> | 2018-12-13 18:14:36 -0800 | 
| commit | cc139c77212bd1c8bf306048539eef20ad955f9a (patch) | |
| tree | 3a759945686fa29a016883946bf2780ad29783a3 /scripts | |
| parent | b38973e0327f79d1c2ca2f86872a0954b0ad4c79 (diff) | |
Support Building of MEE and MEE examples
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/debug | 34 | ||||
| -rwxr-xr-x | scripts/upload | 34 | 
2 files changed, 68 insertions, 0 deletions
| diff --git a/scripts/debug b/scripts/debug new file mode 100755 index 0000000..d02c42c --- /dev/null +++ b/scripts/debug @@ -0,0 +1,34 @@ +#!/bin/bash + +set -e +set -o pipefail + +unset elf +unset cfg +unset openocd +unset gdb +while [[ "$1" != "" ]] +do +    case "$1" +    in +    --elf)                 elf="$2";     shift 2;; +    --openocd)             openocd="$2"; shift 2;; +    --openocd-config)      cfg="$2";     shift 2;; +    --gdb)                 gdb="$2";     shift 2;; +    *) echo "$0: Unknown argument $1";   exit 1;; +    esac +done + +if [[ "$elf" == "" ]] +then +    echo "$0: --elf is required" >&2 +    exit 1 +fi + +export GDB_PORT=3333 + +$openocd -f $cfg & + +$gdb $elf -ex "set remotetimeout 240" -ex "target extended-remote localhost:${GDB_PORT}" + +kill %1 diff --git a/scripts/upload b/scripts/upload new file mode 100755 index 0000000..66e9ed8 --- /dev/null +++ b/scripts/upload @@ -0,0 +1,34 @@ +#!/bin/bash + +set -e +set -o pipefail + +unset elf +unset cfg +unset openocd +unset gdb +while [[ "$1" != "" ]] +do +    case "$1" +    in +    --elf)                 elf="$2";     shift 2;; +    --openocd)             openocd="$2"; shift 2;; +    --openocd-config)      cfg="$2";     shift 2;; +    --gdb)                 gdb="$2";     shift 2;; +    *) echo "$0: Unknown argument $1";   exit 1;; +    esac +done + +if [[ "$elf" == "" ]] +then +    echo "$0: --elf is required" >&2 +    exit 1 +fi + +export GDB_PORT=3333 + +$openocd -f $cfg & + +$gdb $elf --batch -ex "set remotetimeout 240" -ex "target extended-remote localhost:${GDB_PORT}" -ex "monitor reset halt" -ex "monitor flash protect 0 64 last off" -ex "load" -ex "monitor resume" -ex "monitor shutdown" -ex "quit" + +kill %1 | 
