[yocto] forcing to run a task that has been disabled by image.bbclass

2012-11-05 Thread Joshua Immanuel
Hello,
I have been using edison branch for quite some time. As I was trying to
migrate my layer to danny branch I found that in commit 6706c7bd common
tasks such as fetch, unpack, patch etc has been disabled for image
recipes by setting the 'noexec' flag for them.

My image recipe installs certain files via IMAGE_PREPROCESS_COMMAND. So,
how do I re-enable the do_fetch task.

inherit core-image
python () {
d.delVarFlag('do_fetch','noexec')
}

The above code doesn't solve the purpose. I guess the order to execution
of anonymous python function happens before the inheritance. Is there
any other alternative other than extending the image.bbclass in my
layer? Please guide me.

-- 
Joshua Immanuel
HiPro IT Solutions Private Limited
http://hipro.co.in



signature.asc
Description: This is a digitally signed message part
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Ross Burton
Signed-off-by: Ross Burton 
---
 meta-cedartrail/conf/machine/cedartrail.conf |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-cedartrail/conf/machine/cedartrail.conf 
b/meta-cedartrail/conf/machine/cedartrail.conf
index aa2a46a..a5fa0f0 100644
--- a/meta-cedartrail/conf/machine/cedartrail.conf
+++ b/meta-cedartrail/conf/machine/cedartrail.conf
@@ -17,7 +17,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
"
 PREFERRED_VERSION_linux-yocto ?= "3.0%"
 PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
-PREFERRED_VERSION_mesa-dri ?= "8.04"
+PREFERRED_VERSION_mesa-dri ?= "8.0.4"
 PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
 
 SYSLINUX_OPTS = "serial 0 115200"
-- 
1.7.10

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH 1/3] xserver-xorg: bump PR to get the new xorg-abi- RPROVIDES

2012-11-05 Thread Ross Burton
---
 common/recipes-graphics/xorg-xserver/xserver-xorg-1.9.3.inc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/recipes-graphics/xorg-xserver/xserver-xorg-1.9.3.inc 
b/common/recipes-graphics/xorg-xserver/xserver-xorg-1.9.3.inc
index 8c7009f..1c71d7b 100644
--- a/common/recipes-graphics/xorg-xserver/xserver-xorg-1.9.3.inc
+++ b/common/recipes-graphics/xorg-xserver/xserver-xorg-1.9.3.inc
@@ -17,4 +17,4 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=3dd2bbe3563837f80ed8926b06c1c353"
 SRC_URI[md5sum] = "5bef6839a76d029204ab31aa2fcb5201"
 SRC_URI[sha256sum] = 
"864831f51e841ff37f2445d1c85b86b559c8860a435fb496aead4f256a2b141d"
 
-PR = "r1"
+PR = "r2"
-- 
1.7.10

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH 2/3] cdv-pvr-driver: add xorg-abi-video- dependency

2012-11-05 Thread Ross Burton
xserver changes the driver ABI at will, and refuses to load drivers with the
wrong ABI version. So that we know about this error at image build time instead
of when xserver fails to start, RDEPEND on the ABI version we expect.

This dependency is added programmatically so that bitbake doesn't look for a
provider of xorg-abi-video-8 at parse time, which it won't find.

Signed-off-by: Ross Burton 
---
 .../recipes-graphics/xorg-driver/cdv-pvr-driver_1.0.3.bb  |9 +
 1 file changed, 9 insertions(+)

diff --git 
a/meta-cedartrail/recipes-graphics/xorg-driver/cdv-pvr-driver_1.0.3.bb 
b/meta-cedartrail/recipes-graphics/xorg-driver/cdv-pvr-driver_1.0.3.bb
index 7bda3b5..ebb5891 100644
--- a/meta-cedartrail/recipes-graphics/xorg-driver/cdv-pvr-driver_1.0.3.bb
+++ b/meta-cedartrail/recipes-graphics/xorg-driver/cdv-pvr-driver_1.0.3.bb
@@ -88,6 +88,15 @@ FILES_${PN} += 
"${datadir}/doc/pvr-bin-cdv-${PVR-BIN-REV_LIC}/license.txt"
 
 RDEPENDS_${PN} = "xserver-xorg-module-exa"
 
