Update BUGS file, adapting its content for the doxygen manual.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1832 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
5b9c07e918
commit
23fd80f2b6
44
BUGS
44
BUGS
|
@ -1,34 +1,46 @@
|
||||||
Please report bugs by posting a message to
|
/** @page bugs Bug Reporting
|
||||||
|
|
||||||
openocd-development@lists.berlios.de.
|
Please report bugs by subscribing to the OpenOCD mailing list and
|
||||||
|
posting a message with your report:
|
||||||
|
|
||||||
|
openocd-development@lists.berlios.de
|
||||||
|
|
||||||
To minimize work for OpenOCD developers, you can include
|
To minimize work for OpenOCD developers, you can include
|
||||||
all the information below. If you feel that some of the
|
all the information below. If you feel that some of the
|
||||||
items below are unnecessary for a clear bug report, you
|
items below are unnecessary for a clear bug report, you
|
||||||
leave them out.
|
leave them out.
|
||||||
|
|
||||||
|
|
||||||
- Target PCB/board description
|
- Target PCB/board description
|
||||||
- Config scripts
|
- Config scripts
|
||||||
- OpenOCD command line
|
- OpenOCD command line
|
||||||
- List of commands issued or GDB operations performed
|
- List of commands issued or GDB operations performed
|
||||||
- Expected result
|
- Expected result
|
||||||
- Actual result
|
- Actual result
|
||||||
- debug_level 3 logs
|
- Logs using @c debug_level 3 (e.g. add '-d 3' to the command line)
|
||||||
- If this is a regression, include logs for working and broken
|
- If this is a regression, include logs for working and broken version
|
||||||
version
|
- If this is a regression, please find out the precise version that
|
||||||
- If this is a regression, please find out the precise version
|
caused the regression. This can be done via a binary search; For
|
||||||
that caused the regression. This can be done via a binary
|
example: if testing version 550 works but 600 fail, then try 575, etc.
|
||||||
search. E.g. if version 550 worked and 600 failed, then try
|
|
||||||
575, etc.
|
|
||||||
|
|
||||||
- If OpenOCD is crashing, you can use GDB to get a trace:
|
- If OpenOCD is crashing, you can use GDB to get a trace:@par
|
||||||
|
@code
|
||||||
gdb --args openocd ....
|
% gdb --args openocd ....
|
||||||
(gdb) run
|
(gdb) run
|
||||||
(gdb) bt
|
(gdb) bt
|
||||||
=> here a stack trace is dumped.
|
=> here a stack trace is dumped.
|
||||||
|
@endcode
|
||||||
|
|
||||||
attach files directly to the posting. The mailing list knows to
|
- To run or debug the in-tree executable (not recommended), you must
|
||||||
transform attachments to links so you will not be bloating anyones
|
use libtool to set up the correct shared library paths:
|
||||||
mail box. Keep attachments to <100kBytes.
|
@code
|
||||||
|
libtool gdb --args openocd ....
|
||||||
|
@endcode
|
||||||
|
or the more pedantic (and forward-compatible):
|
||||||
|
@code
|
||||||
|
libtool --mode=execute gdb --args openocd ....
|
||||||
|
@endcode
|
||||||
|
- Attach files directly to the posting. The mailing list knows to
|
||||||
|
transform attachments to links so you will not be bloating anyones mail
|
||||||
|
box. Please keep attachments to less than 100KB.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
Loading…
Reference in New Issue