RE: 2 cross-development toochain quesions

2011-06-08 Thread Bernard Ogden
Thanks both. -Original Message- From: Michael Hope [mailto:michael.h...@linaro.org] Sent: 06 June 2011 22:35 To: Bernard Ogden Cc: linaro-dev@lists.linaro.org; Vinod Krishnamoni; Pawel Moll Subject: Re: 2 cross-development toochain quesions On Sat, Jun 4, 2011 at 3:02 AM, Bernard Ogden w

Arm porting jam today (14:00 - 18.00 UTC)

2011-06-08 Thread Riku Voipio
Hi, Linaro Developer Platform team organises every week (Wednesday 14:00 - 18:00 UTC) an ARM porting Jam. The idea is to gather all developers together to fix userspace portability issues across the board. The list of bugs being worked on is at launchpad: https://bugs.launchpad.net/ubuntu/+bugs?f

Re: What do we want our hwpack sources

2011-06-08 Thread Alexander Sack
On Wed, Jun 8, 2011 at 12:45 AM, James Westby wrote: > On Tue, 7 Jun 2011 10:20:57 -0300, Christian Robottom Reis > wrote: >> That's true, and I didn't finish my original sentence but I would have >> pointed out that more complete hardware packs would contain other >> vendor-supplied binaries. H

11.06 milestone, when is it?

2011-06-08 Thread James Westby
Hi, Currently https://launchpad.net/lava/+milestone/11.06 says that 11.06 is June 16 while https://launchpad.net/linaro-android/+milestone/11.06 says June 30 and https://launchpad.net/linux-linaro/+milestone/11.06 doesn't say when it is. We need one date per-milestone or we will get

Re: 11.06 milestone, when is it?

2011-06-08 Thread Alexander Sack
On Wed, Jun 8, 2011 at 3:43 PM, James Westby wrote: > We need one date per-milestone or we will get very confused. fabo will send around on the dates really soon (any minute) --  - Alexander ___ linaro-dev mailing list linaro-dev@lists.linaro.org ht

Re: The linaro-2.6.39 kernel repository is now alive

2011-06-08 Thread Dave Martin
On Wed, Jun 8, 2011 at 4:31 AM, Nicolas Pitre wrote: > On Tue, 7 Jun 2011, Dave Martin wrote: > >> On Tue, Jun 07, 2011 at 10:49:51AM +0100, Tixy wrote: >> > No, were using two different methods to produce configs. The one I use >> > produces a Thumb2 kernel, the one you use doesn't. >> >> Well, i

Re: The linaro-2.6.39 kernel repository is now alive

2011-06-08 Thread Nicolas Pitre
On Wed, 8 Jun 2011, Dave Martin wrote: > Bisecting when CONFIG_THUMB2_KERNEL=y reproducibly identified > af3e4fd37a18f2e5a00175bc96061541d1364a3b as the first bad commit > between v2.6.39 and linux-linaro-2.6.39/master, but it's obviously > totally irrelevant and causes no code changes at all (whi

Re: 11.06 milestone, when is it?

2011-06-08 Thread Jesse Barker
https://launchpad.net/linaro/+milestones says 11.06 is June 30, which is what graphics has been using as out target (actually, what we're using for the whole cycle of targets as we thought the goal for this cycle was a more coherent sense of release targets for all of Linaro). cheers, Jesse On W

Re: 11.06 milestone, when is it?

2011-06-08 Thread Fathi Boudra
Hi, Linaro releases on a time based cycle. As announced at the Linaro Development Summit in Budapest, Linaro 11.06 will be the first version to follow our monthly release model. The release day will be the last Thursday of each month (exceptions could apply for various reasons like conference, spr

[powerdebug 11/23] add 'find' function for the tree

2011-06-08 Thread Daniel Lezcano
That will be useful to search for a specific node name. Signed-off-by: Daniel Lezcano --- tree.c | 17 + tree.h |2 ++ 2 files changed, 19 insertions(+), 0 deletions(-) diff --git a/tree.c b/tree.c index e681f4f..7466e31 100644 --- a/tree.c +++ b/tree.c @@ -223,3 +223,20 @

[powerdebug 05/23] fix segfault when the default window is not the clock

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c |2 +- powerdebug.c | 11 --- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/clocks.c b/clocks.c index d08c926..ecc72ea 100644 --- a/clocks.c +++ b/clocks.c @@ -255,7 +255,7 @@ int read_and_print_clock_info(int verbose,

[powerdebug 08/23] function helper to read the files

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 40 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/clocks.c b/clocks.c index 8a2dc97..848c52e 100644 --- a/clocks.c +++ b/clocks.c @@ -13,7 +13,11 @@ * - initial API and implementation

[powerdebug 15/23] remove unused code and parameter for clock dump function

2011-06-08 Thread Daniel Lezcano
the verbose option is unused. Signed-off-by: Daniel Lezcano --- clocks.c | 24 +++- powerdebug.c |9 ++--- powerdebug.h |3 +-- 3 files changed, 14 insertions(+), 22 deletions(-) diff --git a/clocks.c b/clocks.c index 5bcef51..9d8108c 100644 --- a/clocks.c

[powerdebug 01/23] move clock_info structure definition

2011-06-08 Thread Daniel Lezcano
Let's make this structure private Signed-off-by: Daniel Lezcano --- clocks.c | 13 + clocks.h | 13 - 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/clocks.c b/clocks.c index 3a93421..4d8a2be 100644 --- a/clocks.c +++ b/clocks.c @@ -28,6 +28,19 @@ st

[powerdebug 21/23] document the tree code

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- tree.c | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/tree.c b/tree.c index dd53ff2..f95610a 100644 --- a/tree.c +++ b/tree.c @@ -227,6 +227,15 @@ int tree_for_each(struct tree *tree, tree_cb_t cb, void

[powerdebug 16/23] remove unused 'verbose' option

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c |8 +++- powerdebug.c |1 - powerdebug.h |4 ++-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/clocks.c b/clocks.c index 9d8108c..e843b9e 100644 --- a/clocks.c +++ b/clocks.c @@ -283,7 +283,7 @@ static void destroy_c

[powerdebug 19/23] add a tree function to return a list of elements

2011-06-08 Thread Daniel Lezcano
This patch provides a function returning all the node of the tree matching the substring passed a parameter. Signed-off-by: Daniel Lezcano --- tree.c | 48 tree.h |2 ++ 2 files changed, 50 insertions(+), 0 deletions(-) diff --git a/tree.c

[powerdebug 20/23] compute the number of children for a specific node

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- tree.c |3 +++ tree.h |1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/tree.c b/tree.c index 8f546a9..dd53ff2 100644 --- a/tree.c +++ b/tree.c @@ -57,6 +57,7 @@ static inline struct tree *tree_alloc(const char *path, int depth)

[powerdebug 10/23] Remove old clock tree dump code

2011-06-08 Thread Daniel Lezcano
It is replaced by the tree code. Signed-off-by: Daniel Lezcano --- clocks.c | 56 +++- 1 files changed, 3 insertions(+), 53 deletions(-) diff --git a/clocks.c b/clocks.c index 5bb04a4..5f494cd 100644 --- a/clocks.c +++ b/clocks.c @@ -646,59

[powerdebug 17/23] add a function to browse at reverse order the tree

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- tree.c | 14 ++ tree.h |2 ++ 2 files changed, 16 insertions(+), 0 deletions(-) diff --git a/tree.c b/tree.c index 0a9c119..516e832 100644 --- a/tree.c +++ b/tree.c @@ -224,6 +224,20 @@ int tree_for_each(struct tree *tree, tree_cb_t cb, void *

[powerdebug 12/23] use 'find' tree function

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 192 +++--- tree.c | 11 tree.h |2 + 3 files changed, 71 insertions(+), 134 deletions(-) diff --git a/clocks.c b/clocks.c index 5f494cd..d70d480 100644 --- a/clocks.c +++ b/clock

[powerdebug 06/23] refresh the windows instead of killing them and recreate

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- display.c| 74 +++-- powerdebug.c |2 +- 2 files changed, 31 insertions(+), 45 deletions(-) diff --git a/display.c b/display.c index 2ab2167..dd5543c 100644 --- a/display.c +++ b/display.c @@ -45,31 +

[powerdebug 02/23] reorganize code to prevent forward declaration

2011-06-08 Thread Daniel Lezcano
That will cleanup the powerdebug header because these functions are used in the clock code only. Signed-off-by: Daniel Lezcano --- clocks.c | 142 +- powerdebug.h |4 -- 2 files changed, 71 insertions(+), 75 deletions(-) diff --gi

[powerdebug 23/23] remove unused 'hrow' and 'selected' parameters

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c |2 +- powerdebug.c | 17 +++-- powerdebug.h |2 +- 3 files changed, 5 insertions(+), 16 deletions(-) diff --git a/clocks.c b/clocks.c index de5476a..603ebe4 100644 --- a/clocks.c +++ b/clocks.c @@ -392,7 +392,7 @@ int clock_in

[powerdebug 13/23] remove unused parameter

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clocks.c b/clocks.c index d70d480..8e3509c 100644 --- a/clocks.c +++ b/clocks.c @@ -213,7 +213,7 @@ int dump_clock_info(void) return tree_for_each(clock_tree, dump_cloc

[powerdebug 00/23] Rewrite of the clock code

2011-06-08 Thread Daniel Lezcano
This patchset introduce a tree structure to store information found in the different directories we are looking for the power management. The code clock has been replaced by a new code based on this tree. The result is a code modular and generic enough to be used for the other power management bl

[powerdebug 03/23] provide a clock allocator

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 43 --- powerdebug.h |2 +- 2 files changed, 33 insertions(+), 12 deletions(-) diff --git a/clocks.c b/clocks.c index 677db01..d08c926 100644 --- a/clocks.c +++ b/clocks.c @@ -451,33 +451,48 @@ static

[powerdebug 09/23] use the tree code to dump the clocks

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 90 +++--- 1 files changed, 86 insertions(+), 4 deletions(-) diff --git a/clocks.c b/clocks.c index 848c52e..5bb04a4 100644 --- a/clocks.c +++ b/clocks.c @@ -42,11 +42,12 @@ struct clock_info {

[powerdebug 18/23] make the mainloop immune against the signals

2011-06-08 Thread Daniel Lezcano
... needed at least for gdb ... Signed-off-by: Daniel Lezcano --- powerdebug.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/powerdebug.c b/powerdebug.c index 7d89a7b..8e7e78e 100644 --- a/powerdebug.c +++ b/powerdebug.c @@ -288,10 +288,17 @@ int mainloop(struct

[powerdebug 14/23] remove unused parameter 'options->dump'

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c |2 +- powerdebug.c |3 +-- powerdebug.h |2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/clocks.c b/clocks.c index 8e3509c..5bcef51 100644 --- a/clocks.c +++ b/clocks.c @@ -567,7 +567,7 @@ out: return ret; }

[powerdebug 07/23] tree structure abstraction for directory hierarchies

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- Makefile |2 +- clocks.c |7 ++ tree.c | 225 ++ tree.h | 45 4 files changed, 278 insertions(+), 1 deletions(-) create mode 100644 tree.c create mode 100644 tree.h diff --

[powerdebug 04/23] remove unused variable

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- display.c |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/display.c b/display.c index 2d63908..2ab2167 100644 --- a/display.c +++ b/display.c @@ -34,11 +34,10 @@ static WINDOW *header_win; static WINDOW *regulator_win; static WINDOW

[powerdebug 22/23] rewrite the powerdebug clock code

2011-06-08 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 422 +++--- display.c| 160 +++ powerdebug.c | 66 ++ powerdebug.h | 19 ++- 4 files changed, 325 insertions(+), 342 deletions(-) diff --git a/clocks.c b/clo

Re: The linaro-2.6.39 kernel repository is now alive

2011-06-08 Thread Nicolas Pitre
On Wed, 8 Jun 2011, Dave Martin wrote: > Bisecting when CONFIG_THUMB2_KERNEL=y reproducibly identified > af3e4fd37a18f2e5a00175bc96061541d1364a3b as the first bad commit > between v2.6.39 and linux-linaro-2.6.39/master, but it's obviously > totally irrelevant and causes no code changes at all (whi

device tree stuff for linaro-2.6.39

2011-06-08 Thread John Rigby
Nicolas, Is device tree stuff equivalent to what was in .38 going in? I'm looking for the equivalent of what went into .38 in commit 3fb7bd037f31f5acdc213c0eb431c07a38803445 Merge branch 'devicetree/arm-linaro-2.6.38' of git://git.secretlab.ca/git/linux-2.6 into linaro-2.6.38 Thanks, John ___