All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07
@ 2021-09-20 15:04 Ross Burton
  2021-09-20 15:05 ` [PATCH 2/2] CI: don't build the binary toolchains in bootstrap Ross Burton
  2021-09-21 19:00 ` [meta-arm] [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07 Denys Dmytriyenko
  0 siblings, 2 replies; 3+ messages in thread
From: Ross Burton @ 2021-09-20 15:04 UTC (permalink / raw)
  To: meta-arm

Change-Id: Ie58f448511ef4f1d23cfd4a9d1dc275f7a216a50
Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 ...10.2-2020.11.bb => gcc-aarch64-none-elf_10.3-2021.07.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-arm-toolchain/recipes-devtools/external-arm-toolchain/{gcc-aarch64-none-elf_10.2-2020.11.bb => gcc-aarch64-none-elf_10.3-2021.07.bb} (80%)

diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.2-2020.11.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.3-2021.07.bb
similarity index 80%
rename from meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.2-2020.11.bb
rename to meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.3-2021.07.bb
index fabe1b16..c1758a33 100644
--- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.2-2020.11.bb
+++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.3-2021.07.bb
@@ -9,14 +9,14 @@ SUMMARY = "Baremetal GCC for Aarch64 processors"
 LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
 
 LIC_FILES_CHKSUM = "${@d.getVar(d.expand("LIC_FILES_CHKSUM_${HOST_ARCH}"))}"
-LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=fdf39a58ab6e893f3d83594cef77fa05"
+LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=d06ace534ed0851debcb7140c5b5116e"
 LIC_FILES_CHKSUM:x86-64 = "file://share/doc/gcc/Copying.html;md5=e4bcb5bee0c4a50c06704b0b73fcbe0c"
 
 PROVIDES = "virtual/aarch64-none-elf-gcc"
 
 SRC_URI = "https://developer.arm.com/-/media/Files/downloads/gnu-a/${PV}/binrel/gcc-arm-${PV}-${HOST_ARCH}-${BINNAME}.tar.xz;name=gnu-a-${HOST_ARCH}"
-SRC_URI[gnu-a-x86_64.sha256sum] = "32abfbc7b24c56542f2a6e6969d6b8787e47f7223e8f2097d84151ebd9f86743"
-SRC_URI[gnu-a-aarch64.sha256sum] = "4f9f060e2ca993ec9564054e17b6fdeacb47260e983f766f84f157d00345bf29"
+SRC_URI[gnu-a-aarch64.sha256sum] = "768a5db41d93f48838f1c4bfeae26930df2320c09f0dfa798321082fb937955f"
+SRC_URI[gnu-a-x86_64.sha256sum] = "6f74b1ee370caeb716688d2e467e5b44727fdc0ed56023fe5c72c0620019ecef"
 
 S = "${WORKDIR}/gcc-arm-${PV}-${HOST_ARCH}-${BINNAME}"
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] CI: don't build the binary toolchains in bootstrap
  2021-09-20 15:04 [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07 Ross Burton
@ 2021-09-20 15:05 ` Ross Burton
  2021-09-21 19:00 ` [meta-arm] [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07 Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Ross Burton @ 2021-09-20 15:05 UTC (permalink / raw)
  To: meta-arm

This job just exercises the binary toolchain packages, so there's no
need to do it in the bootstrap stage.

Change-Id: I9d1697791a1e427d594bd8d99c5cad45961f4c5b
Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 .gitlab-ci.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ae2b3468..6e8eed52 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -68,10 +68,6 @@ machine-coverage:
   - ./ci/check-machine-coverage
   coverage: '/Coverage: \d+/'
 
-toolchains:
-  extends: .build
-  stage: bootstrap
-
 #
 # Build stage, the actual build jobs
 #
@@ -191,6 +187,9 @@ tc0:
 tc1:
   extends: .build
 
+toolchains:
+  extends: .build
+
 
 #
 # Utility tasks, not executed automatically
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-arm] [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07
  2021-09-20 15:04 [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07 Ross Burton
  2021-09-20 15:05 ` [PATCH 2/2] CI: don't build the binary toolchains in bootstrap Ross Burton
@ 2021-09-21 19:00 ` Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2021-09-21 19:00 UTC (permalink / raw)
  To: Ross Burton; +Cc: meta-arm

On Mon, Sep 20, 2021 at 04:04:59PM +0100, Ross Burton wrote:
> Change-Id: Ie58f448511ef4f1d23cfd4a9d1dc275f7a216a50
> Signed-off-by: Ross Burton <ross.burton@arm.com>
> ---
>  ...10.2-2020.11.bb => gcc-aarch64-none-elf_10.3-2021.07.bb} | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>  rename meta-arm-toolchain/recipes-devtools/external-arm-toolchain/{gcc-aarch64-none-elf_10.2-2020.11.bb => gcc-aarch64-none-elf_10.3-2021.07.bb} (80%)
> 
> diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.2-2020.11.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.3-2021.07.bb
> similarity index 80%
> rename from meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.2-2020.11.bb
> rename to meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.3-2021.07.bb
> index fabe1b16..c1758a33 100644
> --- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.2-2020.11.bb
> +++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_10.3-2021.07.bb
> @@ -9,14 +9,14 @@ SUMMARY = "Baremetal GCC for Aarch64 processors"
>  LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
>  
>  LIC_FILES_CHKSUM = "${@d.getVar(d.expand("LIC_FILES_CHKSUM_${HOST_ARCH}"))}"
> -LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=fdf39a58ab6e893f3d83594cef77fa05"
> +LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=d06ace534ed0851debcb7140c5b5116e"

I'm curious, what was the reason for the license change?


>  LIC_FILES_CHKSUM:x86-64 = "file://share/doc/gcc/Copying.html;md5=e4bcb5bee0c4a50c06704b0b73fcbe0c"
>  
>  PROVIDES = "virtual/aarch64-none-elf-gcc"
>  
>  SRC_URI = "https://developer.arm.com/-/media/Files/downloads/gnu-a/${PV}/binrel/gcc-arm-${PV}-${HOST_ARCH}-${BINNAME}.tar.xz;name=gnu-a-${HOST_ARCH}"
> -SRC_URI[gnu-a-x86_64.sha256sum] = "32abfbc7b24c56542f2a6e6969d6b8787e47f7223e8f2097d84151ebd9f86743"
> -SRC_URI[gnu-a-aarch64.sha256sum] = "4f9f060e2ca993ec9564054e17b6fdeacb47260e983f766f84f157d00345bf29"
> +SRC_URI[gnu-a-aarch64.sha256sum] = "768a5db41d93f48838f1c4bfeae26930df2320c09f0dfa798321082fb937955f"
> +SRC_URI[gnu-a-x86_64.sha256sum] = "6f74b1ee370caeb716688d2e467e5b44727fdc0ed56023fe5c72c0620019ecef"
>  
>  S = "${WORKDIR}/gcc-arm-${PV}-${HOST_ARCH}-${BINNAME}"
>  
> -- 
> 2.25.1
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-09-21 19:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-20 15:04 [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07 Ross Burton
2021-09-20 15:05 ` [PATCH 2/2] CI: don't build the binary toolchains in bootstrap Ross Burton
2021-09-21 19:00 ` [meta-arm] [PATCH 1/2] arm-toolchain/gcc-aarch64-none-elf: upgrade to 10.3-2021.07 Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.