From 218c19c3ece41993cfe296657fafe65d316bfce9 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Mon, 27 Oct 2008 20:48:16 +0100 Subject: gst-plugins-base: added missing dependencies --- packages/gstreamer/gst-plugins-base_0.10.17.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gstreamer/gst-plugins-base_0.10.17.bb b/packages/gstreamer/gst-plugins-base_0.10.17.bb index 56c9bfab04..e045d218d2 100644 --- a/packages/gstreamer/gst-plugins-base_0.10.17.bb +++ b/packages/gstreamer/gst-plugins-base_0.10.17.bb @@ -6,7 +6,7 @@ PROVIDES += "gst-plugins" # if alsa has been built and is present. You will # not get an error if this is not present, just # a missing alsa plugin -DEPENDS += "alsa-lib libsm" +DEPENDS += "alsa-lib libsm virtual/libx11 freetype" PR = "r3" -- cgit v1.2.3 From eaffa38a6517ad86aedd52cd2abce117fc6817a9 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Mon, 27 Oct 2008 20:48:40 +0100 Subject: gst-plugins-base: enabled XVideo output and gnome-vfs plugin --- packages/gstreamer/gst-plugins-base_0.10.17.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/gstreamer/gst-plugins-base_0.10.17.bb b/packages/gstreamer/gst-plugins-base_0.10.17.bb index e045d218d2..d2fd547a26 100644 --- a/packages/gstreamer/gst-plugins-base_0.10.17.bb +++ b/packages/gstreamer/gst-plugins-base_0.10.17.bb @@ -6,7 +6,7 @@ PROVIDES += "gst-plugins" # if alsa has been built and is present. You will # not get an error if this is not present, just # a missing alsa plugin -DEPENDS += "alsa-lib libsm virtual/libx11 freetype" +DEPENDS += "alsa-lib libsm virtual/libx11 freetype gnome-vfs libxv" -PR = "r3" +PR = "r4" -- cgit v1.2.3 From c96d6b49a6fd6c453009238e529f6162a326fb92 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 27 Oct 2008 20:04:55 +0000 Subject: omap5912osk: Remove PACKAGE_EXTRA_ARCHS now its set in the tune include file --- conf/machine/omap5912osk.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/conf/machine/omap5912osk.conf b/conf/machine/omap5912osk.conf index 5c7f5bed7f..d8caf938bd 100644 --- a/conf/machine/omap5912osk.conf +++ b/conf/machine/omap5912osk.conf @@ -3,7 +3,6 @@ #@DESCRIPTION: Machine configuration for the OMAP Starter Kit with a 5912 processor TARGET_ARCH = "arm" -PACKAGE_EXTRA_ARCHS = "armv4 armv4t armv5e armv5te" PREFERRED_PROVIDER_xserver = "xserver-kdrive" PREFERRED_PROVIDER_virtual/kernel = "linux-omap1" -- cgit v1.2.3 From ad6eb13bb445039aa6e57f3c266c2ebc7c78c470 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 27 Oct 2008 20:15:59 +0000 Subject: sanity.bbclass: Add check for duplicate entries in PACKAGE_ARCHS --- classes/sanity.bbclass | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass index c9effb5596..027d948fce 100644 --- a/classes/sanity.bbclass +++ b/classes/sanity.bbclass @@ -172,6 +172,16 @@ def check_sanity(e): f.write(distro_pr) f.close() + + # + # Check there aren't duplicates in PACKAGE_ARCHS + # + archs = data.getVar('PACKAGE_ARCHS', e.data, True).split() + for arch in archs: + if archs.count(arch) != 1: + messages = messages + "Error, Your PACKAGE_ARCHS field contains duplicates. Perhaps you set EXTRA_PACKAGE_ARCHS twice accidently through some tune file?\n" + break + if messages != "": raise_sanity_error(messages) -- cgit v1.2.3