-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from SPRESENSE/update-openocd-0.11.0
Update openocd to 0.11.0
- Loading branch information
Showing
4 changed files
with
59 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
OPENOCDDIR=$(realpath ${OPENOCDDIR:-spresense-openocd}) | ||
|
||
# This script uses docker container named as 'build-openocd'. | ||
# Please run 'docker build -t build-openocd .' in this directory | ||
# if you have no build-openocd image. | ||
|
||
docker run -it --rm -u $(id -u):$(id -g) \ | ||
-v $(pwd):/work \ | ||
-v ${OPENOCDDIR}:/tmp/openocd build-openocd \ | ||
./build.sh $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters