Skip to content

Commit db87a2f

Browse files
committed
Archive and recreate NEWS file.
Archive released NEWS file as NEWS-0.5.0. Create new NEWS file from release script template.
1 parent 5920b15 commit db87a2f

File tree

2 files changed

+77
-54
lines changed

2 files changed

+77
-54
lines changed

NEWS

+3-54
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,14 @@
11
This file includes highlights of the changes made in the
2-
OpenOCD 0.5.0 source archive release. See the repository
3-
history for details about what changed, including bugfixes
4-
and other issues not mentioned here.
2+
OpenOCD source archive release. See the
3+
repository history for details about what changed, including
4+
bugfixes and other issues not mentioned here.
55

66
JTAG Layer:
7-
New driver for "Bus Pirate"
8-
Rename various commands so they're not JTAG-specific
9-
There are migration procedures for most of these, but you should
10-
convert your scripts to the new names, since those procedures
11-
will not be around forever.
12-
jtag jinterface ... is now adapter_name
13-
jtag_khz ... is now adapter_khz
14-
jtag_nsrst_delay ... is now adapter_nsrst_delay
15-
jtag_nsrst_assert_width ... is now adapter_nsrst_assert_width
16-
Support Voipac VPACLink JTAG Adapter.
17-
187
Boundary Scan:
19-
20-
Transport framework core ... supporting future work for SWD, SPI, and other
21-
non-JTAG ways to debug targets or program flash.
22-
238
Target Layer:
24-
ARM:
25-
- basic semihosting support for ARMv7M.
26-
- renamed "armv7m" command prefix as "arm"
27-
MIPS:
28-
- "ejtag_srst" variant removed. The same functionality is
29-
obtained by using "reset_config none".
30-
- added PIC32MX software reset support, this means srst is not
31-
required to be connected anymore.
32-
OTHER:
33-
- preliminary AVR32 AP7000 support.
34-
359
Flash Layer:
36-
New "stellaris recover" command, implements the procedure
37-
to recover locked devices (restoring non-volatile
38-
state to the factory defaults, including erasing
39-
the flash and its protection bits, and possibly
40-
re-enabling hardware debugging).
41-
PIC32MX now uses algorithm for flash programming, this
42-
has increased the performance by approx 96%.
43-
New 'pic32mx unlock' cmd to remove readout protection.
44-
New STM32 Value Line Support.
45-
New 'virtual' flash driver, used to associate other addresses
46-
with a flash bank. See pic32mx.cfg for usage.
47-
New iMX27 NAND flash controller driver.
48-
4910
Board, Target, and Interface Configuration Scripts:
50-
Support IAR LPC1768 kickstart board (by Olimex)
51-
Support Voipac PXA270/PXA270M module.
52-
New $PARPORTADDR tcl variable used to change default
53-
parallel port address used.
54-
Remove lm3s811.cfg; use "stellaris.cfg" instead
55-
56-
Core Jim/TCL Scripting:
57-
New "add_script_search_dir" command, behaviour is the same
58-
as the "-s" cmd line option.
59-
6011
Documentation:
61-
6212
Build and Release:
6313

6414
For more details about what has changed since the last release,
@@ -71,4 +21,3 @@ For older NEWS, see the NEWS files associated with each release
7121
For more information about contributing test reports, bug fixes, or new
7222
features and device support, please read the new Developer Manual (or
7323
the BUGS and PATCHES.txt files in the source archive).
74-

NEWS-0.5.0

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
This file includes highlights of the changes made in the
2+
OpenOCD 0.5.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+
New driver for "Bus Pirate"
8+
Rename various commands so they're not JTAG-specific
9+
There are migration procedures for most of these, but you should
10+
convert your scripts to the new names, since those procedures
11+
will not be around forever.
12+
jtag jinterface ... is now adapter_name
13+
jtag_khz ... is now adapter_khz
14+
jtag_nsrst_delay ... is now adapter_nsrst_delay
15+
jtag_nsrst_assert_width ... is now adapter_nsrst_assert_width
16+
Support Voipac VPACLink JTAG Adapter.
17+
18+
Boundary Scan:
19+
20+
Transport framework core ... supporting future work for SWD, SPI, and other
21+
non-JTAG ways to debug targets or program flash.
22+
23+
Target Layer:
24+
ARM:
25+
- basic semihosting support for ARMv7M.
26+
- renamed "armv7m" command prefix as "arm"
27+
MIPS:
28+
- "ejtag_srst" variant removed. The same functionality is
29+
obtained by using "reset_config none".
30+
- added PIC32MX software reset support, this means srst is not
31+
required to be connected anymore.
32+
OTHER:
33+
- preliminary AVR32 AP7000 support.
34+
35+
Flash Layer:
36+
New "stellaris recover" command, implements the procedure
37+
to recover locked devices (restoring non-volatile
38+
state to the factory defaults, including erasing
39+
the flash and its protection bits, and possibly
40+
re-enabling hardware debugging).
41+
PIC32MX now uses algorithm for flash programming, this
42+
has increased the performance by approx 96%.
43+
New 'pic32mx unlock' cmd to remove readout protection.
44+
New STM32 Value Line Support.
45+
New 'virtual' flash driver, used to associate other addresses
46+
with a flash bank. See pic32mx.cfg for usage.
47+
New iMX27 NAND flash controller driver.
48+
49+
Board, Target, and Interface Configuration Scripts:
50+
Support IAR LPC1768 kickstart board (by Olimex)
51+
Support Voipac PXA270/PXA270M module.
52+
New $PARPORTADDR tcl variable used to change default
53+
parallel port address used.
54+
Remove lm3s811.cfg; use "stellaris.cfg" instead
55+
56+
Core Jim/TCL Scripting:
57+
New "add_script_search_dir" command, behaviour is the same
58+
as the "-s" cmd line option.
59+
60+
Documentation:
61+
62+
Build and Release:
63+
64+
For more details about what has changed since the last release,
65+
see the git repository history. With gitweb, you can browse that
66+
in various levels of detail.
67+
68+
For older NEWS, see the NEWS files associated with each release
69+
(i.e. NEWS-<version>).
70+
71+
For more information about contributing test reports, bug fixes, or new
72+
features and device support, please read the new Developer Manual (or
73+
the BUGS and PATCHES.txt files in the source archive).
74+

0 commit comments

Comments
 (0)