All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] gthumb: Disable parallel make for gthumb install
@ 2012-04-18 15:40 Darren Hart
  2012-04-18 15:40 ` [PATCH 1/1] " Darren Hart
  2012-04-27 21:21 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 6+ messages in thread
From: Darren Hart @ 2012-04-18 15:40 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart

The following changes since commit 00256125873ff6f1630743a712e882e5f473a9d2:

  self-hosted-image: Update poky revision to point at the 1.2 release branch (2012-04-18 15:59:20 +0100)

are available in the git repository at:
  git://git.yoctoproject.org/user-contrib/dvhart/oe-core gthumb
  http://git.yoctoproject.org/cgit.cgi/user-contrib/dvhart/oe-core/log/?h=dvhart/gthumb

Darren Hart (1):
  gthumb: Disable parallel make for gthumb install

 meta/recipes-gnome/gthumb/gthumb_2.12.4.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

-- 
1.7.5.4




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

* [PATCH 1/1] gthumb: Disable parallel make for gthumb install
  2012-04-18 15:40 [PATCH 0/1] gthumb: Disable parallel make for gthumb install Darren Hart
@ 2012-04-18 15:40 ` Darren Hart
  2012-04-18 15:50   ` Darren Hart
  2012-04-18 15:52   ` Joshua Lock
  2012-04-27 21:21 ` [PATCH 0/1] " Saul Wold
  1 sibling, 2 replies; 6+ messages in thread
From: Darren Hart @ 2012-04-18 15:40 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart

With PARALLEL_MAKE set to 14, I frequently see the gthumb do_install
task hang. Make is spinning at 100% CPU and the build makes no
more progress.

The following work-around proposed by Richard Purdie allows progress
to be made.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Joshua Lock <josh@linux.intel.com>
CC: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-gnome/gthumb/gthumb_2.12.4.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
index 5c87dc1..5821dc4 100644
--- a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
+++ b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
@@ -8,6 +8,8 @@ PR = "r2"
 
 EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter"
 
+PARALLEL_MAKEINST=""
+
 inherit gnome pkgconfig
 
 FILES_${PN} += "${datadir}/icons"
-- 
1.7.5.4




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

* Re: [PATCH 1/1] gthumb: Disable parallel make for gthumb install
  2012-04-18 15:40 ` [PATCH 1/1] " Darren Hart
@ 2012-04-18 15:50   ` Darren Hart
  2012-04-18 15:52   ` Joshua Lock
  1 sibling, 0 replies; 6+ messages in thread
From: Darren Hart @ 2012-04-18 15:50 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 04/18/2012 08:40 AM, Darren Hart wrote:
> With PARALLEL_MAKE set to 14, I frequently see the gthumb do_install
> task hang. Make is spinning at 100% CPU and the build makes no
> more progress.
> 
> The following work-around proposed by Richard Purdie allows progress
> to be made.

Ooops, forgot to add:

Fixes [YOCTO #2319]

> 
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> CC: Joshua Lock <josh@linux.intel.com>
> CC: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>  meta/recipes-gnome/gthumb/gthumb_2.12.4.bb |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
> index 5c87dc1..5821dc4 100644
> --- a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
> +++ b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
> @@ -8,6 +8,8 @@ PR = "r2"
>  
>  EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter"
>  
> +PARALLEL_MAKEINST=""
> +
>  inherit gnome pkgconfig
>  
>  FILES_${PN} += "${datadir}/icons"

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel



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

* Re: [PATCH 1/1] gthumb: Disable parallel make for gthumb install
  2012-04-18 15:40 ` [PATCH 1/1] " Darren Hart
  2012-04-18 15:50   ` Darren Hart
@ 2012-04-18 15:52   ` Joshua Lock
  2012-04-18 15:54     ` Darren Hart
  1 sibling, 1 reply; 6+ messages in thread
From: Joshua Lock @ 2012-04-18 15:52 UTC (permalink / raw)
  To: Darren Hart; +Cc: openembedded-core



On 18/04/12 08:40, Darren Hart wrote:
> With PARALLEL_MAKE set to 14, I frequently see the gthumb do_install
> task hang. Make is spinning at 100% CPU and the build makes no
> more progress.
>
> The following work-around proposed by Richard Purdie allows progress
> to be made.
>
> Signed-off-by: Darren Hart<dvhart@linux.intel.com>
> CC: Joshua Lock<josh@linux.intel.com>
> CC: Richard Purdie<richard.purdie@linuxfoundation.org>

Signed-off-by: Joshua Lock <josh@linux.intel.com>

Can you confirm whether the issues you're seeing are the same as in #2245?

https://bugzilla.yoctoproject.org/show_bug.cgi?id=2245

I was looking at a proper fix yesterday but may need to use your beast 
to reproduce and test.

Cheers,
Joshua

> ---
>   meta/recipes-gnome/gthumb/gthumb_2.12.4.bb |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
> index 5c87dc1..5821dc4 100644
> --- a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
> +++ b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
> @@ -8,6 +8,8 @@ PR = "r2"
>
>   EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter"
>
> +PARALLEL_MAKEINST=""
> +
>   inherit gnome pkgconfig
>
>   FILES_${PN} += "${datadir}/icons"

-- 
Joshua Lock
         Yocto Project
         Intel Open Source Technology Centre



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

* Re: [PATCH 1/1] gthumb: Disable parallel make for gthumb install
  2012-04-18 15:52   ` Joshua Lock
@ 2012-04-18 15:54     ` Darren Hart
  0 siblings, 0 replies; 6+ messages in thread
From: Darren Hart @ 2012-04-18 15:54 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer



On 04/18/2012 08:52 AM, Joshua Lock wrote:
> 
> 
> On 18/04/12 08:40, Darren Hart wrote:
>> With PARALLEL_MAKE set to 14, I frequently see the gthumb do_install
>> task hang. Make is spinning at 100% CPU and the build makes no
>> more progress.
>>
>> The following work-around proposed by Richard Purdie allows progress
>> to be made.
>>
>> Signed-off-by: Darren Hart<dvhart@linux.intel.com>
>> CC: Joshua Lock<josh@linux.intel.com>
>> CC: Richard Purdie<richard.purdie@linuxfoundation.org>
> 
> Signed-off-by: Joshua Lock <josh@linux.intel.com>
> 
> Can you confirm whether the issues you're seeing are the same as in #2245?
> 
> https://bugzilla.yoctoproject.org/show_bug.cgi?id=2245
> 

I haven't seen those particular errors, but will follow-up in the bug.

--
Darren

> I was looking at a proper fix yesterday but may need to use your beast 
> to reproduce and test.
> 
> Cheers,
> Joshua
> 
>> ---
>>   meta/recipes-gnome/gthumb/gthumb_2.12.4.bb |    2 ++
>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>
>> diff --git a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
>> index 5c87dc1..5821dc4 100644
>> --- a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
>> +++ b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb
>> @@ -8,6 +8,8 @@ PR = "r2"
>>
>>   EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter"
>>
>> +PARALLEL_MAKEINST=""
>> +
>>   inherit gnome pkgconfig
>>
>>   FILES_${PN} += "${datadir}/icons"
> 

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel



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

* Re: [PATCH 0/1] gthumb: Disable parallel make for gthumb install
  2012-04-18 15:40 [PATCH 0/1] gthumb: Disable parallel make for gthumb install Darren Hart
  2012-04-18 15:40 ` [PATCH 1/1] " Darren Hart
@ 2012-04-27 21:21 ` Saul Wold
  1 sibling, 0 replies; 6+ messages in thread
From: Saul Wold @ 2012-04-27 21:21 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Darren Hart

On 04/18/2012 08:40 AM, Darren Hart wrote:
> The following changes since commit 00256125873ff6f1630743a712e882e5f473a9d2:
>
>    self-hosted-image: Update poky revision to point at the 1.2 release branch (2012-04-18 15:59:20 +0100)
>
> are available in the git repository at:
>    git://git.yoctoproject.org/user-contrib/dvhart/oe-core gthumb
>    http://git.yoctoproject.org/cgit.cgi/user-contrib/dvhart/oe-core/log/?h=dvhart/gthumb
>
> Darren Hart (1):
>    gthumb: Disable parallel make for gthumb install
>
>   meta/recipes-gnome/gthumb/gthumb_2.12.4.bb |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-04-27 21:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-18 15:40 [PATCH 0/1] gthumb: Disable parallel make for gthumb install Darren Hart
2012-04-18 15:40 ` [PATCH 1/1] " Darren Hart
2012-04-18 15:50   ` Darren Hart
2012-04-18 15:52   ` Joshua Lock
2012-04-18 15:54     ` Darren Hart
2012-04-27 21:21 ` [PATCH 0/1] " Saul Wold

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.