-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e5bc51c
Showing
1,482 changed files
with
362,911 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# stuff "git status" should ignore | ||
|
||
.vs | ||
|
||
# build output | ||
.libs | ||
.deps | ||
.dirstamp | ||
*.o | ||
*.o.?????? | ||
*.a | ||
*.lo | ||
*.la | ||
*.in | ||
|
||
# generated source files | ||
src/jtag/minidriver_imp.h | ||
src/jtag/jtag_minidriver.h | ||
|
||
# OpenULINK driver files generated by SDCC | ||
src/jtag/drivers/OpenULINK/*.rel | ||
src/jtag/drivers/OpenULINK/*.asm | ||
src/jtag/drivers/OpenULINK/*.lst | ||
src/jtag/drivers/OpenULINK/*.sym | ||
src/jtag/drivers/OpenULINK/*.map | ||
src/jtag/drivers/OpenULINK/*.mem | ||
src/jtag/drivers/OpenULINK/*.lk | ||
src/jtag/drivers/OpenULINK/*.ihx | ||
src/jtag/drivers/OpenULINK/*.rst | ||
|
||
# editor files | ||
*.swp | ||
|
||
src/startup.tcl | ||
startup_tcl.inc | ||
xscale_debug.inc | ||
|
||
bin2char | ||
bin2char.exe | ||
|
||
doc/openocd.aux | ||
doc/openocd.cp | ||
doc/openocd.cps | ||
doc/openocd.fn | ||
doc/openocd.fns | ||
doc/openocd.html | ||
doc/openocd.info | ||
doc/openocd.info-1 | ||
doc/openocd.info-2 | ||
doc/openocd.ky | ||
doc/openocd.log | ||
doc/openocd.pdf | ||
doc/openocd.pg | ||
doc/openocd.toc | ||
doc/openocd.tp | ||
doc/openocd.vr | ||
doc/version.texi | ||
texinfo.tex | ||
src/openocd | ||
src/openocd.exe | ||
|
||
# configure/autotools output | ||
aclocal.m4 | ||
autom4te.cache | ||
compile | ||
config.* | ||
configure | ||
depcomp | ||
doxygen | ||
doxygen.log | ||
Doxyfile | ||
install-sh | ||
libtool | ||
ltmain.sh | ||
Makefile | ||
!contrib/loaders/**/Makefile | ||
mdate-sh | ||
missing | ||
stamp-h1 | ||
stamp-vti | ||
INSTALL | ||
NOTES | ||
|
||
# coexist with quilt | ||
patches | ||
*.patch | ||
|
||
# Eclipse stuff | ||
.project | ||
.cproject | ||
.settings | ||
|
||
# Emacs temp files | ||
*~ | ||
|
||
# Emacs TAGS file | ||
TAGS | ||
|
||
# CScope database files | ||
*cscope.out | ||
|
||
# ctags tag files | ||
tags |
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,11 @@ | ||
[submodule "tools/git2cl"] | ||
path = tools/git2cl | ||
url = http://repo.or.cz/r/git2cl.git | ||
ignore = dirty | ||
[submodule "jimtcl"] | ||
path = jimtcl | ||
url = http://repo.or.cz/r/jimtcl.git | ||
[submodule "src/jtag/drivers/libjaylink"] | ||
path = src/jtag/drivers/libjaylink | ||
url = http://repo.or.cz/r/libjaylink.git | ||
|
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,53 @@ | ||
language: c | ||
dist: trusty | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
env: | ||
- BUILD=x86_64-linux-gnu | ||
- EXECUTABLE=openocd | ||
compiler: gcc | ||
|
||
- os: linux | ||
env: | ||
- BUILD=i686-linux-gnu | ||
- CFLAGS=-m32 | ||
- EXECUTABLE=openocd | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
compiler: gcc | ||
|
||
- os: linux | ||
env: | ||
- BUILD=x86_64-linux-gnu | ||
- EXECUTABLE=openocd | ||
compiler: clang | ||
|
||
- os: linux | ||
env: | ||
- BUILD=i686-linux-gnu | ||
- CFLAGS=-m32 | ||
- EXECUTABLE=openocd | ||
compiler: clang | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
|
||
- os: linux | ||
env: | ||
- BUILD=i686-w64-mingw | ||
- CONFIGURE_ARGS="--build=i686-unknown-linux-gnu --host=i686-w64-mingw32" | ||
- EXECUTABLE=openocd.exe | ||
compiler: i686-w64-mingw32-gcc | ||
addons: | ||
apt: | ||
packages: | ||
- binutils-mingw-w64-i686 gcc-mingw-w64-i686 g++-mingw-w64-i686 | ||
|
||
script: | ||
- ./bootstrap && ./configure --enable-remote-bitbang --enable-jtag_vpi $CONFIGURE_ARGS && make | ||
- file src/$EXECUTABLE |
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 @@ | ||
Dominic Rath <Dominic.Rath@gmx.de> | ||
Magnus Lundin <lundin@mlu.mine.nu> | ||
Michael Fischer <fischermi@t-online.de> | ||
Spencer Oliver <spen@spen-soft.co.uk> | ||
Carsten Schlote <schlote@vahanus.net> | ||
Øyvind Harboe <oyvind.harboe@zylin.com> | ||
Duane Ellis <openocd@duaneellis.com> | ||
Michael Schwingen <michael@schwingen.org> | ||
Rick Altherr <kc8apf@users.berlios.de> | ||
David Brownell <dbrownell@users.sourceforge.net> | ||
Vincint Palatin <vpalatin@users.berlios.de> | ||
Zachary T Welch <zw@superlucidity.net> |
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,10 @@ | ||
drath:Dominic Rath <Dominic.Rath@gmx.de> | ||
mlu:Magnus Lundin <lundin@mlu.mine.nu> | ||
mifi:Michael Fischer <fischermi@t-online.de> | ||
ntfreak:Spencer Oliver <spen@spen-soft.co.uk> | ||
duane:Duane Ellis <openocd@duaneellis.com> | ||
oharboe:Øyvind Harboe <oyvind.harboe@zylin.com> | ||
kc8apf:Rick Altherr <kc8apf@users.berlios.de> | ||
zwelch:Zachary T Welch <zw@superlucidity.net> | ||
vpalatin:Vincent Palatin <vpalatin@users.berlios.de> | ||
bodylove:Carsten Schlote <schlote@vahanus.net> |
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,74 @@ | ||
// This file is part of the Doxygen Developer Manual | ||
/** @page bugs Bug Reporting | ||
|
||
Please report bugs by subscribing to the OpenOCD mailing list and | ||
posting a message with your report: | ||
|
||
openocd-devel@lists.sourceforge.net | ||
|
||
Also, please check the bug database to see if a ticket for | ||
the bug has already been opened. You might be asked to open | ||
such a ticket, or to update an existing ticket with more data. | ||
|
||
http://bugs.openocd.org/ | ||
|
||
To minimize work for OpenOCD developers, you should try to include | ||
all of the information listed below. If you feel that some of the | ||
items below are unnecessary for a clear bug report, you may leave | ||
them out; likewise, feel free to include additional information | ||
that may be important. | ||
|
||
- Target PCB/board description | ||
- Configuration scripts | ||
- OpenOCD command line | ||
- List of commands issued or GDB operations performed | ||
- Expected result | ||
- Actual result | ||
- Logs using <code>debug_level 3</code> (or with '-d 3' on the command line) | ||
- If the report is for a regression: | ||
- Include logs for both working and broken versions. | ||
- Find the precise version that caused the regression by binary search. | ||
You can use "git bisect" to expedite this binary search: | ||
http://www.kernel.org/pub/software/scm/git/docs/git-bisect.html | ||
|
||
If possible, please develop and attach a patch that helps to expose or | ||
solve the reported problem. See the HACKING file for information | ||
about that process. | ||
|
||
Attach all files directly to your posting. The mailing list knows to | ||
transform attachments to links, but attachments must be less than 300KB | ||
in total. | ||
|
||
@section bugscrashdump Obtaining Crash Backtraces | ||
|
||
If OpenOCD is crashing, there are two very effective things you can do to | ||
improve your chances of getting help on the development mailing list. | ||
|
||
Try to reproduce the problem using the dummy JTAG interface to allow other developers to replicate | ||
your problem robustly and use GDB to get a trace:@par | ||
@code | ||
% OPENOCDSRC/configure --enable-dummy ... | ||
% openocd -f interface/dummy.cfg -f target/xxx.cfg | ||
=> SEGFAULT | ||
% gdb --args openocd .... | ||
(gdb) run | ||
(gdb) bt | ||
=> here a stack trace is dumped. | ||
@endcode | ||
|
||
@section bugsintreedebug Running and Debugging In-Tree | ||
|
||
To run or debug the in-tree executable (not recommended), you must | ||
use libtool to set up the correct shared library paths: | ||
@code | ||
libtool gdb --args openocd .... | ||
@endcode | ||
or the more pedantic (and forward-compatible): | ||
@code | ||
libtool --mode=execute gdb --args openocd .... | ||
@endcode | ||
|
||
*/ | ||
/** @file | ||
This file contains the @ref bugs page. | ||
*/ |
Oops, something went wrong.