Set of files and scripts for Embedded Lab 1
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh -
-
- set -x
-
- if [ ! -f "test.json" ]; then
- echo no test jail is running
- exit 1
- fi
-
- json="$(cat test.json)"
-
- keys=$(echo "$json" | jq --raw-output 'keys[]')
-
- for i in $keys; do
- eval export $i='$(echo "$json" | jq --raw-output .[\"$i\"])'
- done
-
- sh -x ./board_script release cora-1 jmg
|