meta-arm.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag
@ 2023-02-20 15:48 Ross Burton
  2023-02-20 15:48 ` [PATCH 2/2] arm/optee-os: add missing patch header Ross Burton
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ross Burton @ 2023-02-20 15:48 UTC (permalink / raw)
  To: meta-arm; +Cc: nd

---
 .../gcc/gcc-arm-12.2/0026-rust-recursion-limit.patch             | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-12.2/0026-rust-recursion-limit.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-12.2/0026-rust-recursion-limit.patch
index bbe2f18f..e13a9962 100644
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-12.2/0026-rust-recursion-limit.patch
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-12.2/0026-rust-recursion-limit.patch
@@ -9,6 +9,7 @@ libiberty/
 	* rust-demangle.c (demangle_const): Add recursion limit.
 
 Upstream-Status: Backport [https://gcc.gnu.org/git/gitweb.cgi?p=gcc.git;h=9234cdca6ee88badfc00297e72f13dac4e540c79]
+Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
 ---
  libiberty/rust-demangle.c | 29 ++++++++++++++++++++---------
  1 file changed, 20 insertions(+), 9 deletions(-)
-- 
2.34.1



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

* [PATCH 2/2] arm/optee-os: add missing patch header
  2023-02-20 15:48 [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Ross Burton
@ 2023-02-20 15:48 ` Ross Burton
  2023-02-21 13:59 ` [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Jon Mason
  2023-02-22 16:37 ` Jon Mason
  2 siblings, 0 replies; 4+ messages in thread
From: Ross Burton @ 2023-02-20 15:48 UTC (permalink / raw)
  To: meta-arm; +Cc: nd

---
 .../0008-no-warn-rwx-segments.patch           | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/meta-arm/recipes-security/optee/optee-os-3.19.0/0008-no-warn-rwx-segments.patch b/meta-arm/recipes-security/optee/optee-os-3.19.0/0008-no-warn-rwx-segments.patch
index 2dc797b3..64a3d7e5 100644
--- a/meta-arm/recipes-security/optee/optee-os-3.19.0/0008-no-warn-rwx-segments.patch
+++ b/meta-arm/recipes-security/optee/optee-os-3.19.0/0008-no-warn-rwx-segments.patch
@@ -1,3 +1,24 @@
+From cf2a2451f4e9300532d677bb3a8315494a3b3a82 Mon Sep 17 00:00:00 2001
+From: Jerome Forissier <jerome.forissier@linaro.org>
+Date: Fri, 5 Aug 2022 09:48:03 +0200
+Subject: [PATCH] core: link: add --no-warn-rwx-segments
+
+Signed-off-by: Anton Antonov <Anton.Antonov@arm.com>
+Upstream-Status: Backport [https://github.com/OP-TEE/optee_os/pull/5474]
+
+binutils ld.bfd generates one RWX LOAD segment by merging several sections
+with mixed R/W/X attributes (.text, .rodata, .data). After version 2.38 it
+also warns by default when that happens [1], which breaks the build due to
+--fatal-warnings. The RWX segment is not a problem for the TEE core, since
+that information is not used to set memory permissions. Therefore, silence
+the warning.
+
+Link: [1] https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=ba951afb99912da01a6e8434126b8fac7aa75107
+Link: https://sourceware.org/bugzilla/show_bug.cgi?id=29448
+Reported-by: Dominique Martinet <dominique.martinet@atmark-techno.com>
+Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
+Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
+
 diff --git a/core/arch/arm/kernel/link.mk b/core/arch/arm/kernel/link.mk
 index 0e96e606c..3fbcb6804 100644
 --- a/core/arch/arm/kernel/link.mk
-- 
2.34.1



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

* Re: [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag
  2023-02-20 15:48 [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Ross Burton
  2023-02-20 15:48 ` [PATCH 2/2] arm/optee-os: add missing patch header Ross Burton
@ 2023-02-21 13:59 ` Jon Mason
  2023-02-22 16:37 ` Jon Mason
  2 siblings, 0 replies; 4+ messages in thread
From: Jon Mason @ 2023-02-21 13:59 UTC (permalink / raw)
  To: meta-arm, Ross Burton; +Cc: nd

On Mon, 20 Feb 2023 15:48:40 +0000, Ross Burton wrote:
> 


Applied, thanks!

[1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag
      commit: 69b73682b3b7c691716e6baaf50fee9a98548ef2
[2/2] arm/optee-os: add missing patch header
      commit: 047be751caf26735bb1de2b7d6ad296d9dbe7ce9

Best regards,
-- 
Jon Mason <jon.mason@arm.com>


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

* Re: [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag
  2023-02-20 15:48 [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Ross Burton
  2023-02-20 15:48 ` [PATCH 2/2] arm/optee-os: add missing patch header Ross Burton
  2023-02-21 13:59 ` [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Jon Mason
@ 2023-02-22 16:37 ` Jon Mason
  2 siblings, 0 replies; 4+ messages in thread
From: Jon Mason @ 2023-02-22 16:37 UTC (permalink / raw)
  To: meta-arm, Ross Burton; +Cc: nd

On Mon, 20 Feb 2023 15:48:40 +0000, Ross Burton wrote:
> 


Applied, thanks!

[1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag
      commit: 69b73682b3b7c691716e6baaf50fee9a98548ef2
[2/2] arm/optee-os: add missing patch header
      commit: 047be751caf26735bb1de2b7d6ad296d9dbe7ce9

Best regards,
-- 
Jon Mason <jon.mason@arm.com>


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

end of thread, other threads:[~2023-02-22 16:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-20 15:48 [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Ross Burton
2023-02-20 15:48 ` [PATCH 2/2] arm/optee-os: add missing patch header Ross Burton
2023-02-21 13:59 ` [PATCH 1/2] arm-toolchain/gcc-arm: add missing Signed-off-by tag Jon Mason
2023-02-22 16:37 ` Jon Mason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).