Skip to content

Commit b853b9d

Browse files
author
David Brownell
committed
Open the merge window for the 0.5.0 release cycle.
Signed-off-by: David Brownell <[email protected]>
1 parent 56e7490 commit b853b9d

File tree

3 files changed

+101
-69
lines changed

3 files changed

+101
-69
lines changed

NEWS

+2-68
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,23 @@
11
This file includes highlights of the changes made in the
2-
OpenOCD 0.4.0 source archive release. See the repository
2+
OpenOCD 0.5.0 source archive release. See the repository
33
history for details about what changed, including bugfixes
44
and other issues not mentioned here.
55

66
JTAG Layer:
7-
Support KT-Link JTAG adapter.
8-
Support USB-JTAG, Altera USB-Blaster and compatibles.
97

108
Boundary Scan:
119

1210
Target Layer:
13-
General
14-
- Removed commands which have been obsolete for at least
15-
a year (from both documentation and, sometimes, code).
16-
- new "reset-assert" event, for systems without SRST
17-
ARM
18-
- supports "reset-assert" event (except on Cortex-M3)
19-
- renamed "armv4_5" command prefix as "arm"
20-
- recognize TrustZone "Secure Monitor" mode
21-
- "arm regs" command output changed
22-
- register names use "sp" not "r13"
23-
- add top-level "mcr" and "mrc" commands, replacing
24-
various core-specific operations
25-
- basic semihosting support (ARM7/ARM9 only, for now)
26-
ARM11
27-
- Should act much more like other ARM cores:
28-
* Preliminary ETM and ETB hookup
29-
* accelerated "flash erase_check"
30-
* accelerated GDB memory checksum
31-
* support "arm regs" command
32-
* can access all core modes and registers
33-
* watchpoint support
34-
- Shares some core debug code with Cortex-A8
35-
Cortex-A8
36-
- Should act much more like other ARM cores:
37-
* support "arm regs" command
38-
* can access all core modes and registers
39-
* watchpoint support
40-
- Shares some core debug code with ARM11
41-
Cortex-M3
42-
- Exposed DWT registers like cycle counter
43-
- vector_catch settings not clobbered by resets
44-
- no longer interferes with firmware's fault handling
45-
ETM, ETB
46-
- "trigger_percent" command moved ETM --> ETB
47-
- "etm trigger_debug" command added
48-
MIPS
49-
- use fastdata writes
50-
Freescale DSP563xx cores (partial support)
5111

5212
Flash Layer:
53-
'flash bank' and 'nand device' take <bank_name> as first argument.
54-
With this, flash/NAND commands allow referencing banks by name:
55-
- <bank_name>: reference the bank with its defined name
56-
- <driver_name>[.N]: reference the driver's Nth bank
57-
New 'nand verify' command to check bank against an image file.
58-
The "flash erase_address" command now rejects partial sectors;
59-
previously it would silently erase extra data. If you
60-
want to erase the rest of the first and/or last sectors
61-
instead of failing, you must pass an explicit "pad" flag.
62-
New at91sam9 NAND controller driver.
63-
New s3c64xx NAND controller driver.
6413

6514
Board, Target, and Interface Configuration Scripts:
66-
ARM9
67-
- ETM and ETB hookup for iMX2* targets
68-
Add $HOME/.openocd to the search path.
69-
Handle Rev C of LM3S811 eval boards.
70-
- use "luminary-lm3s811.cfg" for older boards
71-
- use "luminary.cfg" for RevC and newer
7215

7316
Core Jim/TCL Scripting:
74-
New 'usage' command to provide terse command help.
75-
Improved command 'help' command output (sorted and indented).
76-
Improved command handling:
77-
- Most boolean settings now accept any of the following:
78-
on/off, enable/disable, true/false, yes/no, 1/0
79-
- More error checking and reporting.
8017

8118
Documentation:
82-
New built-in command development documentation and primer.
8319

8420
Build and Release:
85-
Use --enable-doxygen-pdf to build PDF developer documentation.
86-
Consider upgrading to libftdi 0.17 if you use that library; it
87-
includes bugfixes which improve FT2232H support.
8821

8922
For more details about what has changed since the last release,
9023
see the git repository history. With gitweb, you can browse that
@@ -96,3 +29,4 @@ For older NEWS, see the NEWS files associated with each release
9629
For more information about contributing test reports, bug fixes, or new
9730
features and device support, please read the new Developer Manual (or
9831
the BUGS and PATCHES.txt files in the source archive).
32+

