All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] libfdt: Add version.lds file
@ 2009-01-02 13:19 Josh Boyer
       [not found] ` <20090102131951.GA8954-jnIq6iUNB1CO8iYQgJmm/0EOCMrvLtNR@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Josh Boyer @ 2009-01-02 13:19 UTC (permalink / raw)
  To: devicetree-discuss-mnsaURCQ41sdnm+yROfE0A

Add the initial symbol versioning file as groundwork for creating
a libfdt shared library

Signed-off-by: Josh Boyer <jwboyer-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
---
 libfdt/version.lds |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)
 create mode 100644 libfdt/version.lds

diff --git a/libfdt/version.lds b/libfdt/version.lds
new file mode 100644
index 0000000..3c3994e
--- /dev/null
+++ b/libfdt/version.lds
@@ -0,0 +1,54 @@
+LIBFDT_1.2 {
+	global:
+		fdt_next_node;
+		fdt_check_header;
+		fdt_move;
+		fdt_string;
+		fdt_num_mem_rsv;
+		fdt_get_mem_rsv;
+		fdt_subnode_offset_namelen;
+		fdt_subnode_offset;
+		fdt_path_offset;
+		fdt_get_name;
+		fdt_get_property_namelen;
+		fdt_get_property;
+		fdt_getprop_namelen;
+		fdt_getprop;
+		fdt_get_phandle;
+		fdt_get_alias_namelen;
+		fdt_get_alias;
+		fdt_get_path;
+		fdt_supernode_atdepth_offset;
+		fdt_node_depth;
+		fdt_parent_offset;
+		fdt_node_offset_by_prop_value;
+		fdt_node_offset_by_phandle;
+		fdt_node_check_compatible;
+		fdt_node_offset_by_compatible;
+		fdt_setprop_inplace;
+		fdt_nop_property;
+		fdt_nop_node;
+		fdt_create;
+		fdt_add_reservemap_entry;
+		fdt_finish_reservemap;
+		fdt_begin_node;
+		fdt_property;
+		fdt_end_node;
+		fdt_finish;
+		fdt_open_into;
+		fdt_pack;
+		fdt_add_mem_rsv;
+		fdt_del_mem_rsv;
+		fdt_set_name;
+		fdt_setprop;
+		fdt_delprop;
+		fdt_add_subnode_namelen;
+		fdt_add_subnode;
+		fdt_del_node;
+		fdt_strerror;
+		fdt_offset_ptr;
+		fdt_next_tag;
+
+	local:
+		*;
+};
-- 
1.6.0.6

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

* Re: [PATCH v2] libfdt: Add version.lds file
       [not found] ` <20090102131951.GA8954-jnIq6iUNB1CO8iYQgJmm/0EOCMrvLtNR@public.gmane.org>
@ 2009-01-02 15:38   ` Jon Loeliger
  2009-01-02 19:58   ` Matt Sealey
  1 sibling, 0 replies; 6+ messages in thread
From: Jon Loeliger @ 2009-01-02 15:38 UTC (permalink / raw)
  To: Josh Boyer; +Cc: devicetree-discuss-mnsaURCQ41sdnm+yROfE0A

> Add the initial symbol versioning file as groundwork for creating
> a libfdt shared library
> 
> Signed-off-by: Josh Boyer <jwboyer-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>

Applied.

Thanks,
jdl

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

* Re: [PATCH v2] libfdt: Add version.lds file
       [not found] ` <20090102131951.GA8954-jnIq6iUNB1CO8iYQgJmm/0EOCMrvLtNR@public.gmane.org>
  2009-01-02 15:38   ` Jon Loeliger
@ 2009-01-02 19:58   ` Matt Sealey
       [not found]     ` <495E71F9.9080809-sEEEE4iEDtaXzmuOJsdVMQ@public.gmane.org>
  1 sibling, 1 reply; 6+ messages in thread
From: Matt Sealey @ 2009-01-02 19:58 UTC (permalink / raw)
  To: Josh Boyer; +Cc: devicetree-discuss-mnsaURCQ41sdnm+yROfE0A

Josh Boyer wrote:
> Add the initial symbol versioning file as groundwork for creating
> a libfdt shared library

I fully understand I am being a bit naive right now but how on earth do 
I get this branch from the git repo?

