[PATCH 2/2] Utilize inotify to detect debugfs changes

2011-04-05 Thread yong . shen
From: Yong Shen Signed-off-by: Yong Shen --- clocks.c | 54 +- powerdebug.c |3 +++ powerdebug.h |3 +++ 3 files changed, 59 insertions(+), 1 deletions(-) diff --git a/clocks.c b/clocks.c index 47881c5..a4c54b0 100644 --- a/cloc

[PATCH 1/2] resolve clock_info reallocationg issue

2011-04-05 Thread yong . shen
From: Yong Shen everytime when screen refresh, the clock_info data stucture will be reacclocated, which does not make sence. This patch addresses this issue. Signed-off-by: Yong Shen --- clocks.c | 198 +++-- clocks.h |3 +- powe

Bug: SMDKV310: System hang during reboot

2011-04-05 Thread Tushar Behera
Hi, While executing reboot call on SMDKV310, the system hangs during cpu_proc_fin() call. Commenting out this line of code, the reboot works properly. --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S @@ -46,7 +46,6 @@ ENTRY(cpu_v7_proc_fin) mrc p15, 0, r0, c1, c0, 0

Re: [PATCH 2/2] Utilize inotify to detect debugfs changes

2011-04-05 Thread Daniel Lezcano
On 04/05/2011 10:28 AM, yong.s...@linaro.org wrote: From: Yong Shen Signed-off-by: Yong Shen --- clocks.c | 54 +- powerdebug.c |3 +++ powerdebug.h |3 +++ 3 files changed, 59 insertions(+), 1 deletions(-) diff --git a/cloc

Pathes for "Produce boottarball that includes rootfs, kernel and bootloader" for Android

2011-04-05 Thread Patrik Ryd
Hi, I will push some patches for review. They are all for Android. For the blueprint https://blueprints.launchpad.net/linaro-android/+spec/linaro-android-platform-kernel-boottarball . I have had problems setting the subject correctly, but they are for the android manifest, linaro/device/common,

[PATCH] Added kernel and u-boot

2011-04-05 Thread Patrik Ryd
--- default.xml | 17 ++--- 1 files changed, 10 insertions(+), 7 deletions(-) diff --git a/default.xml b/default.xml index dc6411d..09fca60 100644 --- a/default.xml +++ b/default.xml @@ -7,21 +7,24 @@ remote="korg" /> + fetch="git://git.linaro.org/" />

[PATCH 2/2] Enable u-boot

2011-04-05 Thread Patrik Ryd
Use u-boot as the 2NDBOOTLOADER. --- BoardConfig.mk |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index 11b49a8..54d3675 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -4,9 +4,12 @@ # TARGET_BOARD_PLATFORM := omap3 -TARGET_NO_

[PATCH 1/2] Enable kernel

2011-04-05 Thread Patrik Ryd
Set TARGET_NO_KERNEL to false in BoardConfig --- BoardConfig.mk |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index f0703c7..11b49a8 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -5,7 +5,8 @@ TARGET_BOARD_PLATFORM := omap3 TARG

[PATCH 1/2] kernel in root tar

2011-04-05 Thread Patrik Ryd
--- tasks/kernel.mk |8 tasks/tarballs.mk |9 + 2 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 tasks/kernel.mk diff --git a/tasks/kernel.mk b/tasks/kernel.mk new file mode 100644 index 000..513bafa --- /dev/null +++ b/tasks/kernel.mk @@ -0,0 +

[PATCH 2/2] Rules for building u-boot