NEWS-0.4.0

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
This file includes highlights of the changes made in the
2+
OpenOCD 0.4.0 source archive release. See the repository
3+
history for details about what changed, including bugfixes
4+
and other issues not mentioned here.
5+
6+
JTAG Layer:
7+
Support KT-Link JTAG adapter.
8+
Support USB-JTAG, Altera USB-Blaster and compatibles.
9+
10+
Boundary Scan:
11+
12+
Target Layer:
13+
General
14+
- Removed commands which have been obsolete for at least
15+
a year (from both documentation and, sometimes, code).
16+
- new "reset-assert" event, for systems without SRST
17+
ARM
18+
- supports "reset-assert" event (except on Cortex-M3)
19+
- renamed "armv4_5" command prefix as "arm"
20+
- recognize TrustZone "Secure Monitor" mode
21+
- "arm regs" command output changed
22+
- register names use "sp" not "r13"
23+
- add top-level "mcr" and "mrc" commands, replacing
24+
various core-specific operations
25+
- basic semihosting support (ARM7/ARM9 only, for now)
26+
ARM11
27+
- Should act much more like other ARM cores:
28+
* Preliminary ETM and ETB hookup
29+
* accelerated "flash erase_check"
30+
* accelerated GDB memory checksum
31+
* support "arm regs" command
32+
* can access all core modes and registers
33+
* watchpoint support
34+
- Shares some core debug code with Cortex-A8
35+
Cortex-A8
36+
- Should act much more like other ARM cores:
37+
* support "arm regs" command
38+
* can access all core modes and registers
39+
* watchpoint support
40+
- Shares some core debug code with ARM11
41+
Cortex-M3
42+
- Exposed DWT registers like cycle counter
43+
- vector_catch settings not clobbered by resets
44+
- no longer interferes with firmware's fault handling
45+
ETM, ETB
46+
- "trigger_percent" command moved ETM --> ETB
47+
- "etm trigger_debug" command added
48+
MIPS
49+
- use fastdata writes
50+
Freescale DSP563xx cores (partial support)
51+
52+
Flash Layer:
53+
'flash bank' and 'nand device' take <bank_name> as first argument.
54+
With this, flash/NAND commands allow referencing banks by name:
55+
- <bank_name>: reference the bank with its defined name
56+
- <driver_name>[.N]: reference the driver's Nth bank
57+
New 'nand verify' command to check bank against an image file.
58+
The "flash erase_address" command now rejects partial sectors;
59+
previously it would silently erase extra data. If you
60+
want to erase the rest of the first and/or last sectors
61+
instead of failing, you must pass an explicit "pad" flag.
62+
New at91sam9 NAND controller driver.
63+
New s3c64xx NAND controller driver.
64+
65+
Board, Target, and Interface Configuration Scripts:
66+
ARM9
67+
- ETM and ETB hookup for iMX2* targets
68+
Add $HOME/.openocd to the search path.
69+
Handle Rev C of LM3S811 eval boards.
70+
- use "luminary-lm3s811.cfg" for older boards
71+
- use "luminary.cfg" for RevC and newer
72+
73+
Core Jim/TCL Scripting:
74+
New 'usage' command to provide terse command help.
75+
Improved command 'help' command output (sorted and indented).
76+
Improved command handling:
77+
- Most boolean settings now accept any of the following:
78+
on/off, enable/disable, true/false, yes/no, 1/0
79+
- More error checking and reporting.
80+
81+
Documentation:
82+
New built-in command development documentation and primer.
83+
84+
Build and Release:
85+
Use --enable-doxygen-pdf to build PDF developer documentation.
86+
Consider upgrading to libftdi 0.17 if you use that library; it
87+
includes bugfixes which improve FT2232H support.
88+
89+
For more details about what has changed since the last release,
90+
see the git repository history. With gitweb, you can browse that
91+
in various levels of detail.
92+
93+
For older NEWS, see the NEWS files associated with each release
94+
(i.e. NEWS-<version>).
95+
96+
For more information about contributing test reports, bug fixes, or new
97+
features and device support, please read the new Developer Manual (or
98+
the BUGS and PATCHES.txt files in the source archive).

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ(2.60)
2-
AC_INIT([openocd], [0.4.0],
2+
AC_INIT([openocd], [0.5.0-dev],
33
[OpenOCD Mailing List <[email protected]>])
44
AC_CONFIG_SRCDIR([src/openocd.c])
55

0 commit comments

Comments
 (0)