summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-01-07layer.conf: Use .= for adding to BBPATH and += to BBFILESKhem Raj
Fixes parsing errors which is appearing after this commit to meta-openembedded http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e This triggers exception NameError: name 'base_contains' is not defined without this change Avoid the immediate expansion operator (:=) which caused base_contains added in the previous commit to fail to expand at the time the meta-intel layer configs are parsed and replace it with one of the append operators (.= or +=) that allows for delayed variable expansion. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2012-12-21libva-intel-driver: workaround for concurrent VC1 and H264 playback issueTom Zanussi
Explanation from Terence Chiang: "encountered a GFX issue while enabling HW video playback VC-1 and H.264 simultaneously, the graphic driver report error with gfx hang on Sandy Bridge platform. We worked with Intel Linux graphic team and provided a patch" Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-21sys940x.conf: add EMGD VA components to VA_FEATURES variableNitin A Kamble
The following EMGD subpackages provide video acceleration and have dependencies on libva and libx11: emgd-driver-video emgd-gst-plugins-va-0.10.10 emgd-gst-plugins-mixvideo-0.10.34 Include these in the VA_FEATURES variable only when the EMGD XSERVER is included in the image. For images such as core-image-lsb which do not include X components, including any of these emgd subpackages will pull in unwanted X components. This fixes that problem. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-21fri2.conf: add EMGD VA components to VA_FEATURES variableNitin A Kamble
The following EMGD subpackages provide video acceleration and have dependencies on libva and libx11: emgd-driver-video emgd-gst-plugins-va-0.10.10 emgd-gst-plugins-mixvideo-0.10.34 Include these in the VA_FEATURES variable only when the EMGD XSERVER is included in the image. For images such as core-image-lsb which do not include X components, including any of these emgd subpackages will pull in unwanted X components. This fixes that problem. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-21emenlow.conf: add EMGD VA components to VA_FEATURES variableNitin A Kamble
The following EMGD subpackages provide video acceleration and have dependencies on libva and libx11: emgd-driver-video emgd-gst-plugins-va-0.10.10 emgd-gst-plugins-mixvideo-0.10.34 Include these in the VA_FEATURES variable only when the EMGD XSERVER is included in the image. For images such as core-image-lsb which do not include X components, including any of these emgd subpackages will pull in unwanted X components. This fixes that problem. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-21crownbay.conf: add EMGD VA components to VA_FEATURES variableNitin A Kamble
The following EMGD subpackages provide video acceleration and have dependencies on libva and libx11: emgd-driver-video emgd-gst-plugins-va-0.10.10 emgd-gst-plugins-mixvideo-0.10.34 Include these in the VA_FEATURES variable only when the EMGD XSERVER is included in the image. For images such as core-image-lsb which do not include X components, including any of these emgd subpackages will pull in unwanted X components. This fixes that problem. This fixes the following bug: [YOCTO #3507] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-21emgd-driver-bin: split target files into subpackagesNitin A Kamble
Currently all the EMGD binary files are packaged mainly into the emgd-driver-bin package. This brings in undesired dependencies on various external packages such as libva and libx11. Splitting them further into subpackages passes these dependencies on to only those subpackages, and these subpackages can be selected individually as needed. This fixes the following bugs: [YOCTO #2551] [YOCTO #3373] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: include wifi chip microcode package in nuc.confNitin A Kamble
Add the microcode package needed to enable the Centrino Advanced-N 6235 card to nuc.conf. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14common/linux-firmware: add support for Centrino Advanced-N 6235 wirelessNitin A Kamble
Add and package microcode needed for Centrino Advanced-N 6235 wireless card, and split the packaging of the licence file so that it can be bundled with any of the Intel iwlfifi microcode packages. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: init script for configuring HDMI audioNitin A Kamble
Provide an init script to check at boot time which HDMI port is connected and configure the default ALSA audio out to that port. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: disable serial port configNitin A Kamble
There is no serial port on the NUC, so remove the serial port configuration to avoid these kind of errors in the /var/log/messages: Dec 12 19:06:06 nuc auth.err getty: ttyS0: ioctl: Input/output error Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: provide a working alsa config for the nuc BSPNitin A Kamble
The nuc supports audio only via the HDMI ports. This provides an alsa sound configuration where HDMI0 port is set as a default sound out device. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: provide a working xorg.conf for the nuc BSPNitin A Kamble
Provide a working xorg.conf for the nuc BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: add kernel recipe for nuc BSPNitin A Kamble
Reuse the kernel support of chiefriver, and extend it to use additional kernel features like wifi. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: provide a formfactor for the nuc BSPNitin A Kamble
Provide a formfactor configuration for the nuc BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: provide machine configuration for nuc BSPNitin A Kamble
Create a new machine named 'nuc', which is similar to the existing chiefriver machine but with addition of wifi support. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14meta-nuc: new BSP layer for Intel NUC systemsNitin A Kamble
This layer provides support for Intel NUC (Next Unit of Computing) systems. This BSP specifically targets the "Next Unit of Computing Kit DC3217IYE" containing the 3rd generation Intel® Core™ i3- 3217U (Ivy Bridge) processor and Intel Centrino Advanced-N 6235 Wireless mini PCI Express card. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-14crownbay: linux-yocto_3.4.bbappend cleanup SRC_URINitin A Kamble
Use ${KMETA} variable instead of using the branch name "meta" directly. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-11common/mesa-dri: Change version to match OE-Core upgradeRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-07sys940x README: add a web link to the Intel embedded platformsNitin A Kamble
Add a web link in the readme so that one can find other embedded platforms provided by Intel. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07n450 README: add web links to the supported platformsNitin A Kamble
Add links in the readme so that one can find on the Internet further details of the platforms supported by this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07eMenlow README: add a web link to the Intel embedded platformsNitin A Kamble
Add a web link in the readme so that one can find other embedded platforms provided by Intel. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07jasperforest README: add web links to the supported platformsNitin A Kamble
Add links in the readme so that one can find on the Internet further details of the platforms supported by this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07chiefriver README: add web links to the supported platformsNitin A Kamble
Add links in the readme so that one can find on the Internet further details of the platforms supported by this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07sugarbay README: add web links to the supported platformsNitin A Kamble
Add links in the readme so that one can find on the Internet further details of the platforms supported by this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07crownbay README: add web links to the supported platformsNitin A Kamble
Add links in the readme so that one can find on the Internet further details of the platforms supported by this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07emenlow.conf: specify a kernel boot param for emgdNitin A Kamble
Via "vmalloc=256MB" boot parameter ask kernel to keep enough memory available for the emgd kernel driver allocation. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-07meta-emenlow: remove checksums.iniNitin A Kamble
Not needed. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-06xf86-video-mga: add missing EXA runtime dependency, cleanup dependsRoss Burton
Add xserver-xorg-module-exa as a runtime dependency as this driver uses it, and remove some build dependencies that are certainly not used. [ YOCTO #3495 ] Signed-off-by: Ross Burton <ross.burton@intel.com> Acked-by: Kishore Bodke <kishore.k.bodke@intel.com>
2012-12-06meta-romley: add web links for supported platforms to README & Add code namesRahul Saxena
add links in the README so that one can find further details of the platforms supported by this BSP. Also added code names for processor and chipset Signed-off-by: Rahul Saxena <rahul.saxena@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-06meta-crystalforest: add web links for supported platforms to README & Add ↵Rahul Saxena
code names add links in the README so that one can find further details of the platforms supported by this BSP. Also added code names for processor and chipset Signed-off-by: Rahul Saxena <rahul.saxena@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-06meta-cedartrail: add web links for supported platforms to READMERahul Saxena
add links in the README so that one can find further details of the platforms supported by this BSP. Signed-off-by: Rahul Saxena <rahul.saxena@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-06emgd-driver-bin: avoid text relocation warningsNitin A Kamble
This commits avoids this build time warning: WARNING: QA Issue: ELF binary '/home/lserban/work/poky/build/tmp/work/core2-poky-linux/emgd-driver-bin/1.14-r4/packages-split/emgd-driver-bin/usr/lib/dri/emgd_drv_video.so' has relocations in .text Fixes this bug: [YOCTO #3525] No PR bump, because there is no change in the output. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-05fri2 README: add a web link to the Intel embedded platformsNitin A Kamble
Add a web link in the readme so that one can find other embedded platforms provided by Intel. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Removed gratuitous ® character. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2012-12-05fri2: README updateDarren Hart
Update the README with various changes that somehow never made it in prior to the last release. These include details on the Intel provided Fast Boot EFI firmware, known issues, and de-versioning of the EMGD licensing configuration variables. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2012-12-05BSP README.sources: update the URL of the source tarballNitin A Kamble
Instead of the denzil release specify the location of the source tarball of danny release. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03eMenlow README: add text to specify the licensing need of EMGDNitin A Kamble
This commit adds information about specifying this line LICENSE_FLAGS_WHITELIST = "license_emgd-driver-bin_1.14" in local.conf to get the EMGD support enabled for the BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03emgd-driver-bin: avoid rebuilding issue of the recipeNitin A Kamble
This avoids errors like this: | cpio: ./usr/lib/libgstvabuffer.so.0 not created: newer or same age version exists | install: cannot stat `/srv/home/nitin/builds/build-crownbay/tmp/work/core2-poky-linux/emgd-driver-bin-1.14-r2/IEMGD_HEAD_Linux/MeeGo1.2/usr/lib/libGLES_CM.so': No such file or directory Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03eMenlow README: add a link to the platform webpageNitin A Kamble
Add a link in the readme so that one can find further details of the platfrom from the Internet. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03emenlow: use emgd instead of psb for graphics driverNitin A Kamble
Remove all the Poulsbo graphics driver specific meta data files. And configure the BSP to use EMGD instead of psb for graphics stack. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03meta-intel.inc: fix xorg packaging issue for emgd BSPsNitin A Kamble
BSPs using emgd graphics stack need to use older version of xserver. And these older xserver recipes still use modules which need to be specified in the meta-intel.inc. This is needed in addition to Ross's xorg packaging fixes in oecore. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03crystalforest: Enable BSP specific feature setKishore Bodke
Enable corpus, zlib-qat-module and openssl-qat-module features through MACHINE_EXTRA_RRECOMMENDS. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03meta-intel/common: Add Corpus recipes to commonKishore Bodke
Moved corpus recipes to common as this will be used by multiple BSPs. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03crystalforest: Remove the custom Image recipesKishore Bodke
Remove the custom Images for the Crystal Forest BSP to include these features into machine.conf Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-12-03crystalforest: Remove Corpus recipesKishore Bodke
Remove the corpus recipes from the crystalforest BSP as this will be used by multiple BSPs. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-11-29meta-intel.inc: remove xaa from matrox XSERVER variableTom Zanussi
XAA has been dropped, so we need to drop the xaa module. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-11-29xf86-video-mga: upgrade and fix buildRoss Burton
1.4.13 doesn't build against new X servers as XAA has been dropped, so upgrade to 1.6.2 which makes XAA optional. Also configure.ac is using AC_CHECK_FILE which doesn't cross-compile, so remove those. [ YOCTO #3495 ] Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-11-26emgd-driver-bin: add further needed soft links1.4_M1.rc11.4_M1.final1.4_M1Nitin A Kamble
These changes avoid link issues like following, where detailed library versions included in the .so filenames cause linking issues. [...]/tmp/sysroots/x86_64-linux/usr/libexec/core2-poky-linux/gcc/i586-poky-linux/4.7.2/ld: warning: libEMGDegl.so, needed by [...]/tmp/sysroots/fri2/usr/lib/libGLESv2.so, not found (try using -rpath or -rpath-link) [...]/tmp/sysroots/x86_64-linux/usr/libexec/core2-poky-linux/gcc/i586-poky-linux/4.7.2/ld: warning: libemgdsrv_um.so, needed by [...]/tmp/sysroots/fri2/usr/lib/libGLESv2.so, not found (try using -rpath or -rpath-link) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-11-26emgd-driver-bin: add more necessary soft linksAlexandre Belloni
Those links are needed to be able to at least compile xbmc. Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-11-26emenlow/qt: Drop emenlow qt bbappend since GL support is now the defaultRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>