This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, next has been updated via eb600e3f40fe95b986ddee1ba80faed7c0953445 (commit) via 3b81cd95de391a0e846713adaf2df4ba73d48531 (commit) via 4e4dc3e4f331314f23eac818143cc82a4244b796 (commit) from de56e68c3d3b9206c105c2e3018294363ab2cd42 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit eb600e3f40fe95b986ddee1ba80faed7c0953445 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Thu Dec 28 11:15:46 2017 +0300
README: test are built by default
No need additional options now to build tests. Userguades options is also corrected.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/README b/README index beaef393..987d1481 100644 --- a/README +++ b/README @@ -26,12 +26,12 @@ Main git repository:
To execute all the testcases, assuming CUnit is installed for the validation tests: ./bootstrap - ./configure --enable-test-perf --enable-test-vald + ./configure make check
To generate the users guides: ./bootstrap - ./configure --enable-user-guide + ./configure --enable-user-guides make
Patches tracking system:
commit 3b81cd95de391a0e846713adaf2df4ba73d48531 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Thu Dec 28 10:52:54 2017 +0300
configure.ac: update API and .so version to v1.17.0.0
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/configure.ac b/configure.ac index 95e31602..177881a5 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.5]) # Set correct API version ########################################################################## m4_define([odpapi_generation_version], [1]) -m4_define([odpapi_major_version], [16]) +m4_define([odpapi_major_version], [17]) m4_define([odpapi_minor_version], [0]) m4_define([odpapi_point_version], [0]) m4_define([odpapi_version], @@ -36,10 +36,10 @@ AM_SILENT_RULES([yes]) # 3. if interfaces were removed, then use C+1:0:0 ##########################################################################
-ODP_LIBSO_VERSION=116:0:0 +ODP_LIBSO_VERSION=117:0:0 AC_SUBST(ODP_LIBSO_VERSION)
-ODPHELPER_LIBSO_VERSION=113:1:1 +ODPHELPER_LIBSO_VERSION=113:2:1 AC_SUBST(ODPHELPER_LIBSO_VERSION)
# Checks for programs.
commit 4e4dc3e4f331314f23eac818143cc82a4244b796 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Thu Dec 28 10:58:11 2017 +0300
docs: update git tree and bugs link
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/DEPENDENCIES b/DEPENDENCIES index 0805a183..6f374ca9 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -63,7 +63,7 @@ Prerequisites for building the OpenDataPlane (ODP) API $ make install
# You may now build either 32 or 64 bit ODP - $ git clone git://git.linaro.org/lng/odp.git odp + $ git clone https://github.com/Linaro/odp.git odp $ cd odp $ ./bootstrap
@@ -167,7 +167,7 @@ Prerequisites for building the OpenDataPlane (ODP) API $ sudo yum install numactl-devel
Note: only packet I/O is accelerated with DPDK. Use - https://git.linaro.org/lng/odp-dpdk.git + https://github.com/Linaro/odp-dpdk.git for fully accelerated odp dpdk platform.
3.4.1 Building DPDK and ODP with DPDK pktio support diff --git a/README b/README index 4350b953..beaef393 100644 --- a/README +++ b/README @@ -7,7 +7,7 @@ OpenDataPlane (ODP) project source code. http://www.opendataplane.org/
Main git repository: - git://git.linaro.org/lng/odp.git + https://github.com/Linaro/odp.git
How to build: Look in platform/linux-*/README for more detail how to build. @@ -35,7 +35,10 @@ Main git repository: make
Patches tracking system: - http://patches.opendataplane.org/project/lng-odp/list/ + Patchwork: + http://patches.opendataplane.org/project/lng-odp/list/ + Github pull requests: + https://github.com/Linaro/odp/pulls
Mailing list: lng-odp@lists.linaro.org diff --git a/doc/application-api-guide/odp.dox b/doc/application-api-guide/odp.dox index 57921794..72fcfb37 100644 --- a/doc/application-api-guide/odp.dox +++ b/doc/application-api-guide/odp.dox @@ -37,8 +37,8 @@ * * @section contact Contact Details * - The main web site is http://www.opendataplane.org/ - * - The git repo is https://git.linaro.org/lng/odp.git - * - Bug tracking is https://bugs.linaro.org/buglist.cgi?product=OpenDataPlane + * - The git repo is https://github.com/Linaro/odp.git + * - Bug tracking is https://bugs.linaro.org/describecomponents.cgi?product=OpenDataPlane%20-%20l... * */
diff --git a/doc/helper-guide/odp.dox b/doc/helper-guide/odp.dox index 0a86d478..79f4121b 100644 --- a/doc/helper-guide/odp.dox +++ b/doc/helper-guide/odp.dox @@ -20,7 +20,7 @@ * * @section contact Contact Details * - The main web site is http://www.opendataplane.org/ - * - The git repo is https://git.linaro.org/lng/odp.git - * - Bug tracking is https://bugs.linaro.org/buglist.cgi?product=OpenDataPlane + * - The git repo is https://github.com/Linaro/odp.git + * - Bug tracking is https://bugs.linaro.org/describecomponents.cgi?product=OpenDataPlane%20-%20l... * */ diff --git a/platform/linux-generic/Makefile.am b/platform/linux-generic/Makefile.am index fd5f72c1..7e40448b 100644 --- a/platform/linux-generic/Makefile.am +++ b/platform/linux-generic/Makefile.am @@ -1,5 +1,5 @@ # Uncomment this if you need to change the CUSTOM_STR string -#export CUSTOM_STR=https://git.linaro.org/lng/odp.git +#export CUSTOM_STR=https://github.com/Linaro/odp.git
include $(top_srcdir)/platform/Makefile.inc
-----------------------------------------------------------------------
Summary of changes: DEPENDENCIES | 4 ++-- README | 11 +++++++---- configure.ac | 6 +++--- doc/application-api-guide/odp.dox | 4 ++-- doc/helper-guide/odp.dox | 4 ++-- platform/linux-generic/Makefile.am | 2 +- 6 files changed, 17 insertions(+), 14 deletions(-)
hooks/post-receive