[yocto] Variable locality too restricted.

2011-12-07 Thread David Nyström
Hi, I'm trying to create a setup for qemuppc. Goals: core-image-minimal + virtual/kernel. core-image-minimal + virtual/kernel with modified .config for debug flavoured kernel. Problems: PREFERRED_PROVIDER seems to be restricted to local.conf, distro and machine. Creating another machine for

Re: [yocto] Variable locality too restricted.

2011-12-07 Thread Chris Larson
On Wed, Dec 7, 2011 at 6:44 AM, David Nyström david.nyst...@enea.com wrote: I'm trying to create a setup for qemuppc. Goals: core-image-minimal + virtual/kernel. core-image-minimal + virtual/kernel with modified .config for debug flavoured kernel. Problems: PREFERRED_PROVIDER seems to be

Re: [yocto] Variable locality too restricted.

2011-12-07 Thread Paul Eggleton
On Wednesday 07 December 2011 06:52:25 Chris Larson wrote: On Wed, Dec 7, 2011 at 6:44 AM, David Nyström david.nyst...@enea.com wrote: I'm trying to create a setup for qemuppc. Goals: core-image-minimal + virtual/kernel. core-image-minimal + virtual/kernel with modified .config for

[yocto] [PATCH 1/3] x86/rtc: Don't recursively acquire rtc_lock

2011-12-07 Thread Darren Hart
From: Matt Fleming matt.flem...@intel.com A deadlock was introduced on x86 in commit ef68c8f87ed1 (x86: Serialize EFI time accesses on rtc_lock) because efi_get_time() and friends can be called with rtc_lock already held by read_persistent_time(), e.g.: timekeeping_init()

[yocto] [PATCH 2/3] x86, efi: Make efi_call_phys_prelog() CONFIG_RELOCATABLE-aware

2011-12-07 Thread Darren Hart
From: Matt Fleming matt.flem...@intel.com efi_call_phys_prelog() assumes that the kernel was loaded at a physical address within the first 8MB of ram, usually 0x100. However, this isn't the case with a CONFIG_RELOCATABLE=y kernel which could have been loaded anywhere in the physical address

[yocto] [PATCH 3/3] x86, efi: Convert efi_phys_get_time() args to physical addresses

2011-12-07 Thread Darren Hart
From: Maurice Ma maurice...@intel.com Because callers of efi_phys_get_time() pass virtual stack addresses as arguments, we need to find their corresponding physical addresses and when calling GetTime() in physical mode. Without this patch the following line is printed on boot, Oops:

Re: [yocto] [PATCH 0/3][linux-yocto-3.0] EFI support backports

2011-12-07 Thread Bruce Ashfield
On 11-12-07 02:19 PM, Darren Hart wrote: From: Darren Hartdvh...@linux.intel.com The following patches have been merged back from upstream to address various issues with the EFI boot process. These are intended to be merged with yocto/standard/base. Please watch for a subsequent patch adding a

Re: [yocto] Yocto Project community survey

2011-12-07 Thread Jeff Osier-Mixon
Hi again folks - just a reminder that this survey is active until Dec 15. Thanks to the many people who have already responded. If you haven't yet, it really does only take about 2 minutes and the data is extremely helpful to us. thanks! On Sat, Dec 3, 2011 at 10:10 AM, Jeff Osier-Mixon

[yocto] [PATCH 1/1] Add EFI scc and cfg files

2011-12-07 Thread Darren Hart
Basic EFI support only requires CONFIG_EFI=y, this is sufficient for some boards, and desirable for small configs. This is done with efi.scc. Additional support for CONFIG_EFI_VARS, CONFIG_EFI_PARTITION, and CONFIG_FB_EFI is provided via efi-ext.scc (extended) as this pulls in the block layer,

[yocto] [PATCH 0/4][meta-intel] fri2: Update display, wifi, and serial console

2011-12-07 Thread Darren Hart
The following changes since commit c3e12aa981e97261093abee05bb0301c35f54c23: meta-emenlow: switch edison back to linux-yocto-2.6.37 kernel (2011-10-11 13:54:59 -0500) are available in the git repository at: git://git.yoctoproject.org/meta-intel-contrib dvhart/edison/fri2

[yocto] [PATCH 1/4] fri2: use ttyS0, 115200 for serial console and syslinux

2011-12-07 Thread Darren Hart
The FRI2 has an optional serial expansion board. Enable the use of this as a console for both syslinux and the OS. Note: while the settings all appear to be correct, the serial port is not working on my test device in syslinux or the getty. The kernel messages do make their way to the

[yocto] [PATCH 3/4] linux-firmware: append support for the iwlwifi-6000g2a-5 firmware

2011-12-07 Thread Darren Hart
Add firmware required by the Intel Centrino Adnanced-N 6205 mini-pcie card. The content is already available in the linux-firmware repository, this patch just adds the meta-data to include the right files and define a package. Signed-off-by: Darren Hart dvh...@linux.intel.com ---

Re: [yocto] [PATCH 0/4][meta-intel] fri2: Update display, wifi, and serial console

2011-12-07 Thread Darren Hart
This series applies to edison. On 12/07/2011 04:29 PM, Darren Hart wrote: The following changes since commit c3e12aa981e97261093abee05bb0301c35f54c23: meta-emenlow: switch edison back to linux-yocto-2.6.37 kernel (2011-10-11 13:54:59 -0500) are available in the git repository at:

[yocto] [PATCH 0/7][meta-intel] fri2: Update display, wifi, serial, and EFI

2011-12-07 Thread Darren Hart
This series applies to the master branch. The following changes since commit 3d5574efe623923b24f78d77f1d4bd8ef8432698: meta-emenlow: use original libva (2011-12-06 09:27:08 -0600) are available in the git repository at: git://git.yoctoproject.org/meta-intel-contrib dvhart/fri2

[yocto] [PATCH 4/7] fri2: include linux-firmware for iwlwifi in images

2011-12-07 Thread Darren Hart
Include the firmware package for the iwlwifi card for task-base based images using the MACHINE_EXTRA_RRECOMMENDS variable. This will exclude the firmware from being installed in core-image-minimal, but it doesn't have the tooling required to connect over wifi anyway. Signed-off-by: Darren Hart

[yocto] [PATCH 5/7] fri2: Add pcbios and efi to MACHINE_FEATURES

2011-12-07 Thread Darren Hart
Enable both legacy pcbios and efi booting for live images using the new bootimg and grub-efi code. Signed-off-by: Darren Hart dvh...@linux.intel.com --- meta-fri2/conf/machine/fri2-noemgd.conf |2 +- meta-fri2/conf/machine/fri2.conf|2 +- 2 files changed, 2 insertions(+), 2

[yocto] [PATCH 6/7] fri2: Add efi-ext to KERNEL_FEATURES

2011-12-07 Thread Darren Hart
The fri2 can boot via EFI or legacy PCBIOS. Add support for EFI. Signed-off-by: Darren Hart dvh...@linux.intel.com --- .../recipes-kernel/linux/linux-yocto_3.0.bbappend |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [yocto] [PATCH 0/1][linux-yocto-3.0] EFI config fragments

2011-12-07 Thread Bruce Ashfield
On 11-12-07 5:50 PM, Darren Hart wrote: The following changes since commit 67ce7623909cef63927fd145026aaf371cf4abf1: meta: bumping kver to v3.0.10 (2011-11-23 00:33:19 -0500) Merged. Will push it out in the morning. Bruce are available in the git repository at: