All of lore.kernel.org
 help / color / mirror / Atom feed
* Patch for device tree compiler, export stringlist functions (resend as text/plain hopefully)
@ 2017-09-14 13:23 Huober, Reiner (Nokia - DE/Ulm)
       [not found] ` <DB6PR0701MB271276D697034D3480A0F2A7F96F0-5NEnem0e2WEkGHNhdFSn+TMcllmSiLMWnBOFsp37pqbUKgpGm//BTAC/G2K4zDHf@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Huober, Reiner (Nokia - DE/Ulm) @ 2017-09-14 13:23 UTC (permalink / raw)
  To: David Gibson, Jon Loeliger
  Cc: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA, Huober,
	Reiner (Nokia - DE/Ulm)

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

Hi

(resend as plain text hopefully)

I have a patch for libfdt inside the device tree compiler. It add missing exports to the linker script 

Br,
Reiner Huober

[-- Attachment #2: 0001-libfdt-add-stringlist-functions-to-linker-script.patch --]
[-- Type: application/octet-stream, Size: 795 bytes --]

From 48d01c74fbdfd12ffa4aa65cc92fd452952efc00 Mon Sep 17 00:00:00 2001
From: Reiner Huober <reiner.huober@nokia.com>
Date: Thu, 14 Sep 2017 14:36:07 +0200
Subject: [PATCH] libfdt: add stringlist functions to linker script

The fdt_stringlist_count, fdt_stringslist_search, and fdt_stringlist_get
are added to the libfdt linker script as global symbols
---
 libfdt/version.lds |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/libfdt/version.lds b/libfdt/version.lds
index cff0358..18fb69f 100644
--- a/libfdt/version.lds
+++ b/libfdt/version.lds
@@ -60,6 +60,9 @@ LIBFDT_1.2 {
 		fdt_address_cells;
 		fdt_size_cells;
 		fdt_stringlist_contains;
+		fdt_stringlist_count;
+		fdt_stringlist_search;
+		fdt_stringlist_get;
 		fdt_resize;
 		fdt_overlay_apply;
 
-- 
1.7.1


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

* Re: Patch for device tree compiler, export stringlist functions (resend as text/plain hopefully)
       [not found] ` <DB6PR0701MB271276D697034D3480A0F2A7F96F0-5NEnem0e2WEkGHNhdFSn+TMcllmSiLMWnBOFsp37pqbUKgpGm//BTAC/G2K4zDHf@public.gmane.org>
@ 2017-09-15  6:39   ` David Gibson
       [not found]     ` <20170915063950.GH5250-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: David Gibson @ 2017-09-15  6:39 UTC (permalink / raw)
  To: Huober, Reiner (Nokia - DE/Ulm)
  Cc: Jon Loeliger, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 652 bytes --]

On Thu, Sep 14, 2017 at 01:23:13PM +0000, Huober, Reiner (Nokia - DE/Ulm) wrote:
> Hi
> 
> (resend as plain text hopefully)

It came through as plain text ok, but for future reference, it's
preferred to include patches inline, rather than as an attachment.
> 
> I have a patch for libfdt inside the device tree compiler. It add
> missing exports to the linker script

Patch looks good, but I'll need a Signed-off-by line in order to apply
it.

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* RE: Patch for device tree compiler, export stringlist functions (resend as text/plain hopefully)
       [not found]     ` <20170915063950.GH5250-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
@ 2017-10-04 13:03       ` Huober, Reiner (Nokia - DE/Ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Huober, Reiner (Nokia - DE/Ulm) @ 2017-10-04 13:03 UTC (permalink / raw)
  To: David Gibson
  Cc: Jon Loeliger, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA,
	Schiele, Robert (Nokia - DE/Ulm), Huober, Reiner (Nokia - DE/Ulm)

Hi

>Patch looks good, but I'll need a Signed-off-by line in order to apply it.

Hopefully it is now ok
Reiner

From 48d01c74fbdfd12ffa4aa65cc92fd452952efc00 Mon Sep 17 00:00:00 2001
From: Reiner Huober <reiner.huober-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
Date: Thu, 14 Sep 2017 14:36:07 +0200
Subject: [PATCH] libfdt: add stringlist functions to linker script

The fdt_stringlist_count, fdt_stringslist_search, and fdt_stringlist_get
are added to the libfdt linker script as global symbols

Signed-off-by: Reiner Huober <reiner.huober-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
---
 libfdt/version.lds |    3 +++ 
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/libfdt/version.lds b/libfdt/version.lds
index cff0358..18fb69f 100644
--- a/libfdt/version.lds
+++ b/libfdt/version.lds
@@ -60,6 +60,9 @@ LIBFDT_1.2 {
        fdt_address_cells;
        fdt_size_cells;
        fdt_stringlist_contains;
+       fdt_stringlist_count;
+       fdt_stringlist_search;
+       fdt_stringlist_get;
        fdt_resize;
        fdt_overlay_apply;
 
-- 
1.7.1

-----Original Message-----
From: David Gibson [mailto:david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org] 
Sent: Friday, September 15, 2017 8:40 AM
To: Huober, Reiner (Nokia - DE/Ulm) <reiner.huober-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
Cc: Jon Loeliger <jdl-CYoMK+44s/E@public.gmane.org>; devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: Patch for device tree compiler, export stringlist functions (resend as text/plain hopefully)

On Thu, Sep 14, 2017 at 01:23:13PM +0000, Huober, Reiner (Nokia - DE/Ulm) wrote:
> Hi
> 
> (resend as plain text hopefully)

It came through as plain text ok, but for future reference, it's preferred to include patches inline, rather than as an attachment.
> 
> I have a patch for libfdt inside the device tree compiler. It add 
> missing exports to the linker script

Patch looks good, but I'll need a Signed-off-by line in order to apply it.

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

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

end of thread, other threads:[~2017-10-04 13:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-14 13:23 Patch for device tree compiler, export stringlist functions (resend as text/plain hopefully) Huober, Reiner (Nokia - DE/Ulm)
     [not found] ` <DB6PR0701MB271276D697034D3480A0F2A7F96F0-5NEnem0e2WEkGHNhdFSn+TMcllmSiLMWnBOFsp37pqbUKgpGm//BTAC/G2K4zDHf@public.gmane.org>
2017-09-15  6:39   ` David Gibson
     [not found]     ` <20170915063950.GH5250-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2017-10-04 13:03       ` Huober, Reiner (Nokia - DE/Ulm)

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.