summaryrefslogtreecommitdiffstats
path: root/conf/machine/include
AgeCommit message (Collapse)Author
2014-02-21intel-common-pkgarch: Correct PACKAGE_EXTRA_ARCHS usageDarren Hart
The trailing S was missing from the variable name, resulting in the kernel-modules package not being found as the common arch was not added to the PACKAGE_ARCHS variable used by the package manager. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2014-02-05intel-common: Make using intel-common override opt-inDarren Hart
Currently the intel-core*-common.inc files also include the intel-common-pkgarch.inc, forcing the introduction of the intel-common PACKAGE_ARCH. Coupling this with the addition of the intel-common MACHINE_OVERRIDE, means that even MACHINE_ARCH packages can be influenced by intel-common overrides, which is not desirable. Remove the intel-common-pkgarch.inc from the intel-core*common.inc include files, requiring BSPs wanting to use the intel-common mechanism to explicitly include it. This obviates the need to reset the linux-yocto PACKAGE_ARCH to MACHINE_ARCH. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-02-05MACHINEOVERRIDES: Use INTEL_COMMON_PACKAGE_ARCHDarren Hart
Create the intel common override for use in currently machine-specific recipes which need to make overrides for all the compatible machines, such as COMPATIBLE_MACHINES in the linux-yocto* recipes. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2014-01-27meta-intel.inc: Use X86 instead of IA32Darren Hart
To be consistent with the renaming in oe-core, use X86 instead of IA32 in the XSERVER_X86* variables. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2014-01-27Add Intel core2 and corei7 BSPs and tune filesDarren Hart
Introduce two new generic BSPs that parallel the updated core2 and new corei7 tune files in oe-core. These BSPs provided optimized tune flags for Intel Core and Atom CPUs since 2006 in the 32 bit core2 BSP and since Nehalem and Silvermont (Bay Trail) in the 64 bit corei7 BSP. These establish a suitable balance between compatibility and performance optimization. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Richard Purdie <richard.purdie@intel.com> Cc: Paul Eggleton <paul.eggleton@intel.com> Cc: Tom Zanussi <tom.zanussi@intel.com> Cc: Nitin Kamble <nitin.a.kamble@intel.com> Cc: Mark Hatle <mark.hatle@windriver.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-09-18meta-intel-emgd.inc: specify preferred providers for gl componentsNitin A Kamble
By default the gl components are coming from mesa recipe. But for BSPs with EMGD graphics, these components come from emgd and mesa-gl recipes. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2013-09-18Separate packagedir for GL components of EMGD BSPsRichard Purdie
When multiple BSPs of the same arch are built in a build directory, the differences in GL providers such as emgd-driver and mesa causes rebuild of large set of recipes, as they collide on each other's space for multiple BSPs. Although this does not impact correctness, it impacts build performance negatively. Richard had an idea of providing separate PACKAGE_DIR to the colliding recipes to avoid the build area collision. And this approach significantly reduces the negative impact on the build performance. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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-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-08-29ia32-base.inc: removeTom Zanussi
This has been moved to oe-core, so remove it. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-08-29meta-intel.inc: new fileTom Zanussi
Move a couple intel-specific variables into a new meta-intel.inc include file. meta-intel.inc is meant to contain variables and definitions that only make sense and are only available if the meta-intel layer is included in bblayers.conf. This is in preparation for moving the rest into oe-core. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-08-22ia32-base.inc: Drop glibc --with-tls option, its now the only option for glibcRichard Purdie
This option is unused by (e)glibc since 2011 and is the default. It has been shown to interact badly with the configure option in atom-pc from meta-yocto causing a rebuild of the whole system despite the only change being an assignment with += vs =. The easiest fix is simply to drop it. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-08-10meta-intel:Add a MATROX MGA variable to ia32-base.incKishore Bodke
Add XSERVER_IA32_MATROX_MGA variable for including Matrox MGA graphics recipe. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-05-30meta-intel: remove video acceleration from emgd XSERVERTom Zanussi
Video acceleration dependencies really don't belong in the XSERVER variable - remove them; we'll add them back later via va-intel. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-05-07ia32-base.inc: Use a weak default assignment for kernel provider and versionDarren Hart
Using the default assignment operator (?=) requires the including recipes to ensure to assign the Linux kernel provider and version prior to including ia32-base.inc. By use the weak default assignment operator (??=), the assignment can come after the inclusion, which avoids confusion and can lead to a more natural recipe structure. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tom.zanussi@intel.com>
2012-04-19ia32-base: don't use obsolete kernel26Tom Zanussi
kernel26 is now a no-op so don't use it. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Acked-by: Darren Hart <dvhart@linux.intel.com>
2012-03-22n450: fix wrong video driverZhai Edwin
n450 should use i915 rather than i965. [YOCTO #1840] fixed Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-03-18ia32-base: add libva display dependencies to emgd xserverTom 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 <tom.zanussi@intel.com>
2012-03-06ia32-base: remove libc-headers PREFERRED_PROVIDERTom Zanussi
Let the distro do this. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-01-17ia32-base: add alsa to MACHINE_FEATURESJoshua Lock
Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2011-12-22meta-intel: change EMGD xserver libva dependency to libva-x11Tom Zanussi
XSERVER_IA32_EMGD should depend on libva-x11, which in turn depends on libva, instead of just libva. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Acked-by: Darren Hart <dvhart@linux.intel.com>
2011-12-01meta-intel: add libva to EGMD xserverTom Zanussi
EMGD requires libva, so add the dependency here. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2011-11-21ia32-base.inc: new include fileTom Zanussi
The meta-intel BSPs currently have a number of machine settings common to all - factor these out into a common include file. Also add several new intel-specific XSERVER variables for building XSERVER variables in BSPs. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>