/** @page bugs Bug Reporting 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 all the information below. If you feel that some of the items below are unnecessary for a clear bug report, you leave them out. - Target PCB/board description - Config scripts - OpenOCD command line - List of commands issued or GDB operations performed - Expected result - Actual result - 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 version - If this is a regression, please find out the precise version that caused the regression. This can be done via a binary search; For example: if testing version 550 works but 600 fail, then try 575, etc. - If OpenOCD is crashing, you can use GDB to get a trace:@par @code % gdb --args openocd .... (gdb) run (gdb) bt => here a stack trace is dumped. @endcode - 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 - 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. */ /** @file This file contains the @ref bugs page. */ me the repository.Trygve Laugstøl
summaryrefslogtreecommitdiff
path: root/tcl/memory.tcl
blob: 2719d3feccfe34f666fa93170d7b479a0ddf5d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133