mirror of
https://github.com/openocd-org/openocd.git
synced 2025-10-17 07:52:22 +08:00
Compare commits
4 Commits
v0.10.0-rc
...
v0.10.0
Author | SHA1 | Date | |
---|---|---|---|
![]() |
646566e006 | ||
![]() |
0e7bcf850b | ||
![]() |
59820c18d0 | ||
![]() |
1c4aa20b21 |
2
NEWS
2
NEWS
@@ -144,7 +144,7 @@ This release also contains a number of other important functional and
|
||||
cosmetic bugfixes. For more details about what has changed since the
|
||||
last release, see the git repository history:
|
||||
|
||||
http://sourceforge.net/p/openocd/code/ci/v0.10.0-rc2/log/?path=
|
||||
http://sourceforge.net/p/openocd/code/ci/v0.10.0/log/?path=
|
||||
|
||||
|
||||
For older NEWS, see the NEWS files associated with each release
|
||||
|
@@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.64)
|
||||
AC_INIT([openocd], [0.10.0-rc2],
|
||||
AC_INIT([openocd], [0.10.0],
|
||||
[OpenOCD Mailing List <openocd-devel@lists.sourceforge.net>])
|
||||
AC_CONFIG_SRCDIR([src/openocd.c])
|
||||
|
||||
|
@@ -972,11 +972,14 @@ int arm_dpm_setup(struct arm_dpm *dpm)
|
||||
arm->read_core_reg = arm_dpm_read_core_reg;
|
||||
arm->write_core_reg = arm_dpm_write_core_reg;
|
||||
|
||||
cache = arm_build_reg_cache(target, arm);
|
||||
if (!cache)
|
||||
return ERROR_FAIL;
|
||||
/* avoid duplicating the register cache */
|
||||
if (arm->core_cache == NULL) {
|
||||
cache = arm_build_reg_cache(target, arm);
|
||||
if (!cache)
|
||||
return ERROR_FAIL;
|
||||
|
||||
*register_get_last_cache_p(&target->reg_cache) = cache;
|
||||
*register_get_last_cache_p(&target->reg_cache) = cache;
|
||||
}
|
||||
|
||||
/* coprocessor access setup */
|
||||
arm->mrc = dpm_mrc;
|
||||
|
Reference in New Issue
Block a user