Every time I try and clone anything I just get something approaching 
what 1.2.0 was released as :(

-- Matt Sealey, Genesi USA, Inc.

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

* Re: [PATCH v2] libfdt: Add version.lds file
       [not found]     ` <495E71F9.9080809-sEEEE4iEDtaXzmuOJsdVMQ@public.gmane.org>
@ 2009-01-02 20:23       ` Jon Loeliger
       [not found]         ` <E1LIqYa-0004cn-07-CYoMK+44s/E@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Jon Loeliger @ 2009-01-02 20:23 UTC (permalink / raw)
  To: Matt Sealey; +Cc: devicetree-discuss-mnsaURCQ41sdnm+yROfE0A

> Josh Boyer wrote:
> > Add the initial symbol versioning file as groundwork for creating
> > a libfdt shared library
> 
> I fully understand I am being a bit naive right now but how on earth do 
> I get this branch from the git repo?

Well, I added that to the repo, oh, a few hours ago...

> Every time I try and clone anything I just get something approaching 
> what 1.2.0 was released as :(

What command(s) are you using?

Thanks,
jdl

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

* Re: [PATCH v2] libfdt: Add version.lds file
       [not found]         ` <E1LIqYa-0004cn-07-CYoMK+44s/E@public.gmane.org>
@ 2009-01-03 19:12           ` Matt Sealey
       [not found]             ` <495FB885.4050808-sEEEE4iEDtaXzmuOJsdVMQ@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Sealey @ 2009-01-03 19:12 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: devicetree-discuss-mnsaURCQ41sdnm+yROfE0A

Jon Loeliger wrote:
>> Josh Boyer wrote:
>>> Add the initial symbol versioning file as groundwork for creating
>>> a libfdt shared library
>> I fully understand I am being a bit naive right now but how on earth do 
>> I get this branch from the git repo?
> 
> Well, I added that to the repo, oh, a few hours ago...
> 
>> Every time I try and clone anything I just get something approaching 
>> what 1.2.0 was released as :(
> 
> What command(s) are you using?

git clone http://www.jdl.com/software/dtc.git .. in fact I'm not even 
sure I'm using the right repo right now.

-- Matt

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

* Re: [PATCH v2] libfdt: Add version.lds file
       [not found]             ` <495FB885.4050808-sEEEE4iEDtaXzmuOJsdVMQ@public.gmane.org>
@ 2009-01-03 19:29               ` Jon Loeliger
  0 siblings, 0 replies; 6+ messages in thread
From: Jon Loeliger @ 2009-01-03 19:29 UTC (permalink / raw)
  To: Matt Sealey; +Cc: devicetree-discuss-mnsaURCQ41sdnm+yROfE0A

> > 
> > Well, I added that to the repo, oh, a few hours ago...
> > 
> >> Every time I try and clone anything I just get something approaching 
> >> what 1.2.0 was released as :(
> > 
> > What command(s) are you using?
> 
> git clone http://www.jdl.com/software/dtc.git .. in fact I'm not even 
> sure I'm using the right repo right now.

That should be fine.  Until just a few minutes ago,
the top of the tree was at:

    9878f30f311cb56d1ab1914670b38672476916ac

Which was on Nov 7.  Maybe 21 commits off of v1.2.0 or so.

So I pushed out the first two of Josh's three commits
and rebased the testing branch on top of that.
Add -f or + for the testing branch updates if desired.

HTH,
jdl

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

end of thread, other threads:[~2009-01-03 19:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-02 13:19 [PATCH v2] libfdt: Add version.lds file Josh Boyer
     [not found] ` <20090102131951.GA8954-jnIq6iUNB1CO8iYQgJmm/0EOCMrvLtNR@public.gmane.org>
2009-01-02 15:38   ` Jon Loeliger
2009-01-02 19:58   ` Matt Sealey
     [not found]     ` <495E71F9.9080809-sEEEE4iEDtaXzmuOJsdVMQ@public.gmane.org>
2009-01-02 20:23       ` Jon Loeliger
     [not found]         ` <E1LIqYa-0004cn-07-CYoMK+44s/E@public.gmane.org>
2009-01-03 19:12           ` Matt Sealey
     [not found]             ` <495FB885.4050808-sEEEE4iEDtaXzmuOJsdVMQ@public.gmane.org>
2009-01-03 19:29               ` Jon Loeliger

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.