Re: [PATCH v5 1/2] dtc: Plugin and fixup support

2015-10-21 Thread Pantelis Antoniou
Hi David, > On Oct 21, 2015, at 05:29 , David Gibson wrote: > > On Wed, Aug 26, 2015 at 09:44:33PM +0300, Pantelis Antoniou wrote: >> This patch enable the generation of symbols & local fixup information >> for trees compiled with the -@ (--symbols) option. >> &g

Re: [PATCH v5 0/2] dtc: Dynamic DT support

2015-09-07 Thread Pantelis Antoniou
Hi David, > On Sep 8, 2015, at 07:00 , David Gibson wrote: > > On Wed, Aug 26, 2015 at 09:44:32PM +0300, Pantelis Antoniou wrote: >> Enable the generation of symbol & fixup information for >> use with dynamic DT loading. >> >> Changes since

[PATCH v5 2/2] dtc: Document the dynamic plugin internals

2015-08-26 Thread Pantelis Antoniou
Provides the document explaining the internal mechanics of plugins and options. Signed-off-by: Pantelis Antoniou --- Documentation/dt-object-internal.txt | 317 +++ 1 file changed, 317 insertions(+) create mode 100644 Documentation/dt-object-internal.txt diff

[PATCH v5 1/2] dtc: Plugin and fixup support

2015-08-26 Thread Pantelis Antoniou
f-by: Pantelis Antoniou Signed-off-by: Sascha Hauer Signed-off-by: Jan Luebbe --- Documentation/manual.txt | 16 checks.c | 18 - dtc-lexer.l | 5 ++ dtc-parser.y | 54 +++-- dtc.c| 21 - dtc.h|

[PATCH v5 0/2] dtc: Dynamic DT support

2015-08-26 Thread Pantelis Antoniou
ward compatibility) Changes since v3: * Rebase to latest dtc version. Changes since v2: * Split single patch to a patchset. * Updated to dtc mainline. * Changed __local_fixups__ format * Clean up for better legibility. Pantelis Antoniou (2): dtc: Plugin and fixup support dtc: Document the dynamic pl

Re: [PATCH v4 3/3] dtc: Document the dynamic plugin internals

2015-03-04 Thread Pantelis Antoniou
Hi David, > On Mar 4, 2015, at 13:29 , David Gibson wrote: > > On Fri, Feb 27, 2015 at 08:55:46PM +0200, Pantelis Antoniou wrote: >> Provides the document explaining the internal mechanics of >> plugins and options. >> >> Signed-off-by: Pantelis Antoniou

Re: [PATCH v4 3/3] dtc: Document the dynamic plugin internals

2015-03-03 Thread Pantelis Antoniou
Hi Jan, > On Mar 3, 2015, at 15:42 , Jan Lübbe wrote: > > Hi Pantelis, > > On Fr, 2015-02-27 at 20:55 +0200, Pantelis Antoniou wrote: >> +3.b) The Device Tree fragments must be compiled with the same option but >> they >> +must also have a tag (/plugin/) th

[PATCH v4 3/3] dtc: Document the dynamic plugin internals

2015-02-27 Thread Pantelis Antoniou
Provides the document explaining the internal mechanics of plugins and options. Signed-off-by: Pantelis Antoniou --- Documentation/dt-object-internal.txt | 301 +++ 1 file changed, 301 insertions(+) create mode 100644 Documentation/dt-object-internal.txt diff

[PATCH v4 2/3] dtc: Plugin (object) device tree support.

2015-02-27 Thread Pantelis Antoniou
. Signed-off-by: Pantelis Antoniou --- Documentation/manual.txt | 5 checks.c | 45 -- dtc-lexer.l | 5 dtc-parser.y | 22 ++--- dtc.h| 12 + flattree.c | 63

[PATCH v4 1/3] dtc: Symbol and local fixup generation support

2015-02-27 Thread Pantelis Antoniou
tree loading. Signed-off-by: Pantelis Antoniou --- Documentation/manual.txt | 5 ++ checks.c | 61 + dtc.c| 9 ++- dtc.h| 28 ++ flattree.c | 139 ++

[PATCH v4 0/3] dtc: Dynamic DT support

2015-02-27 Thread Pantelis Antoniou
Enable the generation of symbol & fixup information for use with dynamic DT loading. Changes since v3: * Rebase to latest dtc version. Changes since v2: * Split single patch to a patchset. * Updated to dtc mainline. * Changed __local_fixups__ format * Clean up for better legibility. Pant