2011-04-05 Thread Patrik Ryd
--- tasks/uboot.mk | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) create mode 100644 tasks/uboot.mk diff --git a/tasks/uboot.mk b/tasks/uboot.mk new file mode 100644 index 000..3d297c0 --- /dev/null +++ b/tasks/uboot.mk @@ -0,0 +1,10 @@ +android_uboot: + rm -fr $(

[PATCH] Added missing " in build-boottarball-target

2011-04-05 Thread Patrik Ryd
--- core/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Makefile b/core/Makefile index 8b7d6de..857dd20 100644 --- a/core/Makefile +++ b/core/Makefile @@ -794,7 +794,7 @@ stnod: systemtarball-nodeps ### ## boot tarball define build-boottarball-targ

Re: Pathes for "Produce boottarball that includes rootfs, kernel and bootloader" for Android

2011-04-05 Thread Jim Huang
On 6 April 2011 01:08, Patrik Ryd wrote: > Hi, > I will push some patches for review. They are all for Android. hi Patrik, Great work! > For the blueprint > https://blueprints.launchpad.net/linaro-android/+spec/linaro-android-platform-kernel-boottarball. > I have had problems setting the subjec

Re: [powerdebug 01/35] change regulator init function

2011-04-05 Thread Daniel Lezcano
On 04/04/2011 11:53 AM, Amit Kucheria wrote: Daniel, I've now reviewed, tested and merged this entire series. Some minor changes were made to a handful of commit messages. Thanks for taking the time to make the changes self-contained, easily bisectable and making sure they don't break builds (I

[NOTES] Minutes & Actions: Kernel Working Group meetings of April 04, 2011

2011-04-05 Thread Mounir Bsaibes
Enclosed you'll find a link to the agenda, minutes, actions and IRC logs from the Linaro kernel working group weekly meetings of April 04, 2011. https://wiki.linaro.org/WorkingGroups/KernelConsolidation/Meetings/2011-04-04 == Summary == * Starting up the planning for next cycle * Six high-le

Re: [PATCH 2/2] Rules for building u-boot

2011-04-05 Thread Alexander Sack
On Tue, Apr 5, 2011 at 7:09 PM, Patrik Ryd wrote: > --- >  tasks/uboot.mk |   10 ++ >  1 files changed, 10 insertions(+), 0 deletions(-) >  create mode 100644 tasks/uboot.mk > > diff --git a/tasks/uboot.mk b/tasks/uboot.mk > new file mode 100644 > index 000..3d297c0 > --- /dev/null > +

Re: [PATCH 1/2] kernel in root tar

2011-04-05 Thread Alexander Sack
On Tue, Apr 5, 2011 at 7:09 PM, Patrik Ryd wrote: > --- >  tasks/kernel.mk   |    8 >  tasks/tarballs.mk |    9 + >  2 files changed, 17 insertions(+), 0 deletions(-) >  create mode 100644 tasks/kernel.mk > > diff --git a/tasks/kernel.mk b/tasks/kernel.mk > new file mode 100644 >

Re: OMAP4 MPU DVFS patches

2011-04-05 Thread John Rigby
On Tue, Apr 5, 2011 at 12:26 AM, Vishwanath Sripathy wrote: > Yes, Following options have to be enabled in the defconfig to enable cpufreq. > > CONFIG_CPU_FREQ=y > CONFIG_CPU_FREQ_GOV_USERSPACE=y > CONFIG_OMAP_SMARTREFLEX=y > CONFIG_OMAP_SMARTREFLEX_CLASS3=y Done > > Vishwa > > On Mon, Apr 4, 2011

Re: [PATCH android/toolchain/build] Add --enable-graphite option to build script

2011-04-05 Thread Jim Huang
On 29 March 2011 06:34, Jim Huang wrote: > GCC 4.5 and up supports graphite optimization, and cloog and ppl > are required. This change attempts to support some combinations > of ppl and cloog/cloog-ppl libraries. Since cloog and ppl are > written in C++, it implies we might suffer from C++ ABI br

[PATCH android/frameworks/base] audioflinger: Enable ARMv5TE optimized resampler

2011-04-05 Thread Jim Huang
Previously, the optimized asm option is only enabled when __ARM_ARCH_5E__ is defined, which is assigned in armv5te.mk rather than armv7-a series targets. This patch checks the ARM CPU feature about half-word multiply instructions to enable ARMv5TE resampler optimization routines properly. Code Rev