All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Cleanup after atom-pc FULL_OPTIMIZATION fix for Bug 853
@ 2011-03-17  4:00 Darren Hart
  2011-03-17  4:00 ` [PATCH 1/1] gtk+: remove per-machine gtk+ FULL_OPTIMIZATION in favor of tune-atom.inc Darren Hart
  0 siblings, 1 reply; 3+ messages in thread
From: Darren Hart @ 2011-03-17  4:00 UTC (permalink / raw)
  To: poky; +Cc: Darren Hart, Richard Purdie

From: Darren Hart <dvhart@linux.intel.com>

After the localized fix for Bug 853, Richard pushed a more general fix to
tune-atom.inc, rendering all the local fixes unnecessary. Tested on atom-pc
and n450.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: dvhart/bernard/n450
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/bernard/n450

Thanks,
    Darren Hart <dvhart@linux.intel.com>
---


Darren Hart (1):
  gtk+: remove per-machine gtk+ FULL_OPTIMIZATION in favor of
    tune-atom.inc

 meta/recipes-gnome/gtk+/gtk+_2.22.1.bb |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)



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

* [PATCH 1/1] gtk+: remove per-machine gtk+ FULL_OPTIMIZATION in favor of tune-atom.inc
  2011-03-17  4:00 [PATCH 0/1] Cleanup after atom-pc FULL_OPTIMIZATION fix for Bug 853 Darren Hart
@ 2011-03-17  4:00 ` Darren Hart
  2011-03-17  4:19   ` Tom Zanussi
  0 siblings, 1 reply; 3+ messages in thread
From: Darren Hart @ 2011-03-17  4:00 UTC (permalink / raw)
  To: poky; +Cc: Darren Hart, Richard Purdie

From: Darren Hart <dvhart@linux.intel.com>

Now that the FULL_OPTIMIZATION for gtk+ has been enabled in the core
tune-atom.inc, it is no longer necessary to do so for every atom based
bsp.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Tom Zanussi <tom.zanussi@intel.com>
CC: Ke Yu <ke.yu@intel.com>
CC: Richard Purdie <richard.purdie@intel.com>
---
 meta/recipes-gnome/gtk+/gtk+_2.22.1.bb |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb b/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb
index ce1e03e..246606f 100644
--- a/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb
+++ b/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb
@@ -37,10 +37,6 @@ LIBV = "2.10.0"
 
 PACKAGES_DYNAMIC += "gtk-immodule-* gtk-printbackend-*"
 
-#-fomit-frame-pointer in default FULL_OPTIMIZATION will cause matchbox-panel segfault on atom-pc & emenlow
-FULL_OPTIMIZATION_emenlow = "-fexpensive-optimizations -frename-registers -O2 -ggdb -feliminate-unused-debug-types"
-FULL_OPTIMIZATION_atom-pc = "-fexpensive-optimizations -frename-registers -O2 -ggdb -feliminate-unused-debug-types"
-
 python populate_packages_prepend () {
 	import os.path
 
-- 
1.7.1



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

* Re: [PATCH 1/1] gtk+: remove per-machine gtk+ FULL_OPTIMIZATION in favor of tune-atom.inc
  2011-03-17  4:00 ` [PATCH 1/1] gtk+: remove per-machine gtk+ FULL_OPTIMIZATION in favor of tune-atom.inc Darren Hart
@ 2011-03-17  4:19   ` Tom Zanussi
  0 siblings, 0 replies; 3+ messages in thread
From: Tom Zanussi @ 2011-03-17  4:19 UTC (permalink / raw)
  To: Darren Hart; +Cc: Purdie, Richard, poky@yoctoproject.org

On Wed, 2011-03-16 at 21:00 -0700, Darren Hart wrote:
> From: Darren Hart <dvhart@linux.intel.com>
> 
> Now that the FULL_OPTIMIZATION for gtk+ has been enabled in the core
> tune-atom.inc, it is no longer necessary to do so for every atom based
> bsp.
> 

Acked-by: Tom Zanussi <tom.zanussi@intel.com>

> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> CC: Tom Zanussi <tom.zanussi@intel.com>
> CC: Ke Yu <ke.yu@intel.com>
> CC: Richard Purdie <richard.purdie@intel.com>
> ---
>  meta/recipes-gnome/gtk+/gtk+_2.22.1.bb |    4 ----
>  1 files changed, 0 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb b/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb
> index ce1e03e..246606f 100644
> --- a/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb
> +++ b/meta/recipes-gnome/gtk+/gtk+_2.22.1.bb
> @@ -37,10 +37,6 @@ LIBV = "2.10.0"
>  
>  PACKAGES_DYNAMIC += "gtk-immodule-* gtk-printbackend-*"
>  
> -#-fomit-frame-pointer in default FULL_OPTIMIZATION will cause matchbox-panel segfault on atom-pc & emenlow
> -FULL_OPTIMIZATION_emenlow = "-fexpensive-optimizations -frename-registers -O2 -ggdb -feliminate-unused-debug-types"
> -FULL_OPTIMIZATION_atom-pc = "-fexpensive-optimizations -frename-registers -O2 -ggdb -feliminate-unused-debug-types"
> -
>  python populate_packages_prepend () {
>  	import os.path
>  




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

end of thread, other threads:[~2011-03-17  4:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-17  4:00 [PATCH 0/1] Cleanup after atom-pc FULL_OPTIMIZATION fix for Bug 853 Darren Hart
2011-03-17  4:00 ` [PATCH 1/1] gtk+: remove per-machine gtk+ FULL_OPTIMIZATION in favor of tune-atom.inc Darren Hart
2011-03-17  4:19   ` Tom Zanussi

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.