All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] meta-intel: minor layer fixes
@ 2011-06-02 14:32 Paul Eggleton
  2011-06-02 14:32 ` [PATCH 1/2] meta-emenlow: remove obsolete bbappends Paul Eggleton
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Paul Eggleton @ 2011-06-02 14:32 UTC (permalink / raw)
  To: yocto

A couple of minor things I uncovered whilst working on the layer tools.

Paul Eggleton (2):
  meta-emenlow: remove obsolete bbappends
  meta-crownbay: tidy up layer configuration

 meta-crownbay/conf/layer.conf                      |    6 +-----
 .../clutter/clutter-1.4_1.4.2.bbappend             |    4 ----
 .../recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend     |    2 --
 3 files changed, 1 insertions(+), 11 deletions(-)
 delete mode 100644 meta-emenlow/recipes-graphics/clutter/clutter-1.4_1.4.2.bbappend
 delete mode 100644 meta-emenlow/recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend

-- 
1.7.4.1



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

* [PATCH 1/2] meta-emenlow: remove obsolete bbappends
  2011-06-02 14:32 [PATCH 0/2] meta-intel: minor layer fixes Paul Eggleton
@ 2011-06-02 14:32 ` Paul Eggleton
  2011-06-02 14:32 ` [PATCH 2/2] meta-crownbay: tidy up layer configuration Paul Eggleton
  2011-06-02 15:16 ` [PATCH 0/2] meta-intel: minor layer fixes Tom Zanussi
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2011-06-02 14:32 UTC (permalink / raw)
  To: yocto

Qt 4.6.3 and Clutter 1.4 have been removed from oe-core / poky.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../clutter/clutter-1.4_1.4.2.bbappend             |    4 ----
 .../recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend     |    2 --
 2 files changed, 0 insertions(+), 6 deletions(-)
 delete mode 100644 meta-emenlow/recipes-graphics/clutter/clutter-1.4_1.4.2.bbappend
 delete mode 100644 meta-emenlow/recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend

diff --git a/meta-emenlow/recipes-graphics/clutter/clutter-1.4_1.4.2.bbappend b/meta-emenlow/recipes-graphics/clutter/clutter-1.4_1.4.2.bbappend
deleted file mode 100644
index 71677ad..0000000
--- a/meta-emenlow/recipes-graphics/clutter/clutter-1.4_1.4.2.bbappend
+++ /dev/null
@@ -1,4 +0,0 @@
-DEPENDS_emenlow = "${STDDEPENDS} virtual/xserver-xf86 virtual/libgl"
-EXTRA_OECONF_emenlow = "${BASE_CONF} --with-flavour=glx"
-PACKAGE_ARCH_emenlow = "${MACHINE_ARCH}"
-
diff --git a/meta-emenlow/recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend b/meta-emenlow/recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend
deleted file mode 100644
index 92eabf2..0000000
--- a/meta-emenlow/recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend
+++ /dev/null
@@ -1,2 +0,0 @@
-QT_GLFLAGS_emenlow = "-opengl"
-
-- 
1.7.4.1



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

* [PATCH 2/2] meta-crownbay: tidy up layer configuration
  2011-06-02 14:32 [PATCH 0/2] meta-intel: minor layer fixes Paul Eggleton
  2011-06-02 14:32 ` [PATCH 1/2] meta-emenlow: remove obsolete bbappends Paul Eggleton
@ 2011-06-02 14:32 ` Paul Eggleton
  2011-06-02 15:16 ` [PATCH 0/2] meta-intel: minor layer fixes Tom Zanussi
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2011-06-02 14:32 UTC (permalink / raw)
  To: yocto

* We can't use machine overrides in layer.conf because MACHINE is not
  defined yet (local.conf has not yet been parsed) so remove these
* In light of the above having a separate collection configured for
  crownbay-noemgd no longer does anything, so remove it as well.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-crownbay/conf/layer.conf |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/meta-crownbay/conf/layer.conf b/meta-crownbay/conf/layer.conf
index 4ffeb2c..9c3794b 100644
--- a/meta-crownbay/conf/layer.conf
+++ b/meta-crownbay/conf/layer.conf
@@ -7,10 +7,6 @@ BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
 	${LAYERDIR}/../common/recipes-*/*/*.bb \
 	${LAYERDIR}/../common/recipes-*/*/*.bbappend"
 
-BBFILE_COLLECTIONS_append_crownbay += "crownbay"
+BBFILE_COLLECTIONS += "crownbay"
 BBFILE_PATTERN_crownbay := "^${LAYERDIR}/"
 BBFILE_PRIORITY_crownbay = "6"
-
-BBFILE_COLLECTIONS_append_crownbay-noemgd += "crownbay-noemgd"
-BBFILE_PATTERN_crownbay-noemgd := "^${LAYERDIR}/"
-BBFILE_PRIORITY_crownbay-noemgd = "6"
-- 
1.7.4.1



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

* Re: [PATCH 0/2] meta-intel: minor layer fixes
  2011-06-02 14:32 [PATCH 0/2] meta-intel: minor layer fixes Paul Eggleton
  2011-06-02 14:32 ` [PATCH 1/2] meta-emenlow: remove obsolete bbappends Paul Eggleton
  2011-06-02 14:32 ` [PATCH 2/2] meta-crownbay: tidy up layer configuration Paul Eggleton
@ 2011-06-02 15:16 ` Tom Zanussi
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Zanussi @ 2011-06-02 15:16 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto@yoctoproject.org

On Thu, 2011-06-02 at 07:32 -0700, Paul Eggleton wrote:
> A couple of minor things I uncovered whilst working on the layer tools.
> 
> Paul Eggleton (2):
>   meta-emenlow: remove obsolete bbappends
>   meta-crownbay: tidy up layer configuration
> 
>  meta-crownbay/conf/layer.conf                      |    6 +-----
>  .../clutter/clutter-1.4_1.4.2.bbappend             |    4 ----
>  .../recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend     |    2 --
>  3 files changed, 1 insertions(+), 11 deletions(-)
>  delete mode 100644 meta-emenlow/recipes-graphics/clutter/clutter-1.4_1.4.2.bbappend
>  delete mode 100644 meta-emenlow/recipes-qt/qt4/qt4-x11-free_4.6.3.bbappend
> 

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

Applied to meta-intel/master.

Thanks, Paul!



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

end of thread, other threads:[~2011-06-02 15:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-02 14:32 [PATCH 0/2] meta-intel: minor layer fixes Paul Eggleton
2011-06-02 14:32 ` [PATCH 1/2] meta-emenlow: remove obsolete bbappends Paul Eggleton
2011-06-02 14:32 ` [PATCH 2/2] meta-crownbay: tidy up layer configuration Paul Eggleton
2011-06-02 15:16 ` [PATCH 0/2] meta-intel: minor layer fixes 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.