Re: Finding source code for Linaro kernels

2012-01-24 Thread Dave Martin
Hi again, After a report of yet another instance of un-findable source for a kernel released from a landing team, it would be good if we could move forward with this. Does anyone have any significant disagreements with the proposal below? If not, I can try to write up a formal specification

Re: Release frequency: a discussion for Linaro Connect Q1.12?

2012-01-24 Thread James Tunnicliffe
Hi Grégoire, Thanks for the mail. I am just a grunt here but I hope I am not too far off the mark with my replies. No doubt any mistakes will be corrected! On 23 January 2012 19:06, Gregoire Gentil grego...@gentil.com wrote: I'm Grégoire Gentil, the founder of Always Innovating. I intend to

Staging Android kernel sources

2012-01-24 Thread Frederik Lotter
Dear Linaro, I am using the image from your staging distribution or ICS Android: http://releases.linaro.org/11.12/android/images/staging-panda/ I would like to build the latest Streamline gator driver, and gatord daemon. I had a look at the GIT repo but I am afraid this is too complex for me to

Re: Sources for 11.11 kernel release

2012-01-24 Thread Christian Robottom Reis
On Tue, Jan 24, 2012 at 09:29:34AM -0500, Chris Lalancette wrote: (I'm aware that there is a thread on linaro-dev discussing this exact topic; this is a request for specific information, so I decided to start a new thread) Hello, As has been pointed out elsewhere, it is very difficult

Re: Sources for 11.11 kernel release

2012-01-24 Thread Christian Robottom Reis
On Tue, Jan 24, 2012 at 12:59:33PM -0200, Christian Robottom Reis wrote: On Tue, Jan 24, 2012 at 09:29:34AM -0500, Chris Lalancette wrote: (I'm aware that there is a thread on linaro-dev discussing this exact topic; this is a request for specific information, so I decided to start a new

Re: Sources for 11.11 kernel release

2012-01-24 Thread Zygmunt Krynicki
This is a recap of the discussion we did about source meta data for packages. While interesting it was fruitless, nothing has happened. I'd like to propose to put lava-friendly meta data in: /usr/share/lava/{srcpackagename}/source.json The file should look like this (for bzr-based projects) {

Re: Staging Android kernel sources

2012-01-24 Thread Andy Doan
On 01/24/2012 05:19 AM, Frederik Lotter wrote: Dear Linaro, I am using the image from your staging distribution or ICS Android: http://releases.linaro.org/11.12/android/images/staging-panda/ I would like to build the latest Streamline gator driver, and gatord daemon. I had a look at the

Re: Sources for 11.11 kernel release

2012-01-24 Thread Chris Lalancette
On 01/24/2012 10:01 AM, Christian Robottom Reis wrote: On Tue, Jan 24, 2012 at 12:59:33PM -0200, Christian Robottom Reis wrote: On Tue, Jan 24, 2012 at 09:29:34AM -0500, Chris Lalancette wrote: (I'm aware that there is a thread on linaro-dev discussing this exact topic; this is a request for

Re: Sources for 11.11 kernel release

2012-01-24 Thread Andy Doan
On 01/24/2012 09:50 AM, Chris Lalancette wrote: Thanks, that is enormously helpful. Though doing a diff -Nurp between leb/ti/kernel.git (tag linux-release-2011-11-1) and the tarball that I pulled from launchpad

Re: Release frequency: a discussion for Linaro Connect Q1.12?

2012-01-24 Thread Zach Pfeffer
On 23 January 2012 13:06, Gregoire Gentil grego...@gentil.com wrote: Hello, I'm Grégoire Gentil, the founder of Always Innovating. I intend to participate to Linaro Connect Q1.12 though I'm not part of this organization. I follow the work of Linaro and I find it very interesting for our

Re: Finding source code for Linaro kernels

2012-01-24 Thread Dave Martin
On Tue, Jan 24, 2012 at 11:34:51AM +, Lee Jones wrote: All released kernel source is available on git.linaro.org. Specifically: Git: git://git.linaro.org/landing-teams/leb/landing_team/kernel.git HTML: http://git.linaro.org/git/landing-teams/leb/landing_team/kernel.git

Re: Finding source code for Linaro kernels

2012-01-24 Thread Zach Pfeffer
On 24 January 2012 13:32, Dave Martin dave.mar...@linaro.org wrote: On Tue, Jan 24, 2012 at 11:34:51AM +, Lee Jones wrote: All released kernel source is available on git.linaro.org. Specifically: Git: git://git.linaro.org/landing-teams/leb/landing_team/kernel.git HTML:

Re: Ubuntu LEB 12.01 RC images

2012-01-24 Thread John Rigby
the panda results page it view only for me, I'm sure I must be doing something wrong On Mon, Jan 23, 2012 at 1:58 PM, Ricardo Salveti ricardo.salv...@linaro.org wrote: Hey folks, Just like to announce the Ubuntu LEB 12.01 RC images, and the pointers for people that want to check the testing

Re: [PATCH] hrtimers, timers: eliminate some jiffies-backed code

2012-01-24 Thread john stultz
On Mon, 2012-01-23 at 19:40 +0400, Dmitry Antipov wrote: This patch provides an attempt to get away from jiffies in msleep() and msleep_interruptible() to hrtimers-backed usleep_range() and usleep_range_interruptible(). Both of the latter now returns an amount of microseconds really spent in

Re: [PATCH v4 3/4] EXYNOS: Add SMDK5250 board support

2012-01-24 Thread Chander Kashyap
Hi, There are some changes in previous patch set. diff --git a/board/samsung/smdk5250/smdk5250.c b/board/samsung/smdk5250/smdk5250.c new file mode 100644 index 000..2684620 --- /dev/null +++ b/board/samsung/smdk5250/smdk5250.c @@ -0,0 +1,152 @@ +/* + * Copyright (C) 2011 Samsung

[PATCH v5 0/4] Add SMDK5250 board support

2012-01-24 Thread Chander Kashyap
This patchset add support for Samsung's SMDK5250 board based on EXYNOS5250 based SoC. It also adds support for MMC SPL booting. The porting is done by Samsung engineers at HQ in System LSI Team. I am contributing in upstreaming the code for the board. Based upon discussions following patches are

[PATCH v5 1/4] Exynos: Clock.c: Use CONFIG_SYS_CLK_FREQ macro

2012-01-24 Thread Chander Kashyap
CONFIG_SYS_CLK_FREQ_C210 macro giving notion of S5PC2XX (Exynos4) architecture. Replace CONFIG_SYS_CLK_FREQ_C210 with CONFIG_SYS_CLK_FREQ to make it generic for exynos architecture. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - None Changes for v3:

[PATCH v5 2/4] ARM: EXYNOS: Add support for Exynos5 based SoCs

2012-01-24 Thread Chander Kashyap
Samsung's ARM Cortex-A15 based SoCs are known as Exynos5 series of SoCs. This patch adds the support for Exynos5. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - This patch was part of EXYNOS: Add SMDK5250 board support - Now it is seprated as SoC

[PATCH v5 4/4] EXYNOS: SMDK5250: Add MMC SPL support

2012-01-24 Thread Chander Kashyap
This patch adds support for MMC SPL booting. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - None Changes for v3: - None Changes for v4: - None Changes for v5: - None board/samsung/smdk5250/Makefile | 16

[PATCH v5 3/4] EXYNOS: Add SMDK5250 board support

2012-01-24 Thread Chander Kashyap
SMDK5250 board is based on Samsungs EXYNOS5250 SoC. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - This patch is bifurcated into borad support and SoC support - Fixed typo: s/EEYNOS/EXYNOS - Squashed patch SMDK5250: enable device tree

Re: Ubuntu LEB 12.01 RC images

2012-01-24 Thread Ricardo Salveti
On Tue, Jan 24, 2012 at 9:46 PM, John Rigby john.ri...@linaro.org wrote: the panda results page it view only for me, I'm sure I must be doing something wrong Could be the multiple login issue with the google services. The first time I tried opening the origen spreadsheet I was logged as

Re: [PATCH v5 0/4] Add SMDK5250 board support

2012-01-24 Thread Chander Kashyap
Hi, Please ignore this patch set i will resend it. On 25 January 2012 10:12, Chander Kashyap chander.kash...@linaro.org wrote: This patchset add support for Samsung's SMDK5250 board based on EXYNOS5250 based SoC. It also adds support for MMC SPL booting. The porting is done by Samsung

[PATCH v6 1/4] Exynos: Clock.c: Use CONFIG_SYS_CLK_FREQ macro

2012-01-24 Thread Chander Kashyap
CONFIG_SYS_CLK_FREQ_C210 macro giving notion of S5PC2XX (Exynos4) architecture. Replace CONFIG_SYS_CLK_FREQ_C210 with CONFIG_SYS_CLK_FREQ to make it generic for exynos architecture. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - None Changes for v3:

[PATCH v6 0/4] Add SMDK5250 board support

2012-01-24 Thread Chander Kashyap
This patchset add support for Samsung's SMDK5250 board based on EXYNOS5250 based SoC. It also adds support for MMC SPL booting. The porting is done by Samsung engineers at HQ in System LSI Team. I am contributing in upstreaming the code for the board. Based upon discussions following patches are

[PATCH v6 4/4] EXYNOS: SMDK5250: Add MMC SPL support

2012-01-24 Thread Chander Kashyap
This patch adds support for MMC SPL booting. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - None Changes for v3: - None Changes for v4: - None Changes for v5: - None Changes for v5: - None board/samsung/smdk5250/Makefile

[PATCH v6 2/4] ARM: EXYNOS: Add support for Exynos5 based SoCs

2012-01-24 Thread Chander Kashyap
Samsung's ARM Cortex-A15 based SoCs are known as Exynos5 series of SoCs. This patch adds the support for Exynos5. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - This patch was part of EXYNOS: Add SMDK5250 board support - Now it is seprated as SoC

[PATCH v6 3/4] EXYNOS: Add SMDK5250 board support

2012-01-24 Thread Chander Kashyap
SMDK5250 board is based on Samsungs EXYNOS5250 SoC. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - This patch is bifurcated into borad support and SoC support - Fixed typo: s/EEYNOS/EXYNOS - Squashed patch SMDK5250: enable device tree