+# Add the ABI dependency at package generation time, as otherwise bitbake will
+# attempt to find a provider for it (and fail) when it does the parse.
+#
+# This version *must* be kept correct.
+python populate_packages_prepend() {
+pn = d.getVar("PN", True)
+d.appendVar("RDEPENDS_" + pn, " xorg-abi-video-8")
+}
+
 TARGET_CC_ARCH += "${CFLAGS}{LDFLAGS}"
 INSANE_SKIP_${PN} += "ldflags"
 INSANE_SKIP_${PN}-dbg += "ldflags"
-- 
1.7.10

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [meta-intel] Add Xorg ABI dependencies

2012-11-05 Thread Ross Burton

Hi,

Following are patches against master (*not* danny) to add runtime dependencies
on the Xorg ABI version to the binary drivers, a symbol that the Xorg server
provides.

This means that mismatching server/driver ABIs becomes a package dependency
issue and thus image-time error, instead of a boot time error.

Note that these ABI versions are calculated from the Xorg server version that
the drivers were compiled against and need to be verified and updated manually
when the driver is upgraded.

Ross

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH 3/3] emgd-driver-bin: add xorg-abi-video- dependency

2012-11-05 Thread Ross Burton
xserver changes the driver ABI at will, and refuses to load drivers with the
wrong ABI version. So that we know about this error at image build time instead
of when xserver fails to start, RDEPEND on the ABI version we expect.

This dependency is added programmatically so that bitbake doesn't look for a
provider of xorg-abi-video-8 at parse time, which it won't find.

Signed-off-by: Ross Burton 
---
 common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb |9 +
 1 file changed, 9 insertions(+)

diff --git a/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb 
b/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb
index e068f7a..cc78d61 100644
--- a/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb
+++ b/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb
@@ -19,6 +19,15 @@ LIC_FILES_CHKSUM = 
"file://${WORKDIR}/${EMGD_LIC_DIR}/License.txt;md5=b54f01caaf
 DEPENDS = "rpm-native xz-native"
 RDEPENDS = "libxcb-dri2"
 
+# Add the ABI dependency at package generation time, as otherwise bitbake will
+# attempt to find a provider for it (and fail) when it does the parse.
+#
+# This version *must* be kept correct.
+python populate_packages_prepend() {
+pn = d.getVar("PN", True)
+d.appendVar("RDEPENDS_" + pn, " xorg-abi-video-8")
+}
+
 SRC_URI = 
"https://edc.intel.com/Download.aspx?id=6190;downloadfilename=LIN_IEMGD_1_14_GOLD_2443.tgz";
 
 SRC_URI[md5sum] = "733a7f237ffce21238ce2c9956df4fd6"
-- 
1.7.10

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH] [POKY-ECLIPSE] Update plugin version in installation details

2012-11-05 Thread Björn Arnelid
From: Björn Arnelid 
Date: Mon, 5 Nov 2012 15:47:14 +0100
Subject: [PATCH] [SIGNED-OFF] Update plugin version in installation details
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit


When using version 1.3 Danny and looking in Help -> About Eclipse SDK -> 
Installation Details -> Plugins.
Yocto eclipse plugin version is described as 1.2.0.qualifier.
Version number should be matching actual version (1.3)

Changed Bundle-Version in projects MANIFEST.MF to 1.3

Signed-off-by: Björn Arnelid 
---
 plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF   |2 +-
 plugins/org.yocto.sdk.ide/META-INF/MANIFEST.MF |2 +-
 .../org.yocto.sdk.remotetools/META-INF/MANIFEST.MF |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF 
b/plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF
index dccabda..85dddf5 100644
--- a/plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: %Bundle-Name
 Bundle-SymbolicName: org.yocto.bc.ui;singleton:=true
-Bundle-Version: 1.2.0.qualifier
+Bundle-Version: 1.3
 Bundle-Activator: org.yocto.bc.ui.Activator
 Bundle-Vendor: %Bundle-Vendor
 Require-Bundle: org.eclipse.ui,
diff --git a/plugins/org.yocto.sdk.ide/META-INF/MANIFEST.MF 
b/plugins/org.yocto.sdk.ide/META-INF/MANIFEST.MF
index c3d8cc9..dd1b9ec 100644
--- a/plugins/org.yocto.sdk.ide/META-INF/MANIFEST.MF
+++ b/plugins/org.yocto.sdk.ide/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: %Bundle-Name
 Bundle-SymbolicName: org.yocto.sdk.ide;singleton:=true
-Bundle-Version: 1.2.0.qualifier
+Bundle-Version: 1.3
 Bundle-Activator: org.yocto.sdk.ide.YoctoSDKPlugin
 Bundle-Vendor: %Bundle-Vendor
 Require-Bundle: org.eclipse.ui,
diff --git a/plugins/org.yocto.sdk.remotetools/META-INF/MANIFEST.MF 
b/plugins/org.yocto.sdk.remotetools/META-INF/MANIFEST.MF
index 6be7da1..df4fbb0 100644
--- a/plugins/org.yocto.sdk.remotetools/META-INF/MANIFEST.MF
+++ b/plugins/org.yocto.sdk.remotetools/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: %Bundle-Name
 Bundle-SymbolicName: org.yocto.sdk.remotetools; singleton:=true
-Bundle-Version: 1.2.0.qualifier
+Bundle-Version: 1.3
 Bundle-Activator: org.yocto.sdk.remotetools.Activator
 Require-Bundle: org.eclipse.ui,
  org.eclipse.core.runtime,
--
1.7.9.5

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Bodke, Kishore K
Is this patch for danny?

-Kishore.

>-Original Message-
>From: Ross Burton [mailto:ross.bur...@intel.com]
>Sent: Monday, November 05, 2012 4:31 AM
>To: Bodke, Kishore K
>Cc: yocto@yoctoproject.org
>Subject: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version
>(typo'd)
>
>Signed-off-by: Ross Burton 
>---
> meta-cedartrail/conf/machine/cedartrail.conf |2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/meta-cedartrail/conf/machine/cedartrail.conf b/meta-
>cedartrail/conf/machine/cedartrail.conf
>index aa2a46a..a5fa0f0 100644
>--- a/meta-cedartrail/conf/machine/cedartrail.conf
>+++ b/meta-cedartrail/conf/machine/cedartrail.conf
>@@ -17,7 +17,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
>"
> PREFERRED_VERSION_linux-yocto ?= "3.0%"
> PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
>-PREFERRED_VERSION_mesa-dri ?= "8.04"
>+PREFERRED_VERSION_mesa-dri ?= "8.0.4"
> PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
>
> SYSLINUX_OPTS = "serial 0 115200"
>--
>1.7.10

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Burton, Ross
Both Danny and master.

Ross


On 5 November 2012 15:54, Bodke, Kishore K wrote:

> Is this patch for danny?
>
> -Kishore.
>
> >-Original Message-
> >From: Ross Burton [mailto:ross.bur...@intel.com]
> >Sent: Monday, November 05, 2012 4:31 AM
> >To: Bodke, Kishore K
> >Cc: yocto@yoctoproject.org
> >Subject: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version
> >(typo'd)
> >
> >Signed-off-by: Ross Burton 
> >---
> > meta-cedartrail/conf/machine/cedartrail.conf |2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >diff --git a/meta-cedartrail/conf/machine/cedartrail.conf b/meta-
> >cedartrail/conf/machine/cedartrail.conf
> >index aa2a46a..a5fa0f0 100644
> >--- a/meta-cedartrail/conf/machine/cedartrail.conf
> >+++ b/meta-cedartrail/conf/machine/cedartrail.conf
> >@@ -17,7 +17,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
> >"
> > PREFERRED_VERSION_linux-yocto ?= "3.0%"
> > PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
> >-PREFERRED_VERSION_mesa-dri ?= "8.04"
> >+PREFERRED_VERSION_mesa-dri ?= "8.0.4"
> > PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
> >
> > SYSLINUX_OPTS = "serial 0 115200"
> >--
> >1.7.10
>
>
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Bodke, Kishore K
Hi Tom,

Can this go to danny as we already had cut off?

Thanks
Kishore.

From: Burton, Ross [mailto:ross.bur...@intel.com]
Sent: Monday, November 05, 2012 7:57 AM
To: Bodke, Kishore K
Cc: yocto@yoctoproject.org
Subject: Re: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version 
(typo'd)

Both Danny and master.

Ross

On 5 November 2012 15:54, Bodke, Kishore K 
mailto:kishore.k.bo...@intel.com>> wrote:
Is this patch for danny?

-Kishore.

>-Original Message-
>From: Ross Burton [mailto:ross.bur...@intel.com]
>Sent: Monday, November 05, 2012 4:31 AM
>To: Bodke, Kishore K
>Cc: yocto@yoctoproject.org
>Subject: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version
>(typo'd)
>
>Signed-off-by: Ross Burton 
>mailto:ross.bur...@intel.com>>
>---
> meta-cedartrail/conf/machine/cedartrail.conf |2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/meta-cedartrail/conf/machine/cedartrail.conf b/meta-
>cedartrail/conf/machine/cedartrail.conf
>index aa2a46a..a5fa0f0 100644
>--- a/meta-cedartrail/conf/machine/cedartrail.conf
>+++ b/meta-cedartrail/conf/machine/cedartrail.conf
>@@ -17,7 +17,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
>"
> PREFERRED_VERSION_linux-yocto ?= "3.0%"
> PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
>-PREFERRED_VERSION_mesa-dri ?= "8.04"
>+PREFERRED_VERSION_mesa-dri ?= "8.0.4"
> PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
>
> SYSLINUX_OPTS = "serial 0 115200"
>--
>1.7.10

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Tom Zanussi
On Mon, 2012-11-05 at 10:08 -0600, Bodke, Kishore K wrote:
> Hi Tom,
> 
>  
> 
> Can this go to danny as we already had cut off?
> 

Is it a show-stopper?  If so, we'll have to pull it in and do an RC3 I
guess.  If not, I can still pull it in to danny, it just won't be
included in the release (you can release-note it if it's important
people know about it for the release).

Tom

>  
> 
> Thanks
> 
> Kishore.
> 
>  
> 
> From: Burton, Ross [mailto:ross.bur...@intel.com] 
> Sent: Monday, November 05, 2012 7:57 AM
> To: Bodke, Kishore K
> Cc: yocto@yoctoproject.org
> Subject: Re: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri
> version (typo'd)
> 
> 
>  
> 
> Both Danny and master.
> 
>  
> 
> 
> Ross
> 
> 
>  
> 
> On 5 November 2012 15:54, Bodke, Kishore K 
> wrote:
> 
> Is this patch for danny?
> 
> -Kishore.
> 
> 
> >-Original Message-
> >From: Ross Burton [mailto:ross.bur...@intel.com]
> >Sent: Monday, November 05, 2012 4:31 AM
> >To: Bodke, Kishore K
> >Cc: yocto@yoctoproject.org
> >Subject: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri
> version
> >(typo'd)
> >
> >Signed-off-by: Ross Burton 
> >---
> > meta-cedartrail/conf/machine/cedartrail.conf |2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >diff --git a/meta-cedartrail/conf/machine/cedartrail.conf b/meta-
> >cedartrail/conf/machine/cedartrail.conf
> >index aa2a46a..a5fa0f0 100644
> >--- a/meta-cedartrail/conf/machine/cedartrail.conf
> >+++ b/meta-cedartrail/conf/machine/cedartrail.conf
> >@@ -17,7 +17,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
> >"
> > PREFERRED_VERSION_linux-yocto ?= "3.0%"
> > PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
> >-PREFERRED_VERSION_mesa-dri ?= "8.04"
> >+PREFERRED_VERSION_mesa-dri ?= "8.0.4"
> > PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
> >
> > SYSLINUX_OPTS = "serial 0 115200"
> >--
> >1.7.10
> 
> 
>  
> 
> 


___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Burton, Ross
On 5 November 2012 16:12, Tom Zanussi  wrote:

> Is it a show-stopper?  If so, we'll have to pull it in and do an RC3 I
> guess.  If not, I can still pull it in to danny, it just won't be
> included in the release (you can release-note it if it's important
> people know about it for the release).
>

It's not a show-stopper but it's obviously correct if you have anything
else landing to cause a RC3.

It just doesn't fix the warning that the original fix was meant to fix -
you'll get a build warning that the preferred version of mesa-dri (8.04)
isn't available (should be 8.0.4).

Ross
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version (typo'd)

2012-11-05 Thread Saxena, Rahul
We are OK for putting it in the release notes and not doing RC3.


Thanks
Rahul

From: Burton, Ross [mailto:ross.bur...@intel.com]
Sent: Monday, November 05, 2012 8:16 AM
To: Zanussi, Tom
Cc: Bodke, Kishore K; Saxena, Rahul; 
yocto@yoctoproject.org
Subject: Re: [PATCH meta-intel] meta-cedartrail: really fix mesa-dri version 
(typo'd)

On 5 November 2012 16:12, Tom Zanussi 
mailto:tom.zanu...@intel.com>> wrote:
Is it a show-stopper?  If so, we'll have to pull it in and do an RC3 I
guess.  If not, I can still pull it in to danny, it just won't be
included in the release (you can release-note it if it's important
people know about it for the release).

It's not a show-stopper but it's obviously correct if you have anything else 
landing to cause a RC3.

It just doesn't fix the warning that the original fix was meant to fix - you'll 
get a build warning that the preferred version of mesa-dri (8.04) isn't 
available (should be 8.0.4).

Ross
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] FW: Yocto Project Technical Team Meeting - cancelled

2012-11-05 Thread Liu, Song
BEGIN:VCALENDAR
METHOD:CANCEL
PRODID:Microsoft Exchange Server 2010
VERSION:2.0
BEGIN:VTIMEZONE
TZID:Pacific Standard Time
BEGIN:STANDARD
DTSTART:16010101T02
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010101T02
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
ORGANIZER;CN="Liu, Song":MAILTO:song@intel.com
ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=yocto@yoct
 oproject.org:MAILTO:yocto@yoctoproject.org
DESCRIPTION;LANGUAGE=en-US:When: Tuesday\, November 06\, 2012 8:00 AM-9:00 
 AM (UTC-08:00) Pacific Time (US & Canada).\nWhere: Bridge Info Enclosed\n\
 nNote: The GMT offset above does not reflect daylight saving time adjustme
 nts.\n\n*~*~*~*~*~*~*~*~*~*\n\n\n\n-Original Appointment-\nFrom: L
 iu\, Song\nSent: Monday\, November 05\, 2012 8:52 PM\nTo: Petrisor\, Ilean
 a\; Damian\, Alexandru\; Patel\, Keyur R\; 'Anders Darander'\; Barros Pena
 \, Belen\; Bodke\, Kishore K\; 'Bruce Ashfield'\; 'Daniel Cauchy'\; 'deVri
 es\, Alex'\; 'Dixon\, Brad'\; Dmytriyenko\, Denys\; Erway\, Tracey M\; Fla
 nagan\, Elizabeth\; Hart\, Darren\; 'Hatle\, Mark'\; 'Jeremy Puhlman'\; Kr
 idner\, Jason\; 'lieu...@windriver.com'\; Lock\, Joshua\; 'McCombe\, Kevin
 '\; Moeller\, Thorsten\; 'Sanjay Raina'\; Osier-mixon\, Jeffrey\; 'Polk\, 
 Jeffrey'\; Purdie\, Richard\; 'Ranslam\, Rob'\; Saxena\, Rahul\; Stewart\,
  David C\; Wold\, Saul\; Zanussi\, Tom\; Zhang\, Jessica\; Rifenbark\, Sco
 tt M\; 'Hudson\, Sean'\; Serban\, Laurentiu\; Burton\, Ross\; Mueller\, Ro
 bert\; Arce Moreno\, Abraham\; 'Ravi Vompolu'\; 'Mitchell\, Jeffrey - 0665
  - MITLL'\; 'Sadiq\, Irfan'\; Santana Lopez\, Mario A\; Calles Palacios\, 
 Osvaldo\; 'achau...@mvista.com'\nCc: Szankin\, Maciej\; Popa\, Valentin\; 
 Moses\, Fred\; yocto@yoctoproject.org\; Iorga\, Cristian\; SSD-OTC Romania
  Yocto QA\; Palalau\, AlexandruX\; 'Butler\, Paul'\; Mirea\, Viorel\; Kamb
 le\, Nitin A\; Moisan\, Radu\nSubject: Canceled: Yocto Project Technical T
 eam Meeting - cancelled\nWhen: Tuesday\, November 06\, 2012 8:00 AM-9:00 A
 M (UTC-08:00) Pacific Time (US & Canada).\nWhere: Bridge Info Enclosed\nIm
 portance: High\n\n\nCancelling this week’s meeting due to ELCE. Please e
 mail me if you have anything urgent to discuss.\n\nThanks\,\nSong\n\nWe en
 courage people attending the meeting to logon the Yocto IRC chancel during
  the meeting (optional):\n\nYocto IRC: http://webchat.freenode.net/?channe
 ls=#yocto\nIRC Tutorial: http://www.irchelp.org/irchelp/irctutorial.html\n
 \nConference details\nConference name:Yocto Technical Team\nConfer
 ence date/start time: Tue Jun 26\, 2012 at 10:00 AM Central Daylight T
 ime\nParticipants:   30\nDuration:   60 minutes\nParticipant passcode:
76994298\nDial-in number: 1.972.995.\nUS Toll Free number: 
1.877.561.6828\nBlackBerry users\, click this link to join your confere
 nce as a participant: 1.972.995.x76994298#\nDepending on w
 here you are dialing from\, either your BlackBerry will pause and enter th
 e passcode automatically or you will be prompted to click again to dial th
 e passcode.\n\n\nLocal and Global Access Numbers\n\n\n\n\nCountry\nDial-in
  number\n\nAustralia:\n1800 636 843\n\nCzech Republic:\n242 430 350\n\nChi
 na (Beijing):\nFrom office dial 8-995 or 8784277\nBeijing Out of Offic
 e dial 5878 4277\n\nChina (Shanghai):\nFrom office dial 8-995 or 30733
 22\nShanghai Out of Office dial 2307 3322\n\nChina (Shenzen):\nFrom office
  dial 8-995 or 6007877\nShenzen Out of Office dial 2600 7877\n\nChina 
 (Other Cities):\nFrom IP phone dial 8-995\nOther cities - Non IP phone
  dial 021-23073322\n\nDenmark:\n8060 1400\n\nFinland:\n09 41333477\n\nFran
 ce:\n0497 275888\n\nGermany:\n08161 803232\n\nHolland:\n030 2417490\n\nInd
 ia:\nBSNL subscribers use 1800 425 9996 (Toll Free)\nAirtel subscribers us
 e 0008 009 861 212 (Toll Free)\nFrom TI Campus use 8995\nOthers use 25
 09 9555 (Landline within Bangalore) or\n80 2509 9555 (Outside Bangalore)\n
 \nIsrael:\n09 790 6715\n\nItaly:\n039 69061234 (039 is local city code not
  country code)\n\nJapan:\nFrom TI Campus use 8 995 \nOutside TI use 03
  4331 3777\n\nMalaysia:\nFrom IP phone dial 2643799\nFrom Kuala Lumpur dia
 l 4264 3799\nOutside Kuala Lumpur dial (03)4264 3799\n\nNorway:\n2 295 874
 4\n\nPhilippines:\nFrom Baguio City use 4471177\nFrom Metro Manila area us
 e 8702477\n\nSingapore:\nFrom IP phone dial 3894777\nOutside TI use 6389 4
 777\n\nSouth Korea:\nFrom IP phone dial 5606998\nFrom Seoul dial 5606998\n
 Outside Seoul dial (02)5606998\n\nSweden:\n08 58755577\n\nTaiwan:\nFrom IP
  phone dial 1363\nFrom Taipei dial 2241 1363\nOutside Taipei dial (02)2241
  1363\n\nTurkey:\nLandline Only dial 0811 288 0001\nthen enter 877 633 112
 3\n\nUK:\n01604 663003\n\nUS:\n972 995  or 1877 561 6828\n\n\nRecurr