Re: [PATCH rtems v3 1/1] Add the Regulator Interface and test

2023-08-11 Thread Joel Sherrill
Thanks. If you do turn up something once it is merged, there is always the
option to fix it. :)

Chris said I addressed his bigger concerns. Deletion and statistics.

On Fri, Aug 11, 2023 at 12:32 AM Sebastian Huber <
sebastian.hu...@embedded-brains.de> wrote:

> On 11.08.23 00:14, Joel Sherrill wrote:
> > I should have asked if you want another round of patches or just go
> > ahead and merge. This set of changes was pretty minor.
>
> This is fine, I had only some cosmetic things.
>
> --
> embedded brains GmbH
> Herr Sebastian HUBER
> Dornierstr. 4
> 82178 Puchheim
> Germany
> email: sebastian.hu...@embedded-brains.de
> phone: +49-89-18 94 741 - 16
> fax:   +49-89-18 94 741 - 08
>
> Registergericht: Amtsgericht München
> Registernummer: HRB 157899
> Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler
> Unsere Datenschutzerklärung finden Sie hier:
> https://embedded-brains.de/datenschutzerklaerung/
>
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

[PATCH] cpukit/libdl: AARCH64 unwind uses DWARF 2 tables

2023-08-11 Thread chrisj
From: Chris Johns 

Closes #4943
---
 cpukit/libdl/rtl-mdreloc-aarch64.c | 17 +
 spec/build/cpukit/objdlaarch64.yml |  1 -
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/cpukit/libdl/rtl-mdreloc-aarch64.c 
b/cpukit/libdl/rtl-mdreloc-aarch64.c
index 46f87e9178..15396c3de9 100644
--- a/cpukit/libdl/rtl-mdreloc-aarch64.c
+++ b/cpukit/libdl/rtl-mdreloc-aarch64.c
@@ -561,3 +561,20 @@ rtems_rtl_elf_relocate_rel (rtems_rtl_obj*obj,
   rtems_rtl_set_error (EINVAL, "rela type record not supported");
   return rtems_rtl_elf_rel_failure;
 }
+
+bool
+rtems_rtl_elf_unwind_parse (const rtems_rtl_obj* obj,
+const char*  name,
+uint32_t flags) {
+  return rtems_rtl_elf_unwind_dw2_parse (obj, name, flags);
+}
+
+bool
+rtems_rtl_elf_unwind_register (rtems_rtl_obj* obj) {
+  return rtems_rtl_elf_unwind_dw2_register (obj);
+}
+
+bool
+rtems_rtl_elf_unwind_deregister (rtems_rtl_obj* obj) {
+  return rtems_rtl_elf_unwind_dw2_deregister (obj);
+}
diff --git a/spec/build/cpukit/objdlaarch64.yml 
b/spec/build/cpukit/objdlaarch64.yml
index 1715eefd3a..2909a902f2 100644
--- a/spec/build/cpukit/objdlaarch64.yml
+++ b/spec/build/cpukit/objdlaarch64.yml
@@ -12,5 +12,4 @@ install: []
 links: []
 source:
 - cpukit/libdl/rtl-mdreloc-aarch64.c
-- cpukit/libdl/rtl-unwind-arm.c
 type: build
-- 
2.37.1

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel