aboutsummaryrefslogtreecommitdiffstats
path: root/conf
AgeCommit message (Collapse)Author
2015-06-24minnow-emgd: Add new MACHINE using the EMGD graphics driverDarren Hart
The existing "minnow" MACHINE uses FBDEV, add a new MACHINE, minnow-emgd, which uses the proprietary emgd graphics driver. Update the linux-yocto recipe to support both machines, and move the xorg.conf from minnow to minnow-emgd. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2015-05-21minnow.conf: Add note regarding MinnowBoard MAX to machine conf DescriptionDarren Hart
To make it searchable, include the note about this layer not being for use with the MinnowBoard MAX in the @DESCRIPTION field of the machine config. Signed-off-by: Darren Hart <dvhart@infradead.org>
2014-09-25minnow.conf: first pass at EMGD removalKoen Kooi
Meta-intel dropped all EMGD support causing parsing to fail for meta-minnow. Additional work is needed to completely remove EMGD support in meta-minnow, but this gets it to build again. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Drop EMGD from the XSERVER list and add FBDEV for basic functionality. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2014-03-10minnow: Remove mesa PREFERRED_VERSIONDarren Hart
From Ross: "There's only one version of Mesa in oe-core *and* mesa isn't used by these BSPs anymore (they use mesa-gl)." Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2014-01-31x86: Update machine config to use new x86 tunesDarren Hart
Use the new meta-intel and oe-core x86 tune configuration files. This fixes errors including the files and using the variables have since changed names. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-12-23minnow: Update preferred mesa to 9.2.2Darren Hart
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-11-15minnow.conf: Add iwlwifi by defaultDarren Hart
Add iwlwifi to the recommended driver packages. This supports a number of mPCIe cards that may be used in the Lizzy Lure. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-11-15minnow.conf: Use UEFI console service for GRUBDarren Hart
Update the GRUB options to use the UEFI console service rather than attempting to use serial or USB keyboards directly. Recent firmware provides much improved support for a direct attached USB keyboard. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-11-15minnow.conf: Prefer the 3.10 linux-yocto recipeDarren Hart
Update to the 3.10 kernel. This update bring us closer to a fully upstream BSP. The 3.10 BSP uses the standard/base branch (all upstream sources there) and adds the minnow-io feature as a selectable feature if you want to build the GPIO LED and Button drivers which are not upstreamable, these are enabled by default. A new ACPI described version is in the works. This also adds wifi drivers to the default build. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-11-15minnow.conf: Remove NOISO as EFI ISOs are buildable nowDarren Hart
EFI ISOs now build successfully, remove the NOISO=1 line. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-11-15minnow.conf: Add wifi and linux-firmware supportDarren Hart
With the Lizzy Lure (mPCIe and mSATA) add the necessary support for wifi devices. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-09-20minnow.conf: include meta-intel-emgd.incRoss Burton
Use meta-intel-emgd.inc to correctly use EMGD and mesa-gl for all GL functionality, to avoid multiple provider errors. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-08-14Revert "EMGD package needs opengl in DISTRO_FEATURES"Darren Hart
DISTRO_FEATURES are the domain of the distro policy layer and should not be altered by a BSP layer. In order to build without the required DISTRO_FEATURES defined in your default configuration, you can either add them to your own distro config and set the DISTRO variable, or you can add them via local.conf. This reverts commit fe22070fa77d75ed2f1f4cd258b812dc60c8cb43. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-08-13EMGD package needs opengl in DISTRO_FEATURESDarren Hart
When opengl is not listed in DISTRO_FEATURES, the EMGD build fails as seen below. The needed DRI, DRI2 and glx features are disabled in the xserver-xorg when opengl is not listed in DISTRO_FEATURES. | * satisfy_dependencies_for: Cannot satisfy the following dependencies for packagegroup-core-x11-base: | * xserver-xorg-extension-glx * xserver-xorg-extension-dri * xserver-xorg-extension-dri2 * | * opkg_install_cmd: Cannot install package packagegroup-core-x11-base. | ERROR: Function failed: do_rootfs (log file is located at /srv/home/nitin/builds/build-minnow/tmp-eglibc/work/minnow-oe-linux/core-image-sato/1.0-r0/temp/log.do_rootfs.19450) ERROR: Task 7 (/home/nitin/prj/openembedded-core.git/meta/recipes-sato/images/core-image-sato.bb, do_rootfs) failed with exit code '1' This is not an issue when building with the poky distro as it lists opengl in DISTRO_FEATURES. But when building with an empty DISTRO, this fix is needed to avoid these build errors. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> <dvhart: slight reordering to group emgd features> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-08-06mesa: Update to current oe-core mesa version 9.1.6Darren Hart
The previous version is not available anymore, so use the newer version of the mesa recipe now. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-08-06emgd: Update to EMGD 1.18Darren Hart
Set the preferred version and update the KERNEL_FEATURES and SRC_URI to merge the emgd-1.18 branch. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-07-24mesa: Update to current oe-core mesa versionDarren Hart
The current version of mesa was updated in oe-core. Change mesa version for these BSPs in order to avoid build errors. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-06-14minnow.conf: Add i2c-dev to MACHINE_ESSENTIAL_EXTRA_RECOMMENDSDarren Hart
i2c-dev will be useful for initial experimentation with lures, just as spidev is. Ensure the module is available. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-06-03minnow.conf: Specify xf86-input-synaptics versionDarren Hart
Due to EMGD requirements on mesa and X versions, the synaptics version must also be specified. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-05-31minnow.conf: Add spidev module to MACHINE_ESSENTIAL_EXTRA_RRECOMMENDSDarren Hart
The spidev module will be handy for experimenting with SPI lures. Include it as a module by default. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-05-29Work around bootimg.bbclass bug for EFI-only images with NOISO=1Darren Hart
The bootimg.bbclass ISO generation code fails with EFI-only images. Work around this by explicitly disabling ISO image generation for the MinnowBoard. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-05-20MinnowBoard BSP Layer0.9-rc2-danny-8.0.1Darren Hart
The MinnowBoard (minnowboard.org) is an Intel Atom E640T processor coupled with an Intel EG20T Platform Controller Hub (Tunnel Creek + Topcliff = Queens Bay). The E6xx CPU embeds on-chip graphics supported by the Intel Embedded Media and Graphics Driver (EMGD). The board targets the small and low-cost embedded market for the developer and maker community. Signed-off-by: Darren Hart <dvhart@linux.intel.com>