summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-05-09gnu-efi: Add parallel make patch for archivesyocto-1.4.2.rc1yocto-1.4.2yocto-1.4.1yocot-1.4.2dylan-9.0.2.rc1dylan-9.0.2dylan-9.0.1.rc1dylan-9.0.11.4.1.rc1Darren Hart
The library makefiles were using the lib.a() form which compiles and ar's as a pair instead of compiling all and then ar'ing which can parallelize better. Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-04-23fri2: Disable MSI interrupts for the HDA devicedylan-9.0.01.4.final1.4Darren Hart
Fixes [YOCTO 3814] MSI interrupts fail when using the EFI firmware on the FRI2. Disabling them enables the HDA device to function properly on both BIOS and EFI versions of the device. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-04-23linux-firmware: Correct rtl license file locationDarren Hart
The rtl-license package FILES was pointing to the wrong directory as it was removed from there in commit: acd3735 linux-firmware: Remove duplicaed license from rtlwifi subdir This resulted in a do_rootfs failure for core-image-sato-sdk for fri2 with ipk when the linux-firmware-dev package tried to install linux-firmware-rtl-license which wasn't created as it was empty. Build tested with ipk and rpm packages. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-23meta-jasperforest: Fix BBFILESRichard Purdie
BBFILES is whitespace delimited. If .= used, no whitespace padding is added around the addition and this can lead to it being combined with some other part of the field, leading to parts of BBFILES mysteriously not being seen. For example, I have in my bblayers.conf: /media/build1/poky/meta-intel/meta-emenlow \ /media/build1/poky/meta-intel/meta-fri2 \ /media/build1/poky/meta-intel/meta-jasperforest \ /media/build1/poky/meta-intel/meta-n450 \ /media/build1/poky/meta-intel/meta-romley \ and this results in the warning: WARNING: No bb files matched BBFILE_PATTERN_fri2 '^/media/build1/poky/meta-intel/meta-fri2/' and if I try to build MACHINE=fri2, I get strange errors due to the .bb files not being parsed. The fix is simply to use +=, just like every other layer.conf file. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-22emgd-driver-bin: do not provide gl.pcNitin A Kamble
Remove the previously added gl.pc from the emgd recipe. emgd recipe does not provide libGL, still the associated gl.pc file was provided in the recipe, which causes conflicts with other recipes as seen below. These kind of errors are fixed with this commit. | Collected errors: | * check_data_file_clashes: Package libgl-mesa-dev wants to install file /srv/home/nitin/build-test-bsps/build-emenlow/tmp/work/emenlow-poky-linux/core-image-sato-sdk/1.0-r0/rootfs/usr/lib/pkgconfig/gl.pc | But that file is already provided by package * emgd-driver-dev | * opkg_install_cmd: Cannot install package qt4-x11-free-dev. | * check_data_file_clashes: Package libgl-mesa-dev wants to install file /srv/home/nitin/build-test-bsps/build-emenlow/tmp/work/emenlow-poky-linux/core-image-sato-sdk/1.0-r0/rootfs/usr/lib/pkgconfig/gl.pc | But that file is already provided by package * emgd-driver-dev | * opkg_install_cmd: Cannot install package mesa-demos-dev. | * check_data_file_clashes: Package libgl-mesa-dev wants to install file /srv/home/nitin/build-test-bsps/build-emenlow/tmp/work/emenlow-poky-linux/core-image-sato-sdk/1.0-r0/rootfs/usr/lib/pkgconfig/gl.pc | But that file is already provided by package * emgd-driver-dev | * opkg_install_cmd: Cannot install package libva-egl-dev. | * check_data_file_clashes: Package libgl-mesa-dev wants to install file /srv/home/nitin/build-test-bsps/build-emenlow/tmp/work/emenlow-poky-linux/core-image-sato-sdk/1.0-r0/rootfs/usr/lib/pkgconfig/gl.pc | But that file is already provided by package * emgd-driver-dev | * opkg_install_cmd: Cannot install package libva-glx-dev. | * check_data_file_clashes: Package libgl-mesa-dev wants to install file /srv/home/nitin/build-test-bsps/build-emenlow/tmp/work/emenlow-poky-linux/core-image-sato-sdk/1.0-r0/rootfs/usr/lib/pkgconfig/gl.pc | But that file is already provided by package * emgd-driver-dev | * opkg_install_cmd: Cannot install package libgl-mesa-dev. | ERROR: Function failed: do_rootfs (see | /srv/home/nitin/build-test-bsps/build-emenlow/tmp/work/emenlow-poky-li | nux/core-image-sato-sdk/1.0-r0/temp/log.do_rootfs.49983 for further | information) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Tested-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-19init-ifupdown: move network interfaces file for fri2 and sys940xDarren Hart
With the split of netbase and init-ifupdown, the interfaces file needs to get moved. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-17emgd-driver-bin: add cairo dependencyTom Zanussi
To fix the following autobuilder do_rootfs build erro: Computing transaction...error: Can't install emgd-gst-plugins-va-1.16-r0@core2: no package provides cairo >= 1.12.14 Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-13sys940x: specify a working libva versionNitin A Kamble
With the newer (1.1.0 & 1.1.1) versions of libva recipe video playback is giving segmentation fault at the end of playback. And the 1.0.16 version of libva is working fine for the video playback. So specifying the specific working version of libva recipe for all the EMGD based BSPs here. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-13fri2: specify a working libva versionNitin A Kamble
With the newer (1.1.0 & 1.1.1) versions of libva recipe video playback is giving segmentation fault at the end of playback. And the 1.0.16 version of libva is working fine for the video playback. So specifying the specific working version of libva recipe for all the EMGD based BSPs here. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-13emenlow: specify a working libva versionNitin A Kamble
With the newer (1.1.0 & 1.1.1) versions of libva recipe video playback is giving segmentation fault at the end of playback. And the 1.0.16 version of libva is working fine for the video playback. So specifying the specific working version of libva recipe for all the EMGD based BSPs here. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-13crownbay: specify a working libva versionNitin A Kamble
With the newer (1.1.0 & 1.1.1) versions of libva recipe video playback is giving segmentation fault at the end of playback. And the 1.0.16 version of libva is working fine for the video playback. So specifying the specific working version of libva recipe for all the EMGD based BSPs here. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-13libva: resurrect 1.0.16 recipe for EMGD based BSPsNitin A Kamble
EMGD based BSPs are seeing video playback issue with libva v1.1.[01] . They are hitting a segmentation fault at the end of video playback. So bringing back the old libva version for the EMGD based BSPs. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-13libva: update from 1.1.0 to 1.1.1Nitin A Kamble
As per Ross libva v1.1.1 is needed for the wayland support. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-04-12Revert "mesa-demos: fix build errors"Tom Zanussi
This reverts commit fd58fb07cf4fcc0553d0608f5688fc03e41ea15c. This was moved to oe-core, commit 60fabb6ea.
2013-04-11crystalforest: Fix build issues for openssl-qat-moduleKishore Bodke
openssl-qat-module and zlib-qat-module recipes have the same kernel module name, which causes the build to fail. So remove one of them from building and update the README with the instructions on how to enable. Fixes [YOCTO #4126]. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-04-08mesa-demos: fix build errors1.4_M6.rc1Tom Zanussi
When commit 6d17c9b ('emgd-driver-bin: add pkgconfig files') was added for libva, it exposed some missing EMGD functionality, which it turns out has been fixed by patches submitted or accepted upstream (see the individual patches for details). This adds those patches to get around the build problems when building with EMGD 1.16. Fixes [YOCTO #3469] for meta-intel (EMGD). Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-08libva: disable waylandTom Zanussi
Make libva honor the wayland DISTRO feature setting in theory; in practice, we always disable it for the time being. Enabling it produces a build failure in the libva wayland test code. Examining the problematic call, it seems quite different from what wayland puts in the sysroot, which means either that the test code is out of date, or we have a version mismatch between the wayland libva support and the wayland support in oe-core. Since wayland support is secondary to having basic libva support in dylan, we unconditionally disable it for now, until we have more time after the release to investigate. Fixes [YOCTO #3932]. Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-08emgd-driver-bin: add pkgconfig filesLaurentiu Palcu
Add pkgconfig files needed by other projects (for example newer libva packages look for egl.pc file). Pkgconfig files added by this patch: * egl.pc * gl.pc * gles_cm.pc * glesv2.pc Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-08libva: upgrade to 1.1.0Laurentiu Palcu
[YOCTO #3932] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-08libva-intel-driver: upgrade to 1.0.19Laurentiu Palcu
[YOCTO #3933] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-04-05linux-yocto-tiny: Add 3.8 recipe for fri2Darren Hart
Update the linux-yocto-tiny recipe to 3.8.4 for fri2. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-04-05linux-yocto-rt_3.8: Update all non-ISG BSPs with rt support to 3.8.4-rt2Darren Hart
Add the linux-yocto-rt_3.8.bbappend for every BSP supporting RT. Do not update BSPs maintained by ISG. Built, booted, and sniff tested with: $ cyclictest -p 90 -D 10m -t on all platforms. All boot and complete the test without abnormal outliers with the following exceptions: o sys940x generated a panic, reported to rt-user. Possibly hw related. o fri2 fails to boot, hanging at "i8042: No controller found" These need additional investigation, but shouldn't delay the merge of the recipes themselves. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-04-03linux-yocto-rt_3.4: Add 3.4.36-rt50 support to BSPs that only had 3.2Darren Hart
In preparation for removal of the 3.2 kernel recipes, ensure that we have 3.4.36-rt50 support for all BSPs supporting rt. Do not update ISG maintained BSPs. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-04-02crystalforest: update v3.8 kernel recipe commits to v3.8.41.4_M5.rc31.4_M5.finalKishore Bodke
specify the LINUX_VERSION corresponding to the kernel branch commits and update the commits to v3.8.4. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-04-02romley: update v3.8 kernel recipe commits to v3.8.4Kishore Bodke
Specify the LINUX_VERSION corresponding to the kernel branch commits and update the commits to v3.8.4. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-04-02n450: Update to linux-yocto_3.8 (3.8.4)Darren Hart
Update n450 to use the latest available linux-yoct recipe, 3.8.4. Build and boot tested. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-03-29MAINTAINERS: add missing entriesNitin A Kamble
Specify maintainers for sys940x & tlk layers. And also add missing space before sugarbay maintainer's email address. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> CC: Darren Hart <dvhart@linux.intel.com> CC: Saul Wold <saul.wold@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29sys940x: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29sugarbay: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29nuc: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29jasperforest: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29fri2: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29emenlow: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29crownbay: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-29chiefriver: update v3.8 kernel recipe commits to v3.8.4Nitin A Kamble
And specify the LINUX_VERSION corresponding to the kernel branch commits. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-26crystalforest gladden/server: Move BSPs to the v3.8 kernelKishore Bodke
Now the v3.8 kernel recipes are available in the oecore & meta-intel layers. And also the v3.8 kernel is validated for these BSPs. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-03-26crystalforest: linux-yocto_3.8 recipe extensionKishore Bodke
Provide the crystalforest BSP specific extension for the linux-yocto_3.8 recipe from the oecore layer. This configures the right git branches of the kernel repository for the crystalforest BSP. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-03-26meta-intel/common: Fix build issues for openssl-qat-moduleKishore Bodke
openssl-qat-module and zlib-qat-module recipes have the same kernel module name, which causes the build to fail. This fixes Bug 4126 - Crystal Forest build failing for openssl-qat-module ERROR: Recipe openssl-qat-module is trying to create package kernel-module-qat-mem which was already written by recipe zlib-qat-module. This will cause corruption, please resolve this and only provide the package from one recipe or the other or only build one of the recipes. ERROR: Function failed: read_subpackage_metadata ERROR: Execution of event handler 'run_buildstats' failed Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-03-26romley romley-ivb: Move BSPs to the v3.8 kernel1.4_M5.rc21.4_M5Kishore Bodke
Now the v3.8 kernel recipes are available in the oecore & meta-intel layers. And also the v3.8 kernel is validated for these BSPs. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-03-26romley: linux-yocto_3.8 recipe extensionKishore Bodke
Provide the romley BSP specific extension for the linux-yocto_3.8 recipe from the oecore layer. This configures the right git branches of the kernel repository for the romley BSP. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
2013-03-22Replace references to mesa-dri with mesa in all filesLaurentiu Palcu
[YOCTO #3385] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
2013-03-22mesa: Update to match OE-Core mesa renameRichard Purdie
mesa-dri was renamed to mesa in OE-Core, this matches that rename. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-08netbase: Use machine override for netbase genmac dependency1.4_M5.rc1Darren Hart
Without the machine override, the genmac dependency will be pulled in whenever the layer is included, regardless of MACHINE. Reported-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2013-03-07fri2-noemgd: use fbdev X driverNitin A Kamble
The systems provided by the Yocto Project Fish River Island 2 Giveaway Program come with Fast Boot EFI firmware. This firmware does not provide legacy BIOS support. And because the 'vesafb' X driver depends on this legacy BIOS support, it fails to work on these systems. On these systems the 'fbdev' X driver is able to work, giving a functional X graphical screen. Somehow the 'fbdev' X driver is finding 800x600 as the only available mode for display on these systems. This 'fbdev' X driver should also work with the other fri2 systems which come with the Kontron supplied APTIO (AMI) BIOS. This fixes bug: [YOCTO #3846] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-06va-intel: set ALLOW_EMPTY on a per-package basisTom Zanussi
ALLOW_EMPTY needs to be set per-package - this updates va-intel to avoid warnings to that effect. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-06gst-va-intel: avoid warning regarding ALLOW_EMPTYNitin A Kamble
Due to recent changes in the oecore layer, non package specific ALLOW_EMPTY declarations now cause warnings as seen below. WARNING: QA Issue: /media/build1/poky/meta-intel/common/ recipes-multimedia/gstreamer/gst-va-intel.bb: Variable ALLOW_EMPTY is set as not being package specific, please fix this. Avoid this warning by making ALLOW_EMPTY declarations package specific. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-06sys940x sys940x-noemgd: move BSPs to the v3.8 kernelNitin A Kamble
Now the v3.8 kernel recipes are available in the oecore & meta-intel layers. And also the v3.8 kernel is validated for these BSPs. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-06sugarbay: move BSP to the v3.8 kernelNitin A Kamble
Now the v3.8 kernel recipes are available in the oecore & meta-intel layers. And also the v3.8 kernel is validated for this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-06nuc: move BSP to the v3.8 kernelNitin A Kamble
Now the v3.8 kernel recipes are available in the oecore & meta-intel layers. And also the v3.8 kernel is validated for this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2013-03-06jasperforest: move BSP to the v3.8 kernelNitin A Kamble
Now the v3.8 kernel recipes are available in the oecore & meta-intel layers. And also the v3.8 kernel is validated for this BSP. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>