All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] add video acceleration to fri2
@ 2012-06-06 19:29 tom.zanussi
  2012-06-06 19:29 ` [PATCH 1/1] meta-fri2: add video acceleration tom.zanussi
  0 siblings, 1 reply; 5+ messages in thread
From: tom.zanussi @ 2012-06-06 19:29 UTC (permalink / raw)
  To: yocto, dvhart

From: Tom Zanussi <tom.zanussi@intel.com>

This patch adds video acceleration to fri2, and fixes the rootf
generation problem seen on the yocto autobuilder.

Of course, it shouldn't be necessary to enable video acceleration
to get a good build (see Yocto bug 2551 which addresses this) but
in this case it's probably desired anyway.

The following changes since commit 86d914528f7bd70fc844a906166f9967451d21b5:
  Tom Zanussi (1):
        ffmpeg: fix checksums

are available in the git repository at:

  git://git.yoctoproject.org/meta-intel.git tzanussi/fri2-add-va.v1
  http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/log/?h=tzanussi/fri2-add-va.v1

Tom Zanussi (1):
  meta-fri2: add video acceleration

 meta-fri2/conf/machine/fri2.conf |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/1] meta-fri2: add video acceleration
  2012-06-06 19:29 [PATCH 0/1] add video acceleration to fri2 tom.zanussi
@ 2012-06-06 19:29 ` tom.zanussi
  2012-06-06 19:41   ` Darren Hart
  0 siblings, 1 reply; 5+ messages in thread
From: tom.zanussi @ 2012-06-06 19:29 UTC (permalink / raw)
  To: yocto, dvhart

From: Tom Zanussi <tom.zanussi@intel.com>

This adds the video acceleration components needed to enable EMGD
video acceleration.

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
 meta-fri2/conf/machine/fri2.conf |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta-fri2/conf/machine/fri2.conf b/meta-fri2/conf/machine/fri2.conf
index 547fe6a..f90deb3 100644
--- a/meta-fri2/conf/machine/fri2.conf
+++ b/meta-fri2/conf/machine/fri2.conf
@@ -7,8 +7,10 @@
 require conf/machine/include/tune-atom.inc
 require conf/machine/include/ia32-base.inc
 
-MACHINE_FEATURES += "wifi 3g pcbios efi"
-MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5"
+VA_FEATURES ?= "gst-va-intel va-intel"
+
+MACHINE_FEATURES += "wifi 3g pcbios efi gst-va-mixvideo"
+MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5 ${VA_FEATURES}"
 
 PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
 PREFERRED_VERSION_linux-yocto = "3.2%"
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] meta-fri2: add video acceleration
  2012-06-06 19:29 ` [PATCH 1/1] meta-fri2: add video acceleration tom.zanussi
@ 2012-06-06 19:41   ` Darren Hart
  2012-06-06 19:45     ` Tom Zanussi
  2012-06-06 21:19     ` Tom Zanussi
  0 siblings, 2 replies; 5+ messages in thread
From: Darren Hart @ 2012-06-06 19:41 UTC (permalink / raw)
  To: tom.zanussi; +Cc: yocto



On 06/06/2012 12:29 PM, tom.zanussi@intel.com wrote:
> From: Tom Zanussi <tom.zanussi@intel.com>
> 
> This adds the video acceleration components needed to enable EMGD
> video acceleration.
> 
> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>

Looks good, I assume a build has completed? Has any testing been done?
If there is an image available I can boot it. If not, I can build and
test, probably tomorrow. I'm mostly out today.

Acked-by: Darren Hart <dvhart@linux.intel.com>

> ---
>  meta-fri2/conf/machine/fri2.conf |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-fri2/conf/machine/fri2.conf b/meta-fri2/conf/machine/fri2.conf
> index 547fe6a..f90deb3 100644
> --- a/meta-fri2/conf/machine/fri2.conf
> +++ b/meta-fri2/conf/machine/fri2.conf
> @@ -7,8 +7,10 @@
>  require conf/machine/include/tune-atom.inc
>  require conf/machine/include/ia32-base.inc
>  
> -MACHINE_FEATURES += "wifi 3g pcbios efi"
> -MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5"
> +VA_FEATURES ?= "gst-va-intel va-intel"
> +
> +MACHINE_FEATURES += "wifi 3g pcbios efi gst-va-mixvideo"
> +MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5 ${VA_FEATURES}"
>  
>  PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
>  PREFERRED_VERSION_linux-yocto = "3.2%"

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


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] meta-fri2: add video acceleration
  2012-06-06 19:41   ` Darren Hart
