[yocto] [PATCH 0/1] Add LICENSE_FLAGS_WHITELIST example

2012-02-01 Thread tom . zanussi
From: Tom Zanussi Update meta-yocto/local.conf.sample.extended with an example using LICENSE_FLAGS_WHITELIST with the current set of commercial licenses. v2: same as before, but rebased to current The following changes since commit 8d4d9a15c4947e55ed217c6035e76fcff724e544: Koen Kooi (1

[yocto] [PATCH 1/1] meta-yocto/local.conf.sample.extended: add LICENSE_FLAGS_WHITELIST section

2012-02-01 Thread tom . zanussi
From: Tom Zanussi Add a new section for LICENSE_FLAGS_WHITELIST, containing a list of the current packages with LICENSE_FLAGS. Signed-off-by: Tom Zanussi --- meta-yocto/conf/local.conf.sample.extended | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/meta

Re: [yocto] Gaku music player

2012-02-01 Thread Tom Zanussi
On Wed, 2012-02-01 at 19:57 -0500, jfabernathy wrote: > On 02/01/2012 07:02 PM, Tom Zanussi wrote: > > On Wed, 2012-02-01 at 17:39 -0500, jfabernathy wrote: > >> On 02/01/2012 04:47 PM, Tom Zanussi wrote: > >>> On Wed, 2012-02-01 at 13:44 -0800, Darren Hart wrote:

Re: [yocto] needed site is down???

2012-02-02 Thread Tom Zanussi
On Thu, 2012-02-02 at 11:31 -0800, Joshua Lock wrote: > On 02/02/12 11:15, James Abernathy wrote: > > On Thu, Feb 2, 2012 at 2:11 PM, Joshua Lock > > wrote: > > > > > > > > On 02/02/12 09:44, jfabernathy wrote: > > > > On 02/02/2012 12:36 PM, jfabernathy wr

Re: [yocto] Gaku music player

2012-02-02 Thread Tom Zanussi
On Thu, 2012-02-02 at 17:42 -0500, James Abernathy wrote: > > > On Wed, Feb 1, 2012 at 8:20 PM, Tom Zanussi > wrote: > On Wed, 2012-02-01 at 19:57 -0500, jfabernathy wrote: > > On 02/01/2012 07:02 PM, Tom Zanussi wrote: > > > On

[yocto] [PATCH 0/1] fri2: use emgd-1.10

2012-02-03 Thread tom . zanussi
From: Tom Zanussi Please pull into linux-yocto-3.0. The following changes since commit 70e86dc937a40c0dc7c84549de0e86bb09f12da3: Bruce Ashfield (1): meta/rt: update rt patch cache are available in the git repository at: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib.git

[yocto] [PATCH 1/1] fri2: use emgd-1.10

2012-02-03 Thread tom . zanussi
From: Tom Zanussi Use the yocto/emgd-1.10 branch in place of yocto/emgd. Signed-off-by: Tom Zanussi --- meta/cfg/kernel-cache/bsp/fri2/fri2.scc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/cfg/kernel-cache/bsp/fri2/fri2.scc b/meta/cfg/kernel-cache/bsp/fri2

Re: [yocto] Unable to fetch file://lib for package emgd in yoctyo 1.2 (aka M2)

2012-02-07 Thread Tom Zanussi
On Tue, 2012-02-07 at 10:12 -0500, autif khan wrote: > I am bitbaking core image sato for machine corwnbay (with the emgd > driver) and the emgd-driver-bin recipe seems to fail. > > Here is the error. I searched the archives, but could not find anything. > > Please advise. It looks like the prob

Re: [yocto] [PATCH 0/2] meta-intel: improve interactions with common layer

2012-02-25 Thread Tom Zanussi
On Fri, 2012-02-24 at 09:38 +, Paul Eggleton wrote: > At the moment it is possible to enable one of the sub-layers of > meta-intel (e.g. meta-n450) without also enabling the meta-intel common > layer, which can lead to some nasty parsing errors. Here are two patches > to handle this situation i

[yocto] [PATCH 0/8] Yocto BSP tools

2012-03-01 Thread tom . zanussi
From: Tom Zanussi This patchset implements the 'yocto-bsp' and 'yocto-kernel' BSP tools previously described in some detail in this RFC posting: https://lists.yoctoproject.org/pipermail/yocto/2011-December/006111.html With the functionality implemented by this patchset,

[yocto] [PATCH 2/8] yocto-bsp-tools: add bsp library

2012-03-01 Thread tom . zanussi
From: Tom Zanussi Create a home for the yocto bsp tools. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/__init__.py | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 scripts/lib/bsp/__init__.py diff --git a/scripts/lib/bsp/__init__.py b/scripts

[yocto] [PATCH 5/8] yocto-bsp-tools: add help/usage

2012-03-01 Thread tom . zanussi
From: Tom Zanussi This is essentially 'the documentation' for the Yocto BSP tools, along with a few related functions. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/help.py | 588 +++ 1 files changed, 588 insertions(+), 0 deletions(-) c

[yocto] [PATCH 7/8] yocto-bsp: new script

2012-03-01 Thread tom . zanussi
From: Tom Zanussi Implementation of the 'yocto-bsp' command-line tool, for creating BSPs and listing BSP properties. Signed-off-by: Tom Zanussi --- scripts/yocto-bsp | 131 + 1 files changed, 131 insertions(+), 0 deletions(-) c

[yocto] [PATCH 8/8] yocto-kernel: new script

2012-03-01 Thread tom . zanussi
From: Tom Zanussi Implementation of the 'yocto-kernel' command-line tool, for modifying the kernel portion of a Yocto BSP. Signed-off-by: Tom Zanussi --- scripts/yocto-kernel | 219 ++ 1 files changed, 219 insertions(+), 0 deletions(

[yocto] [PATCH 6/8] yocto-bsp: add some useful constants

2012-03-01 Thread tom . zanussi
From: Tom Zanussi Some constants used by the templating engine. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/tags.py | 39 +++ 1 files changed, 39 insertions(+), 0 deletions(-) create mode 100644 scripts/lib/bsp/tags.py diff --git a/scripts/lib/bsp

[yocto] [PATCH 4/8] yocto-bsp: add kernel interface

2012-03-01 Thread tom . zanussi
From: Tom Zanussi Yocto BSP kernel-related functions, for interacting with the kernel tools and implementing the machinery behind the 'yocto-kernel' command. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/kernel.py | 679 + 1 files ch

[yocto] [PATCH 3/8] yocto-bsp: add templating engine

2012-03-01 Thread tom . zanussi
From: Tom Zanussi The main implementation of the Yocto BSP templating engine, essentially containing the internal implementation of the 'yocto-bsp create' and yocto-bsp list' commands. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/e

Re: [yocto] [PATCH 0/8] Yocto BSP tools

2012-03-02 Thread Tom Zanussi
On Fri, 2012-03-02 at 08:24 -0800, Darren Hart wrote: > > On 03/01/2012 11:01 PM, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > > > This patchset implements the 'yocto-bsp' and 'yocto-kernel' BSP tools > > previously described

Re: [yocto] [PATCH 1/8] yocto-bsp: add BSP template files

2012-03-02 Thread Tom Zanussi
On Fri, 2012-03-02 at 08:35 -0800, Darren Hart wrote: > > On 03/01/2012 11:01 PM, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > > > BSP template files for all supported Yocto architectures, plus qemu > > versions of the same. > > > > Signed-of

Re: [yocto] [PATCH 3/8] yocto-bsp: add templating engine

2012-03-02 Thread Tom Zanussi
On Fri, 2012-03-02 at 08:57 -0800, Darren Hart wrote: > > On 03/01/2012 11:01 PM, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > > > The main implementation of the Yocto BSP templating engine, > > essentially containing the internal implementation of the &#

Re: [yocto] [PATCH 8/8] yocto-kernel: new script

2012-03-02 Thread Tom Zanussi
On Fri, 2012-03-02 at 09:23 -0800, Darren Hart wrote: > > On 03/01/2012 11:01 PM, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > > > Implementation of the 'yocto-kernel' command-line tool, for modifying > > the kernel portion of a Yocto

Re: [yocto] [PATCH 4/8] yocto-bsp: add kernel interface

2012-03-02 Thread Tom Zanussi
On Fri, 2012-03-02 at 09:11 -0800, Darren Hart wrote: > > On 03/01/2012 11:01 PM, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > > > Yocto BSP kernel-related functions, for interacting with the kernel > > tools and implementing the machinery behind

Re: [yocto] some observations about yocto wiki page, "from git checkout to meta-intel BSP"

2012-03-04 Thread Tom Zanussi
On Sun, 2012-03-04 at 08:09 -0500, Robert P. J. Day wrote: > yes, i know it's an editable wiki but i'd rather someone else make > the changes just in case i'm misreading something. it's early, and > there's only decaf in the place. this is bad. > > anyway, using this page as grist for discussi

Re: [yocto] some observations about yocto wiki page, "from git checkout to meta-intel BSP"

2012-03-04 Thread Tom Zanussi
On Sun, 2012-03-04 at 16:14 +, Stewart, David C wrote: > Yeah, the example is pretty old, dating back to the 1.0 (bernard) release. > > Tom - it might be time to retire it, you think? > Apparently, they're still useful to people, so I think updating rather than retiring them makes more sens

[yocto] [PATCH 0/5] meta-intel: update emenlow checksums

2012-03-05 Thread tom . zanussi
From: Tom Zanussi Several recipes need checksums, add them. The following changes since commit df18b721f86f0737c0f302e49b27ea232c70e683: meta-intel: add LAYERDEPENDS for layers needing the meta-intel common layer (2012-02-24 14:52:01 -0600) are available in the git repository at: git

[yocto] [PATCH 1/5] meta-emenlow: add SRC_URI checksums to xpsb-glx

2012-03-05 Thread tom . zanussi
From: Tom Zanussi Add md5 and sha256 checksums to the recipe. Signed-off-by: Tom Zanussi --- .../recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb b/meta-emenlow

[yocto] [PATCH 3/5] meta-emenlow: add SRC_URI checksums to xserver-xorg-video-psb

2012-03-05 Thread tom . zanussi
From: Tom Zanussi Add md5 and sha256 checksums to the recipe. Signed-off-by: Tom Zanussi --- .../xserver-xorg-video-psb_0.32.1.bb |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta-emenlow/recipes-graphics/xserver-xorg-video-psb/xserver-xorg-video

[yocto] [PATCH 4/5] meta-emenlow: add SRC_URI checksums to psb-firmware

2012-03-05 Thread tom . zanussi
From: Tom Zanussi Add md5 and sha256 checksums to the recipe. Signed-off-by: Tom Zanussi --- .../psb-firmware/psb-firmware_0.30.bb |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta-emenlow/recipes-graphics/psb-firmware/psb-firmware_0.30.bb b/meta

[yocto] [PATCH 5/5] meta-emenlow: add SRC_URI checksums to libva

2012-03-05 Thread tom . zanussi
From: Tom Zanussi Add md5 and sha256 checksums to the recipe. Signed-off-by: Tom Zanussi --- .../recipes-graphics/libva/libva_0.31.0.bb |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta-emenlow/recipes-graphics/libva/libva_0.31.0.bb b/meta-emenlow

[yocto] [PATCH 2/5] meta-emenlow: add SRC_URI checksums to xserver-psb

2012-03-05 Thread tom . zanussi
From: Tom Zanussi Add md5 and sha256 checksums to the recipe. Signed-off-by: Tom Zanussi --- .../xorg-xserver/xserver-psb_1.7.99.2.bb |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta-emenlow/recipes-graphics/xorg-xserver/xserver-psb_1.7.99.2.bb b/meta

Re: [yocto] iptables not building on master

2012-03-05 Thread Tom Zanussi
Hi Autif, I'm sure it's nothing to do with crownbay or meta-intel, but I'll fire off a build anyway. I only have my laptop available, so it may take all night, but will let you know what I find. FWIW I normally build on master of both meta-intel and poky and haven't seen this, so it must be very

Re: [yocto] iptables not building on master

2012-03-05 Thread Tom Zanussi
exuan > > > > > >> -----Original Message- > >> From: yocto-boun...@yoctoproject.org > >> [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Tom Zanussi > >> Sent: Tuesday, March 06, 2012 1:10 PM > >> To: Autif Khan > >> Cc: yoct

[yocto] [PATCH 0/1] meta-intel: use distro setting for libc headers

2012-03-06 Thread tom . zanussi
From: Tom Zanussi This patch removes the PREFERRED_PROVIDER setting libc headers in ia32-base in preference to the disro setting, which it should be using instead. The following changes since commit 87f409827684e39484900a20531c8a14c0cb91e6: meta-emenlow: add SRC_URI checksums to libva (2012

[yocto] [PATCH 1/1] ia32-base: remove libc-headers PREFERRED_PROVIDER

2012-03-06 Thread tom . zanussi
From: Tom Zanussi Let the distro do this. Signed-off-by: Tom Zanussi --- conf/machine/include/ia32-base.inc |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/conf/machine/include/ia32-base.inc b/conf/machine/include/ia32-base.inc index 8556d6e..1fb09b1 100644 --- a

Re: [yocto] iptables not building on master

2012-03-06 Thread Tom Zanussi
On Tue, 2012-03-06 at 13:14 +0100, Koen Kooi wrote: > Op 6 mrt. 2012, om 07:48 heeft Tom Zanussi het volgende geschreven: > > > In the meantime, if you remove the line: > > > > PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto" > > Why

[yocto] [PATCH 1/3][KERNEL] yocto/emgd: emgd 1.10 driver

2012-03-12 Thread tom . zanussi
From: Tom Zanussi The starting-point code that subsequent patches will modify. This is a straight copy of the code in the emgd 1.10 emgd driver, specifically IEMGD_HEAD_Linux/common/drm/emgd_drm.tgz from LIN_EMGD_1_10_RC_2209.tgz, the 'Linux Tar Ball' release downloaded

[yocto] [PATCH 0/3][KERNEL] emgd 1.10 for linux-yocto 3.2

2012-03-12 Thread tom . zanussi
From: Tom Zanussi Hi Bruce, Please pull in the emgd-1.10 topic branch below into linux-yocto-3.2. Thanks, Tom The following changes since commit 417fc778a86e81303bab5883b919ee422ec51c04: Bruce Ashfield (1): perf: hard-code NO_LIBPERL/NO_LIBPYTHON are available in the git

[yocto] [PATCH 2/3][KERNEL] yocto/emgd: initial build fixups

2012-03-12 Thread tom . zanussi
From: Tom Zanussi Add emgd config option (DRM_EGD) and modify Makefiles for in-tree builds. Signed-off-by: Tom Zanussi --- drivers/gpu/drm/Kconfig |9 + drivers/gpu/drm/Makefile |1 + drivers/gpu/drm/emgd/Makefile | 40 3

[yocto] [PATCH 3/3][KERNEL] yocto/emgd: linux 3.2-related build fixups

2012-03-12 Thread tom . zanussi
From: Tom Zanussi Fix build errors caused by changes to kernel interfaces introduced by linux 3.2 such as: error: 'THIS_MODULE' undeclared here (not in a function) due to a missing THIS_MODULE definition which can be found in linux/export.h. It also fixes a ream of errors li

[yocto] [PATCH 0/2] meta-intel: crownbay 3.2 update

2012-03-12 Thread tom . zanussi
From: Tom Zanussi This updates crownbay and crownbay-noemgd to the 3.2 kernel. It also fixes a problem seen with a missing emgd dependency when testing. The following changes since commit d9132cc66316be45f44beeea6eba734bb3ab337d: Tom Zanussi (1): ia32-base: remove libc-headers

[yocto] [PATCH 2/2] ia32-base: add libva display dependencies to emgd xserver

2012-03-12 Thread tom . zanussi
From: Tom Zanussi libgstmixvideoplugin.so is being blacklisted due to a missing libva-tpi library, so add it and make the other two libva display libraries available while we're at it. Signed-off-by: Tom Zanussi --- conf/machine/include/ia32-base.inc |3 +++ 1 files changed, 3 inser

[yocto] [PATCH 1/2] meta-crownbay: switch to linux-yocto-3.2 kernel

2012-03-12 Thread tom . zanussi
From: Tom Zanussi Switch crownbay and crownbay-noemgd to the 3.2 kernel. Signed-off-by: Tom Zanussi --- meta-crownbay/conf/machine/crownbay-noemgd.conf|2 ++ meta-crownbay/conf/machine/crownbay.conf |2 ++ .../linux/linux-yocto-rt_3.2.bbappend | 20

[yocto] [PATCH 0/1] meta-intel: sugarbay 3.2 update

2012-03-13 Thread tom . zanussi
From: Tom Zanussi This updates sugarbay to the 3.2 kernel. The following changes since commit d9132cc66316be45f44beeea6eba734bb3ab337d: Tom Zanussi (1): ia32-base: remove libc-headers PREFERRED_PROVIDER are available in the git repository at: git://git.yoctoproject.org/meta

[yocto] [PATCH 1/1] meta-sugarbay: switch to linux-yocto-3.2 kernel

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Switch sugarbay to the 3.2 kernel and update kernel SRCREVs. Signed-off-by: Tom Zanussi --- meta-sugarbay/conf/machine/sugarbay.conf |2 ++ .../linux/linux-yocto-rt_3.2.bbappend |8 .../recipes-kernel/linux/linux-yocto_3.2.bbappend

[yocto] [PATCH 1/1] meta-jasperforest: switch to linux-yocto-3.2 kernel

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Switch jasperforest to the 3.2 kernel. Signed-off-by: Tom Zanussi --- meta-jasperforest/conf/machine/jasperforest.conf |2 ++ .../linux/linux-yocto-rt_3.2.bbappend |8 .../recipes-kernel/linux/linux-yocto_3.2.bbappend |9 + 3

[yocto] [PATCH 0/1] meta-intel: jasperforest 3.2 update

2012-03-13 Thread tom . zanussi
From: Tom Zanussi This updates jasperforest to the 3.2 kernel. The following changes since commit d9132cc66316be45f44beeea6eba734bb3ab337d: Tom Zanussi (1): ia32-base: remove libc-headers PREFERRED_PROVIDER are available in the git repository at: git://git.yoctoproject.org/meta

Re: [yocto] [PATCH 1/2] meta-crownbay: switch to linux-yocto-3.2 kernel

2012-03-13 Thread Tom Zanussi
On Tue, 2012-03-13 at 12:30 -0700, Darren Hart wrote: > Hi Tom, > > Some thoughts on this with respect to cleaning up and simplifying the > recipes per our earlier discussions. > > On 03/12/2012 09:37 PM, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > &g

Re: [yocto] [PATCH 1/2] meta-crownbay: switch to linux-yocto-3.2 kernel

2012-03-13 Thread Tom Zanussi
On Tue, 2012-03-13 at 22:40 -0400, Bruce Ashfield wrote: > On Tue, Mar 13, 2012 at 3:44 PM, Tom Zanussi wrote: > > On Tue, 2012-03-13 at 12:30 -0700, Darren Hart wrote: > >> Hi Tom, > >> > >> Some thoughts on this with respect to cleaning up and simplify

[yocto] [PATCH 00/17][KERNEL] emenlow updates for linux-yocto 3.2

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Hi Bruce, Please pull this patchset into linux-yocto-3.2, standard/default/emenlow. Thanks, Tom The following changes since commit 764090858adaa214395b3667fe1929892c2083f7: Darren Hart (1): pch_uart: Use existing default_baud in setup_console are available in the

[yocto] [PATCH 03/17][KERNEL] drm: apply psb-kernel-source package's build.patch

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Build mods required for compilation. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/drm_agpsupport.c |2 +- drivers/gpu/drm-psb/drm_edid.c |3 ++- drivers/gpu/drm-psb/drm_memory.c |4 ++-- drivers/gpu/drm-psb/drm_os_linux.h |6 -- drivers

[yocto] [PATCH 04/17][KERNEL] drm: intel_ldvs.c: add missing arg to backlight_device_register() call

2012-03-13 Thread tom . zanussi
From: Tom Zanussi backlight_device_register() added a backlight_props param - give it another arg to keep it happy. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/intel_lvds.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm-psb/intel_lvds.c b

[yocto] [PATCH 05/17][KERNEL] emenlow: switch to psb

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Use drm-psb instead of drm for emenlow. Signed-off-by: Tom Zanussi --- drivers/gpu/Makefile |2 +- drivers/video/Kconfig |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/Makefile b/drivers/gpu/Makefile index cc92778..7585044 100644

[yocto] [PATCH 06/17][KERNEL] drm: Fix psb ioctl assignment

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Replace drm_ioctl with drm_unlocked_ioctl. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/drm_drv.c |2 ++ drivers/gpu/drm-psb/psb_drv.c |2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm-psb/drm_drv.c b/drivers/gpu/drm-psb

[yocto] [PATCH 07/17][KERNEL] drm-psb: remove BKL remnants

2012-03-13 Thread tom . zanussi
From: Tom Zanussi replace lock/unlock_kernel with the drm_global_mutex from 3.0. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/drmP.h |3 ++- drivers/gpu/drm-psb/drm_drv.c|4 ++-- drivers/gpu/drm-psb/drm_fops.c | 10 ++ drivers/gpu/drm-psb/drm_ioc32.c

[yocto] [PATCH 08/17][KERNEL] drm-psb: update spinlock initializers

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Update SPIN_LOCK_UNLOCKED users to __ form. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/drm_compat.h |2 +- drivers/gpu/drm-psb/drm_memory.c |2 +- drivers/gpu/drm-psb/drm_memory_debug.c |2 +- drivers/gpu/drm-psb/drm_memory_debug.h |2

[yocto] [PATCH 09/17][KERNEL] drm-psb: remove call to agp_flush_chipset

2012-03-13 Thread tom . zanussi
From: Tom Zanussi agp_flush_chipset was removed because intel drm calls the chipset functions directly, and psb doesn't implement a chipset_flush() function anyway. Leave drm_agp_flush_chipset exported for modules that might be expecting it to be there though. Signed-off-by: Tom Za

[yocto] [PATCH 10/17][KERNEL] drm-psb: remove includes of nonexistent i2c-id.h

2012-03-13 Thread tom . zanussi
From: Tom Zanussi i2c-id.h is gone, don't include it. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/intel_drv.h |1 - drivers/gpu/drm-psb/intel_i2c.c |1 - drivers/gpu/drm-psb/psb_i2c.c |1 - 3 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/dr

[yocto] [PATCH 12/17][KERNEL] drm-psb: use console_lock/unlock()

2012-03-13 Thread tom . zanussi
From: Tom Zanussi The acquire/release_console_sem() functions were renamed to console_lock/unlock(), so change the calls. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/psb_fb.c | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/gpu/drm-psb

[yocto] [PATCH 13/17][KERNEL] drm-psb: add DRM_UNLOCKED flag

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Add DRM_UNLOCKED to allow us to call handlers that do their own locking without the global lock. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/drmP.h|1 + drivers/gpu/drm-psb/drm_drv.c | 10 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff

[yocto] [PATCH 14/17][KERNEL] drm-psb: mark unlocked ioctls

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Mark the ioctls that already do their own locking DRM_UNLOCKED. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/drm_drv.c | 24 drivers/gpu/drm-psb/psb_drv.c | 10 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a

[yocto] [PATCH 15/17][KERNEL] drm-psb: initialize backlight type

2012-03-13 Thread tom . zanussi
From: Tom Zanussi If unset, props.type gets the value 0, which is no longer maps to a valid type value, so initialize it explicitly. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/intel_lvds.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm-psb

[yocto] [PATCH 16/17][KERNEL] drm-psb: fix ioremap calls

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Mapping the opregion non-cacheable fails, so use acpi_os_ioremap instead. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/intel_lvds.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm-psb/intel_lvds.c b/drivers/gpu/drm-psb

[yocto] [PATCH 17/17][KERNEL] drm-psb: change udelay to mdelay in intel_wait_for_vblank()

2012-03-13 Thread tom . zanussi
From: Tom Zanussi This fixes the compile error> ERROR: "__bad_udelay" [drivers/gpu/drm-psb/psb.ko] undefined! This is the same fix as in gma500: commit 243dd2809a5edd2e0e3e62781083aa44049af37d Author: Stephen Rothwell Date: Mon Jul 25 15:18:44 2011 +1000 gma500: ude

[yocto] [PATCH 1/1] meta-emenlow: switch to linux-yocto-3.2 kernel

2012-03-13 Thread tom . zanussi
From: Tom Zanussi Switch emenlow to the 3.2 kernel. Signed-off-by: Tom Zanussi --- meta-emenlow/conf/machine/emenlow.conf |2 ++ .../linux/linux-yocto-rt_3.2.bbappend |8 .../recipes-kernel/linux/linux-yocto_3.2.bbappend |9 + 3 files

[yocto] [PATCH 01/17][KERNEL] drm: add the base source of the Poulsbo (psb) 2D X11 driver

2012-03-13 Thread tom . zanussi
From: Tom Zanussi The complete source of the base (unpatched) psb-kernel-source Poky package, moved into the kernel tree so it can be build as a first-class citizen instead of as an external module. Subsequent patches will remove the unnecessary parts. The code here is all the code contained

[yocto] [PATCH 02/17][KERNEL] drm-psb: remove the package Makefile and replace it with the kernel Makefile

2012-03-13 Thread tom . zanussi
From: Tom Zanussi The default Makefile is meant for building the modules externally. Replace it with the normal kernel Makefile (Makefile.kernel). Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/Makefile| 433 ++- drivers/gpu/drm-psb/Makefile.kernel

[yocto] [PATCH 11/17][KERNEL] drm-psb: remove assigment to deprecated i2c_adapter.id

2012-03-13 Thread tom . zanussi
From: Tom Zanussi i2c_adapter.id has been removed and it's not used by anything, so remove it. Signed-off-by: Tom Zanussi --- drivers/gpu/drm-psb/intel_i2c.c |4 drivers/gpu/drm-psb/psb_i2c.c |1 - 2 files changed, 0 insertions(+), 5 deletions(-) diff --git a/drivers/gp

[yocto] [PATCH 0/1] meta-intel: emenlow 3.2 update

2012-03-13 Thread tom . zanussi
From: Tom Zanussi This updates emenlow to the 3.2 kernel. The following changes since commit d9132cc66316be45f44beeea6eba734bb3ab337d: Tom Zanussi (1): ia32-base: remove libc-headers PREFERRED_PROVIDER are available in the git repository at: git://git.yoctoproject.org/meta

Re: [yocto] [PATCH 1/2] meta-crownbay: switch to linux-yocto-3.2 kernel

2012-03-14 Thread Tom Zanussi
On Wed, 2012-03-14 at 07:45 -0700, Darren Hart wrote: > On 03/13/2012 09:12 PM, Bruce Ashfield wrote: > > On 12-03-14 12:05 AM, Darren Hart wrote: > >> > >> > >> On 03/13/2012 08:08 PM, Bruce Ashfield wrote: > >>> On 12-03-13 11:03 PM, Tom Zanussi

[yocto] [PATCH 0/1] meta-intel: fishriver 3.2 update

2012-03-14 Thread tom . zanussi
From: Tom Zanussi This updates fishriver to the 3.2 kernel. The following changes since commit d9132cc66316be45f44beeea6eba734bb3ab337d: Tom Zanussi (1): ia32-base: remove libc-headers PREFERRED_PROVIDER are available in the git repository at: git://git.yoctoproject.org/meta

[yocto] [PATCH 1/1] meta-fishriver: switch to linux-yocto-3.2 kernel

2012-03-14 Thread tom . zanussi
From: Tom Zanussi Switch fishriver to the 3.2 kernel. Signed-off-by: Tom Zanussi --- meta-fishriver/conf/machine/fishriver.conf |2 ++ .../linux/linux-yocto-rt_3.2.bbappend |8 .../recipes-kernel/linux/linux-yocto_3.2.bbappend |9 + 3 files

[yocto] [PATCH 0/8] Yocto BSP tools, version 2

2012-03-16 Thread tom . zanussi
From: Tom Zanussi This patchset implements the 'yocto-bsp' and 'yocto-kernel' BSP tools previously described in some detail in this RFC posting: https://lists.yoctoproject.org/pipermail/yocto/2011-December/006111.html For version 2, I think I've addressed all the comm

[yocto] [PATCH 2/8] yocto-bsp-tools: add bsp library

2012-03-16 Thread tom . zanussi
From: Tom Zanussi Create a home for the yocto bsp tools. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/__init__.py | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 scripts/lib/bsp/__init__.py diff --git a/scripts/lib/bsp/__init__.py b

[yocto] [PATCH 3/8] yocto-bsp: add templating engine

2012-03-16 Thread tom . zanussi
From: Tom Zanussi The main implementation of the Yocto BSP templating engine, essentially containing the internal implementation of the 'yocto-bsp create' and yocto-bsp list' commands. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/e

[yocto] [PATCH 4/8] yocto-bsp: add kernel interface

2012-03-16 Thread tom . zanussi
From: Tom Zanussi Yocto BSP kernel-related functions, for interacting with the kernel tools and implementing the machinery behind the 'yocto-kernel' command. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/kernel.py | 723 + 1 files ch

[yocto] [PATCH 5/8] yocto-bsp-tools: add help/usage

2012-03-16 Thread tom . zanussi
From: Tom Zanussi This is essentially 'the documentation' for the Yocto BSP tools, along with a few related functions. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/help.py | 570 +++ 1 files changed, 570 insertions(+), 0 deletions(-) c

[yocto] [PATCH 6/8] yocto-bsp: add some useful constants

2012-03-16 Thread tom . zanussi
From: Tom Zanussi Some constants used by the templating engine. Signed-off-by: Tom Zanussi --- scripts/lib/bsp/tags.py | 47 +++ 1 files changed, 47 insertions(+), 0 deletions(-) create mode 100644 scripts/lib/bsp/tags.py diff --git a/scripts

[yocto] [PATCH 7/8] yocto-bsp: new script

2012-03-16 Thread tom . zanussi
From: Tom Zanussi Implementation of the 'yocto-bsp' command-line tool, for creating BSPs and listing BSP properties. Signed-off-by: Tom Zanussi --- scripts/yocto-bsp | 143 + 1 files changed, 143 insertions(+), 0 deletions(-) c

[yocto] [PATCH 8/8] yocto-kernel: new script

2012-03-16 Thread tom . zanussi
From: Tom Zanussi Implementation of the 'yocto-kernel' command-line tool, for modifying the kernel portion of a Yocto BSP. Signed-off-by: Tom Zanussi --- scripts/yocto-kernel | 232 ++ 1 files changed, 232 insertions(+), 0 deletions(

Re: [yocto] build error after recent pull

2012-03-19 Thread Tom Zanussi
n Mar 18 00:02:22 2012 + pigz: Ensure DEPENDS on zlib exists for native and target versions meta-intel/master: commit 9124870a6bcd99ebaeb0342f4fedf14dc1afebd8 Author: Tom Zanussi Date: Tue Mar 13 10:10:38 2012 -0500 meta-emenlow: switch to linux-yocto-3.2 kernel Tom On Mon, 20

[yocto] [PATCH 0/2] yocto-docs updates

2012-03-20 Thread tom . zanussi
From: Tom Zanussi This patchset updates the Yocto Reference Manual and BSP Developer's Guide with some recent changes related to licensing. I had some trouble getting the section numbers in the Yocto Reference Manual right, Scott - I'm hoping you can quickly fix that or tell me what

[yocto] [PATCH 1/2] documentation/poky-ref-manual/technical-details.xml: update 'Enabling Commercially Licensed Recipes' section

2012-03-20 Thread tom . zanussi
From: Tom Zanussi The COMMERCIAL_LICENSE mechanism has been removed in Yocto 1.2 and replaced by an equivalent mechanism, LICENSE_FLAGS. Update the documentation to reflect the change. Also update and fix a couple inaccuracies in a couple related variables (COMMERCIAL_QT, etc). Signed-off-by

[yocto] [PATCH 2/2] documentation/bsp-guide/bsp.xml: update 'BSP Licensing' section

2012-03-20 Thread tom . zanussi
From: Tom Zanussi The LICENSE_FLAGS mechanism can now be used to meet the special license requirements needed by some BSPs. Update the documentation to reflect the current BSP licensing mechanisms. Also add a new blurb about the time-limited kernel. Signed-off-by: Tom Zanussi

Re: [yocto] Graphics Acceleration on crownbay - 1.2M3 + meta-intel tip

2012-03-21 Thread Tom Zanussi
e same thing, which was due to a missing libva-tpi. The latest commit in meta-intel added that and fixed the problem for me. commit 162f3d1d3c538d7582a5e81205a9cdab74125b2b Author: Tom Zanussi Date: Mon Mar 12 19:57:29 2012 -0500 ia32-base: add libva display dependencies to e

Re: [yocto] Graphics Acceleration on crownbay - 1.2M3 + meta-intel tip

2012-03-21 Thread Tom Zanussi
On Wed, 2012-03-21 at 16:29 -0400, Autif Khan wrote: > On Wed, Mar 21, 2012 at 4:23 PM, Tom Zanussi wrote: > > On Wed, 2012-03-21 at 16:15 -0400, Autif Khan wrote: > >> Minor correction to the subject - I am using 1.2M3, not 1.2M2 > >> > >> On Wed, Mar 21

Re: [yocto] Graphics Acceleration on crownbay - 1.2M3 + meta-intel tip

2012-03-21 Thread Tom Zanussi
the case when Yocto used EMGD 1.8 driver - video worked > >> >> > fine - I am not sure about accelerated javascript based graphics in > >> >> > browser as I was not as far ahead in the project. > >> >> > > >> >> > Is this a

Re: [yocto] Graphics Acceleration on crownbay - 1.2M3 + meta-intel tip

2012-03-22 Thread Tom Zanussi
case when Yocto used EMGD 1.8 driver - video > >> >> >> > worked > >> >> >> > fine - I am not sure about accelerated javascript based graphics in > >> >> >> > browser as I was not as far ahead in the project. > >> >

Re: [yocto] does a meta-intel (sub)layer require adding the meta-intel layer to bblayers.conf?

2012-03-25 Thread Tom Zanussi
On Sun, 2012-03-25 at 13:23 -0400, Robert P. J. Day wrote: > again, a discrepancy between the docs and the source files. i > checked out the entire meta-intel layer, and below that the file > meta-crownbay/README clearly states: > > "Having done that, and assuming you extracted the BSP tarball co

Re: [yocto] does a meta-intel (sub)layer require adding the meta-intel layer to bblayers.conf?

2012-03-25 Thread Tom Zanussi
On Sun, 2012-03-25 at 13:46 -0400, Robert P. J. Day wrote: > On Sun, 25 Mar 2012, Tom Zanussi wrote: > > > On Sun, 2012-03-25 at 13:23 -0400, Robert P. J. Day wrote: > > > again, a discrepancy between the docs and the source files. i > > > checked out the entire me

Re: [yocto] does a meta-intel (sub)layer require adding the meta-intel layer to bblayers.conf?

2012-03-25 Thread Tom Zanussi
On Sun, 2012-03-25 at 16:05 -0400, Robert P. J. Day wrote: > On Sun, 25 Mar 2012, Tom Zanussi wrote: > > > On Sun, 2012-03-25 at 13:23 -0400, Robert P. J. Day wrote: > > > again, a discrepancy between the docs and the source files. i > > > checked out the entire me

[yocto] [PATCH 0/3] yocto-docs/bsp-guide: update BSP layers-related sections

2012-03-25 Thread tom . zanussi
From: Tom Zanussi The BSP Layers section of the BSP Guide contained some example layers that don't really belong in a generic guide - this patchset removes them, and updates the related README section. It also updates the README.sources section, which I noticed shouldn't really b

[yocto] [PATCH 1/3] documentation/bsp-guide/bsp.xml: remove mention of specific BSPs

2012-03-25 Thread tom . zanussi
From: Tom Zanussi Some of these aren't even BSP layers, but nonetheless remove the mention of specific layers as examples in this section, which should be a more generic section. Also add a note that additional layers may be needed by certain BSPs. Signed-off-by: Tom Za

[yocto] [PATCH 2/3] documentation/bsp-guide/bsp.xml: update the README section

2012-03-25 Thread tom . zanussi
From: Tom Zanussi The README section should not be optional, since at minumum it needs to contain layer dependencies and maintainer info. Signed-off-by: Tom Zanussi --- documentation/bsp-guide/bsp.xml |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/documentation

[yocto] [PATCH 3/3] documentation/bsp-guide/bsp.xml: make README.sources non-optional

2012-03-25 Thread tom . zanussi
From: Tom Zanussi Any shipped BSP needs this file for legal reasons, thus it's non-optional. Signed-off-by: Tom Zanussi --- documentation/bsp-guide/bsp.xml |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-

Re: [yocto] can all of the licensing discussion be centralized in an appendix?

2012-03-26 Thread Tom Zanussi
On Mon, 2012-03-26 at 14:26 +, Rifenbark, Scott M wrote: > Is BSP licensing different than non-BSP licensing? If not, then licensing > could be combined into a single section. Can someone answer this for me? > The focus of those sections are different and should probably be in separate sec

[yocto] [PATCH 0/2] yocto-docs/bsp-guide: add section for Yocto BSP Tools

2012-03-30 Thread tom . zanussi
From: Tom Zanussi This patchset adds a new section for the Yocto BSP Tools, and removes a note that this patchset makes obsolete in the process. The following changes since commit 2ec1368c4bdf5d61e3a7d60d3293ba878939321d: Scott Rifenbark (1): documentation/dev-manual/dev-manual-common

[yocto] [PATCH 1/2] documentation/bsp-guide/bsp.xml: Add new section for 'BSP Tools'

2012-03-30 Thread tom . zanussi
From: Tom Zanussi Some documentation introducing and helping get people started with the Yocto BSP Tools (yocto-bsp and yocto-kernel). Signed-off-by: Tom Zanussi --- documentation/bsp-guide/bsp.xml | 450 +++ 1 files changed, 450 insertions(+), 0 deletions

[yocto] [PATCH 2/2] documentation/bsp-guide/bsp.xml: Remove 'note'

2012-03-30 Thread tom . zanussi
From: Tom Zanussi Remove the 'note' that says that the BSP Guide doesn't show how to create a new BSP. With the addition of the Yocto BSP Tools section, that's no longer true. Also, the wiki page mentioned is out-of-date and probably shouldn't be pointed to any longer

Re: [yocto] are there more yocto-bsp commands other than "create" and "list"?

2012-04-04 Thread Tom Zanussi
On Wed, 2012-04-04 at 16:16 -0400, Robert P. J. Day wrote: > help for yocto-bsp reads: > > The most commonly used 'yocto-bsp' commands are: > createCreate a new Yocto BSP > list List available values for options and BSP properties > > but from the script: > > su

Re: [yocto] [PATCH] scripts: Clarify "help" info for yocto-bsp and yocto-kernel

2012-04-05 Thread Tom Zanussi
On Wed, 2012-04-04 at 17:20 -0400, Robert P. J. Day wrote: > Tweak the help info for both "yocto-bsp" and "yocto-kernel" to > emphasize that those are the *complete* lists of commands, not just > the most commonly used ones. > > Signed-off-by: Robert P

<    2   3   4   5   6   7   8   9   10   11   >