[yocto] Yocto weekly bug trend charts -- WW16

2012-04-23 Thread Xu, Jiajun
Hi all,
This is the weekly bug trend for WW16. The new submitted vs. fixed bug 
number is 58 vs. 43. WDD number and Open Bug number increased a lot, as 834 and 
171. Bug status of WW16 could be found on 
https://wiki.yoctoproject.org/wiki/Yocto_Bug_Trend.

Best Regards,
Jiajun

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


Re: [yocto] [PATCH 2/9] [meta-intel] Cedartrail: Update SRCREVS and add EFI Support.

2012-04-23 Thread Darren Hart
On 04/10/2012 11:55 AM, kishore.k.bo...@intel.com wrote:
 From: Kishore Bodke kishore.k.bo...@intel.com
 
 Add EFI support and update the SRCREVS for pvr
 version of build.
 Add pvr merge scc file to pull in the pvr patches.
 
 Signed-off-by: Kishore Bodke kishore.k.bo...@intel.com
 ---
  .../linux/linux-yocto-rt_3.0.bbappend  |8 
  .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |   14 --
  2 files changed, 20 insertions(+), 2 deletions(-)
 
 diff --git a/meta-cedartrail/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend 
 b/meta-cedartrail/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
 index 5a95d3e..2248c88 100644
 --- a/meta-cedartrail/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
 +++ b/meta-cedartrail/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
 @@ -3,6 +3,14 @@ COMPATIBLE_MACHINE_cedartrail = cedartrail
  KMACHINE_cedartrail  = cedartrail
  
  KERNEL_FEATURES_append_cedartrail +=  cfg/smp.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/drm-cdvpvr.scc
 +KERNEL_FEATURES_append_cedartrail +=  
 bsp/cedartrail/cedartrail-pvr-merge.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/efi-ext.scc


I suggest moving all of this into the cedartrail.scc file in the
linux-yocto meta branch. These are all core bits required for the BSP,
they don't need to be easily changed from recipe-space.

The exception would be the pvr bits. You can make a single
cedartrail.scc that supports both configs (with and without pvr) and
only modify the pvr one here in recipe space - the rest belongs in
linux-yocto/meta

 +COMPATIBLE_MACHINE_cedartrail-nopvr = cedartrail
 +KMACHINE_cedartrail-nopvr  = cedartrail
 +KERNEL_FEATURES_append_cedartrail-nopvr +=  cfg/smp.scc

Same here.

--
Darren


 +
  
  # Update the following to use a different BSP branch or meta SRCREV
  #KBRANCH_cedartrail  = yocto/standard/preempt-rt/base
 diff --git a/meta-cedartrail/recipes-kernel/linux/linux-yocto_3.0.bbappend 
 b/meta-cedartrail/recipes-kernel/linux/linux-yocto_3.0.bbappend
 index ca59e72..dc15a5e 100644
 --- a/meta-cedartrail/recipes-kernel/linux/linux-yocto_3.0.bbappend
 +++ b/meta-cedartrail/recipes-kernel/linux/linux-yocto_3.0.bbappend
 @@ -3,6 +3,16 @@ FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:
  COMPATIBLE_MACHINE_cedartrail = cedartrail
  KMACHINE_cedartrail  = yocto/standard/cedartrail
  KERNEL_FEATURES_append_cedartrail +=  cfg/smp.scc
 +KERNEL_FEATURES_append_cedartrail += cfg/drm-cdvpvr.scc
 +KERNEL_FEATURES_append_cedartrail += 
 bsp/cedartrail/cedartrail-pvr-merge.scc
 +KERNEL_FEATURES_append_cedartrail += cfg/efi-ext.scc
  
 -SRCREV_machine_pn-linux-yocto_cedartrail ?= 
 f389d310965a56091f688b28ea8be6d9cbb7fbbe
 -SRCREV_meta_pn-linux-yocto_cedartrail ?= 
 04a52a32cbdf0972033b97b83eaa83eb275dfdc9
 +COMPATIBLE_MACHINE_cedartrail-nopvr = cedartrail
 +KMACHINE_cedartrail-nopvr  = yocto/standard/cedartrail
 +KERNEL_FEATURES_append_cedartrail-nopvr +=  cfg/smp.scc
 +
 +SRCREV_machine_pn-linux-yocto_cedartrail ?= 
 81fd8c307997aff37916828dc8b4ef72f5d35a94
 +SRCREV_meta_pn-linux-yocto_cedartrail ?= 
 a4ac64fe873f08ef718e2849b88914725dc99c1c
 +
 +SRCREV_machine_pn-linux-yocto_cedartrail-nopvr ?= 
 81fd8c307997aff37916828dc8b4ef72f5d35a94
 +SRCREV_meta_pn-linux-yocto_cedartrail-nopvr ?= 
 a4ac64fe873f08ef718e2849b88914725dc99c1c


-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH 2/9] [meta-intel] Cedartrail: Update SRCREVS and add EFI Support.

2012-04-23 Thread Bodke, Kishore K

  KERNEL_FEATURES_append_cedartrail +=  cfg/smp.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/drm-cdvpvr.scc
 +KERNEL_FEATURES_append_cedartrail +=  bsp/cedartrail/cedartrail-pvr-
merge.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/efi-ext.scc


I suggest moving all of this into the cedartrail.scc file in the
linux-yocto meta branch. These are all core bits required for the BSP,
they don't need to be easily changed from recipe-space.

The exception would be the pvr bits. You can make a single
cedartrail.scc that supports both configs (with and without pvr) and
only modify the pvr one here in recipe space - the rest belongs in
linux-yocto/meta

Hi Darren,

All the above are specific to pvr only.  (cfg/drm-cdvpvr.scc , 
bsp/cedartrail/cedartrail-pvr-merge.scc, and cfg/efi-ext.scc)
These are not needed for without pvr versions of the BSP.
I think if I move them to Cedartrail.scc, these will get pulled in for no-pvr 
version of the build and may cause the build to fail.

Thanks
Kishore.




 +COMPATIBLE_MACHINE_cedartrail-nopvr = cedartrail
 +KMACHINE_cedartrail-nopvr  = cedartrail
 +KERNEL_FEATURES_append_cedartrail-nopvr +=  cfg/smp.scc

Same here.

--
Darren

--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH 2/9] [meta-intel] Cedartrail: Update SRCREVS and add EFI Support.

2012-04-23 Thread Darren Hart
On 04/23/2012 11:31 AM, Bodke, Kishore K wrote:
 
  KERNEL_FEATURES_append_cedartrail +=  cfg/smp.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/drm-cdvpvr.scc
 +KERNEL_FEATURES_append_cedartrail +=  bsp/cedartrail/cedartrail-pvr-
 merge.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/efi-ext.scc


 I suggest moving all of this into the cedartrail.scc file in the
 linux-yocto meta branch. These are all core bits required for the BSP,
 they don't need to be easily changed from recipe-space.

 The exception would be the pvr bits. You can make a single
 cedartrail.scc that supports both configs (with and without pvr) and
 only modify the pvr one here in recipe space - the rest belongs in
 linux-yocto/meta
 
 Hi Darren,
 
 All the above are specific to pvr only.  

You can't use EFI to boot the system with the pvr driver?

--
Darren

 (cfg/drm-cdvpvr.scc , bsp/cedartrail/cedartrail-pvr-merge.scc, and 
 cfg/efi-ext.scc)
 These are not needed for without pvr versions of the BSP.
 I think if I move them to Cedartrail.scc, these will get pulled in for no-pvr 
 version of the build and may cause the build to fail.
 
 Thanks
 Kishore.
 
 


 +COMPATIBLE_MACHINE_cedartrail-nopvr = cedartrail
 +KMACHINE_cedartrail-nopvr  = cedartrail
 +KERNEL_FEATURES_append_cedartrail-nopvr +=  cfg/smp.scc

 Same here.

 --
 Darren

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


-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Agenda: Yocto Project Technical Team Meeting - Tuesday, April 24, 2012 8:00 AM-9:00 AM (UTC-08:00) Pacific Time (US Canada).

2012-04-23 Thread Guo Tang
Hi, Gentlemen,

Is this meeting an open meeting, or limited to Yocto team only?

Thanks,
Guo

On Mon, Apr 23, 2012 at 7:14 PM, Liu, Song song@intel.com wrote:

 Agenda

 * Opens collection - 5 min (Song)
 * Yocto 1.2 M4 status - 15 min (Song/Team)
 * Yocto 1.3 planning - processes - 5 min (Song)
 * SWAT team rotation: Beth - Paul
 * Opens - 10 min
 * Team Sharing - 20 min


 -Original Appointment-



 Conference details
 Conference name:
 Yocto Technical Team
 Conference date/start time:
 Tue Jun 28, 2011 at 10:00 AM Central Daylight Time
 Participants:
 30
 Duration:
 60 minutes
 Participant passcode:
 49611427
 Dial-in number:
 1.972.995.
 US Toll Free number:
 1.877.561.6828
 BlackBerry users, click this link to join your conference as a chairperson:
 1.972.995.x67184230#
 BlackBerry users, click this link to join your conference as a participant:
 1.972.995.x49611427#

 Depending on where you are dialing from, either your BlackBerry will pause
 and enter the passcode automatically or you will be prompted to click again
 to dial the passcode.

 Local and Global Access Numbers


 Country
 Dial-in number
 Australia:
 1800 636 843
 Czech Republic:
 242 430 350
 China (Beijing):
 From office dial 8-995 or 8784277
 Beijing Out of Office dial 5878 4277
 China (Shanghai):
 From office dial 8-995 or 3073322
 Shanghai Out of Office dial 2307 3322
 China (Shenzen):
 From office dial 8-995 or 6007877
 Shenzen Out of Office dial 2600 7877
 China (Other Cities):
 From IP phone dial 8-995
 Other cities - Non IP phone dial 021-23073322
 Denmark:
 8060 1400
 Finland:
 09 41333477
 France:
 0497 275888
 Germany:
 08161 803232
 Holland:
 030 2417490
 India:
 BSNL subscribers use 1800 425 9996 (Toll Free) Airtel subscribers use
 0008 009 861 212 (Toll Free) From TI Campus use 8995 Others use 2509
 9555 (Landline within Bangalore) or
 80 2509 9555 (Outside Bangalore)
 Israel:
 09 790 6715
 Italy:
 039 69061234 (039 is local city code not country code)
 Japan:
 From TI Campus use 8 995 
 Outside TI use 03 4331 3777
 Malaysia:
 From IP phone dial 2643799
 From Kuala Lumpur dial 4264 3799
 Outside Kuala Lumpur dial (03)4264 3799
 Norway:
 2 295 8744
 Philippines:
 From Baguio City use 4471177
 From Metro Manila area use 8702477
 Singapore:
 From IP phone dial 3894777
 Outside TI use 6389 4777
 South Korea:
 From IP phone dial 5606998
 From Seoul dial 5606998
 Outside Seoul dial (02)5606998
 Sweden:
 08 58755577
 Taiwan:
 From IP phone dial 1363
 From Taipei dial 2241 1363
 Outside Taipei dial (02)2241 1363
 Turkey:
 Landline Only dial 0811 288 0001
 then enter 877 633 1123
 UK:
 01604 663003
 US:
 972 995  or 1877 561 6828

 Recurring conferences
 First scheduled conference:
 Tue Jun 28, 2011
 Recurrence frequency:
 Weekly - Every 1 week(s) on Tuesday
 Recurrence ends:
 End on Fri Jun 22, 2012, 10:40 AM CDT


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

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


Re: [yocto] [PATCH 2/9] [meta-intel] Cedartrail: Update SRCREVS and add EFI Support.

2012-04-23 Thread Bodke, Kishore K


-Original Message-
From: Hart, Darren
Sent: Monday, April 23, 2012 12:33 PM
To: Bodke, Kishore K
Cc: yocto@yoctoproject.org; Zanussi, Tom
Subject: Re: [yocto] [PATCH 2/9] [meta-intel] Cedartrail: Update SRCREVS
and add EFI Support.

On 04/23/2012 11:31 AM, Bodke, Kishore K wrote:

  KERNEL_FEATURES_append_cedartrail +=  cfg/smp.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/drm-cdvpvr.scc
 +KERNEL_FEATURES_append_cedartrail +=  bsp/cedartrail/cedartrail-
pvr-
 merge.scc
 +KERNEL_FEATURES_append_cedartrail +=  cfg/efi-ext.scc


 I suggest moving all of this into the cedartrail.scc file in the
 linux-yocto meta branch. These are all core bits required for the
BSP,
 they don't need to be easily changed from recipe-space.

 The exception would be the pvr bits. You can make a single
 cedartrail.scc that supports both configs (with and without pvr) and
 only modify the pvr one here in recipe space - the rest belongs in
 linux-yocto/meta

 Hi Darren,

 All the above are specific to pvr only.

You can't use EFI to boot the system with the pvr driver?

EFI is also for pvr build only.  For without pvr builds EFI boot is not 
supported.

Thanks
Kishore.


--
Darren

 (cfg/drm-cdvpvr.scc , bsp/cedartrail/cedartrail-pvr-merge.scc, and
cfg/efi-ext.scc)
 These are not needed for without pvr versions of the BSP.
 I think if I move them to Cedartrail.scc, these will get pulled in for
no-pvr version of the build and may cause the build to fail.

 Thanks
 Kishore.




 +COMPATIBLE_MACHINE_cedartrail-nopvr = cedartrail
 +KMACHINE_cedartrail-nopvr  = cedartrail
 +KERNEL_FEATURES_append_cedartrail-nopvr +=  cfg/smp.scc

 Same here.

 --
 Darren

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


--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto