[dpdk-stable] patch 'doc: update cross Arm toolchain in Linux guide' has been queued to LTS release 18.11.2

Kevin Traynor ktraynor at redhat.com
Tue Apr 16 16:37:09 CEST 2019


Hi,

FYI, your patch has been queued to LTS release 18.11.2

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 04/24/19. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Thanks.

Kevin Traynor

---
>From bf4c8b92ef6c06fd4788ef75871ed804583b79ae Mon Sep 17 00:00:00 2001
From: Joyce Kong <joyce.kong at arm.com>
Date: Mon, 11 Mar 2019 11:05:14 +0800
Subject: [PATCH] doc: update cross Arm toolchain in Linux guide

[ upstream commit c5b72f6827538425c32a2b11742376d2a13bfa1b ]

Update cross build tool links as newer cross build tools
version are provided on Linaro, and attempts to download
the old one give permission denied.

Fixes: 01add9da25cd ("doc: add cross compiling guide")

Signed-off-by: Joyce Kong <joyce.kong at arm.com>
Acked-by: Stephen Hemminger <sthemmin at microsoft.com>
Acked-by: Jerin Jacob <jerinj at marvell.com>
---
 .../linux_gsg/cross_build_dpdk_for_arm64.rst     | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
index 9d1f0fa00..fd7a46c80 100644
--- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
+++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
@@ -15,11 +15,11 @@ Obtain the cross tool chain
 ---------------------------
 The latest cross compile tool chain can be downloaded from:
-https://releases.linaro.org/components/toolchain/binaries/latest/aarch64-linux-gnu/.
+https://developer.arm.com/open-source/gnu-toolchain/gnu-a/downloads.
 
-Following is the step to get the version 7.2.1, latest one at the time of this writing.
+Following is the step to get the version 8.2, latest one at the time of this writing.
 
 .. code-block:: console
 
-   wget https://releases.linaro.org/components/toolchain/binaries/latest/aarch64-linux-gnu/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu.tar.xz
+   wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.2-2019.01/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu.tar.xz
 
 Unzip and add into the PATH
@@ -28,10 +28,10 @@ Unzip and add into the PATH
 .. code-block:: console
 
-   tar -xvf gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu.tar.xz
-   export PATH=$PATH:<cross_install_dir>/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/bin
+   tar -xvf gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu.tar.xz
+   export PATH=$PATH:<cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin
 
 .. note::
 
-   For the host requirements and other info, refer to the release note section: https://releases.linaro.org/components/toolchain/binaries/latest/
+   For the host requirements and other info, refer to the release note section: https://releases.linaro.org/components/toolchain/binaries/
 
 Getting the prerequisite library
@@ -70,6 +70,6 @@ Copy the NUMA header files and lib to the cross compiler's directories:
 .. code-block:: console
 
-   cp <numa_install_dir>/include/numa*.h <cross_install_dir>/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/
-   cp <numa_install_dir>/lib/libnuma.a <cross_install_dir>/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/lib/gcc/aarch64-linux-gnu/7.2.1/
+   cp <numa_install_dir>/include/numa*.h <cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/
+   cp <numa_install_dir>/lib/libnuma.a <cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/lib/gcc/aarch64-linux-gnu/8.2/
 
 .. _configure_and_cross_compile_dpdk_build:
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2019-04-16 15:34:27.483041524 +0100
+++ 0051-doc-update-cross-Arm-toolchain-in-Linux-guide.patch	2019-04-16 15:34:25.231178818 +0100
@@ -1,14 +1,15 @@
-From c5b72f6827538425c32a2b11742376d2a13bfa1b Mon Sep 17 00:00:00 2001
+From bf4c8b92ef6c06fd4788ef75871ed804583b79ae Mon Sep 17 00:00:00 2001
 From: Joyce Kong <joyce.kong at arm.com>
 Date: Mon, 11 Mar 2019 11:05:14 +0800
 Subject: [PATCH] doc: update cross Arm toolchain in Linux guide
 
+[ upstream commit c5b72f6827538425c32a2b11742376d2a13bfa1b ]
+
 Update cross build tool links as newer cross build tools
 version are provided on Linaro, and attempts to download
 the old one give permission denied.
 
 Fixes: 01add9da25cd ("doc: add cross compiling guide")
-Cc: stable at dpdk.org
 
 Signed-off-by: Joyce Kong <joyce.kong at arm.com>
 Acked-by: Stephen Hemminger <sthemmin at microsoft.com>
@@ -18,7 +19,7 @@
  1 file changed, 8 insertions(+), 8 deletions(-)
 
 diff --git a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
-index 270a60674..f19e2edad 100644
+index 9d1f0fa00..fd7a46c80 100644
 --- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
 +++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
 @@ -15,11 +15,11 @@ Obtain the cross tool chain


More information about the stable mailing list