aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2017-10-12 11:31:01 +0100
committerMike Leach <mike.leach@linaro.org>2017-10-12 11:40:12 +0100
commitdd48085b3f615488b4069259c90b5ade613de21b (patch)
tree589fd44c99974fc849f6c1b37994f990112e1d6e
parentcfe2a078eafc8d95ec4ad3719f84c633b55e8668 (diff)
opencsd: Version update for 0.7.4v0.7.4
Update docs to reflect the removal of the opencsd-perf kernel trees from the main OpenCSD repository to a new dedicated repository. gcc 6.x build warning fixes. Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md19
-rw-r--r--decoder/include/ocsd_if_version.h4
2 files changed, 10 insertions, 13 deletions
diff --git a/README.md b/README.md
index 713231256457..adadf87c1c22 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Releases will appear on the master branch in the git repository with an appropri
CoreSight Trace Component Support.
----------------------------------
-_Current Version 0.7.3_
+_Current Version 0.7.4_
### Current support:
@@ -52,18 +52,14 @@ output packet.
Note on the Git Repository.
---------------------------
-At present, the git repository for OpenCSD contains both branches/tags for the OpenCSD library itself, and branches that
-have the perf updates that are not yet upstream in the main linux tree for using perf to record and decode trace.
+This git repository for OpenCSD contains only source for the OpenCSD decoder library.
+From version 0.4, releases appear as versioned tags on the master branch.
-These perf branches are snapshots of the kernel tree and are thus quite large.
-It is advised if only the OpenCSD library is required, clone only selected branches.
-Otherwise, downloading may take some time.
+From version 0.7.4, the required updates to CoreSight drivers and perf, that are not
+currently upstream in the linux kernel tree, are now contained in a separate
+repository to be found at:
-e.g.
-
- git clone -b opencsd-0v003 --single-branch https://github.com/Linaro/OpenCSD
-
-(From version 0.4, releases appear as versioned tags on the master branch.)
+https://github.com/Linaro/perf-opencsd
Documentation
@@ -114,6 +110,7 @@ Version and Modification Information
- _Version 0.7.1_: Bugfix: ETMv3 packet processor.
- _Version 0.7.2_: Bugfix: ETMv4 decoder - fix exact match packet address follower.
- _Version 0.7.3_: Bugfix: PTM decoder - issues with initialisation and ASYNC detection.
+- _Version 0.7.4_: Notification of change of repository for perf extensions. gcc 6.x build fixes.
Licence Information
===================
diff --git a/decoder/include/ocsd_if_version.h b/decoder/include/ocsd_if_version.h
index 19492bdf8a0c..de12fb396e84 100644
--- a/decoder/include/ocsd_if_version.h
+++ b/decoder/include/ocsd_if_version.h
@@ -44,7 +44,7 @@
@{*/
#define OCSD_VER_MAJOR 0x0 /**< Library Major Version */
#define OCSD_VER_MINOR 0x7 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x3 /**< Library Patch Version */
+#define OCSD_VER_PATCH 0x4 /**< Library Patch Version */
/** Library version number - MMMMnnpp format.
MMMM = major version,
@@ -53,7 +53,7 @@
*/
#define OCSD_VER_NUM (((uint32_t)OCSD_VER_MAJOR << 16) | ((uint32_t)OCSD_VER_MINOR << 8) | ((uint32_t)OCSD_VER_PATCH))
-#define OCSD_VER_STRING "0.7.3" /**< Library Version string */
+#define OCSD_VER_STRING "0.7.4" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/