@ 2012-06-06 19:45     ` Tom Zanussi
  2012-06-06 21:19     ` Tom Zanussi
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Zanussi @ 2012-06-06 19:45 UTC (permalink / raw)
  To: Darren Hart; +Cc: yocto

On Wed, 2012-06-06 at 12:41 -0700, Darren Hart wrote:
> 
> On 06/06/2012 12:29 PM, tom.zanussi@intel.com wrote:
> > From: Tom Zanussi <tom.zanussi@intel.com>
> > 
> > This adds the video acceleration components needed to enable EMGD
> > video acceleration.
> > 
> > Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
> 
> Looks good, I assume a build has completed? Has any testing been done?
> If there is an image available I can boot it. If not, I can build and
> test, probably tomorrow. I'm mostly out today.
> 

I have a sato image, but don't have the hardware so can't actually test
it.

I'll upload the sato image for you to test, will let you know when it's
there...

Tom

> Acked-by: Darren Hart <dvhart@linux.intel.com>
> 
> > ---
> >  meta-fri2/conf/machine/fri2.conf |    6 ++++--
> >  1 files changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/meta-fri2/conf/machine/fri2.conf b/meta-fri2/conf/machine/fri2.conf
> > index 547fe6a..f90deb3 100644
> > --- a/meta-fri2/conf/machine/fri2.conf
> > +++ b/meta-fri2/conf/machine/fri2.conf
> > @@ -7,8 +7,10 @@
> >  require conf/machine/include/tune-atom.inc
> >  require conf/machine/include/ia32-base.inc
> >  
> > -MACHINE_FEATURES += "wifi 3g pcbios efi"
> > -MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5"
> > +VA_FEATURES ?= "gst-va-intel va-intel"
> > +
> > +MACHINE_FEATURES += "wifi 3g pcbios efi gst-va-mixvideo"
> > +MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5 ${VA_FEATURES}"
> >  
> >  PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> >  PREFERRED_VERSION_linux-yocto = "3.2%"
> 




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] meta-fri2: add video acceleration
  2012-06-06 19:41   ` Darren Hart
  2012-06-06 19:45     ` Tom Zanussi
@ 2012-06-06 21:19     ` Tom Zanussi
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Zanussi @ 2012-06-06 21:19 UTC (permalink / raw)
  To: Darren Hart; +Cc: yocto

OK, this has been pulled into meta-intel/master and meta-intel/denzil.

Should be ok to start a new build...

Tom

On Wed, 2012-06-06 at 12:41 -0700, Darren Hart wrote:
> 
> On 06/06/2012 12:29 PM, tom.zanussi@intel.com wrote:
> > From: Tom Zanussi <tom.zanussi@intel.com>
> > 
> > This adds the video acceleration components needed to enable EMGD
> > video acceleration.
> > 
> > Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
> 
> Looks good, I assume a build has completed? Has any testing been done?
> If there is an image available I can boot it. If not, I can build and
> test, probably tomorrow. I'm mostly out today.
> 
> Acked-by: Darren Hart <dvhart@linux.intel.com>
> 
> > ---
> >  meta-fri2/conf/machine/fri2.conf |    6 ++++--
> >  1 files changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/meta-fri2/conf/machine/fri2.conf b/meta-fri2/conf/machine/fri2.conf
> > index 547fe6a..f90deb3 100644
> > --- a/meta-fri2/conf/machine/fri2.conf
> > +++ b/meta-fri2/conf/machine/fri2.conf
> > @@ -7,8 +7,10 @@
> >  require conf/machine/include/tune-atom.inc
> >  require conf/machine/include/ia32-base.inc
> >  
> > -MACHINE_FEATURES += "wifi 3g pcbios efi"
> > -MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5"
> > +VA_FEATURES ?= "gst-va-intel va-intel"
> > +
> > +MACHINE_FEATURES += "wifi 3g pcbios efi gst-va-mixvideo"
> > +MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-iwlwifi-6000g2a-5 ${VA_FEATURES}"
> >  
> >  PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> >  PREFERRED_VERSION_linux-yocto = "3.2%"
> 




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-06 21:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-06 19:29 [PATCH 0/1] add video acceleration to fri2 tom.zanussi
2012-06-06 19:29 ` [PATCH 1/1] meta-fri2: add video acceleration tom.zanussi
2012-06-06 19:41   ` Darren Hart
2012-06-06 19:45     ` Tom Zanussi
2012-06-06 21:19     ` Tom Zanussi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.