[meta-intel] [PATCH] linux-intel/4.9: Update yocto-kernel-cache SRCREV

2017-06-07 Thread Ismo Puustinen
Various changes to configuration, including wifi, nftables, virtualbox,
bluetooth, and smp options.

Signed-off-by: Ismo Puustinen <ismo.puusti...@intel.com>
---
 common/recipes-kernel/linux/linux-intel-rt_4.9.bb | 2 +-
 common/recipes-kernel/linux/linux-intel_4.9.bb| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/recipes-kernel/linux/linux-intel-rt_4.9.bb 
b/common/recipes-kernel/linux/linux-intel-rt_4.9.bb
index b0f61e0..e095cc3 100644
--- a/common/recipes-kernel/linux/linux-intel-rt_4.9.bb
+++ b/common/recipes-kernel/linux/linux-intel-rt_4.9.bb
@@ -12,7 +12,7 @@ python () {
 
 KBRANCH = "base-rt"
 SRCREV_machine ?= "c7475df230529efcf75575b968ac3aaa962903e0"
-SRCREV_meta ?= "8b40e0ad3acba22a19c2505584044df115d02e90"
+SRCREV_meta ?= "de57de86e23493d9356fc4cc0e92a3df58a29032"
 
 SRC_URI = 
"git://github.com/01org/linux-intel-4.9.git;protocol=https;name=machine;branch=${KBRANCH};
 \

git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.9;destsuffix=${KMETA}"
diff --git a/common/recipes-kernel/linux/linux-intel_4.9.bb 
b/common/recipes-kernel/linux/linux-intel_4.9.bb
index fec5bca..dce7f14 100644
--- a/common/recipes-kernel/linux/linux-intel_4.9.bb
+++ b/common/recipes-kernel/linux/linux-intel_4.9.bb
@@ -3,7 +3,7 @@ require recipes-kernel/linux/linux-yocto.inc
 
 KBRANCH = "base"
 SRCREV_machine ?= "73905ddb22aa86582266266b6104962a5c96f114"
-SRCREV_meta ?= "8b40e0ad3acba22a19c2505584044df115d02e90"
+SRCREV_meta ?= "de57de86e23493d9356fc4cc0e92a3df58a29032"
 
 SRC_URI = 
"git://github.com/01org/linux-intel-4.9.git;protocol=https;name=machine;branch=${KBRANCH};
 \

git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.9;destsuffix=${KMETA}"
-- 
2.9.4

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel


[meta-intel] [PATCH 1/2] libva: check for "opengl" feature

2016-12-01 Thread Ismo Puustinen
In case "opengl" is missing from DISTRO_FEATURES, libva fails to satisfy
its dependencies. The dependency check is done by BitBake when
meta-world-pkgdata gathers information about all available packages
during image builds, even if libva isn't included in the build. This
patch makes libva recipe be skipped if the "opengl" DISTRO_FEATURE isn't
found.

Signed-off-by: Ismo Puustinen <ismo.puusti...@intel.com>
---
 common/recipes-multimedia/libva/libva_1.7.2.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/common/recipes-multimedia/libva/libva_1.7.2.bb 
b/common/recipes-multimedia/libva/libva_1.7.2.bb
index d72074d..860ab77 100644
--- a/common/recipes-multimedia/libva/libva_1.7.2.bb
+++ b/common/recipes-multimedia/libva/libva_1.7.2.bb
@@ -24,7 +24,9 @@ SRC_URI[sha256sum] = 
"5dd61cf16a5648b680e6146a58064e93be11bf4e65a9e4e30f1e9cb8ec
 
 DEPENDS = "libdrm virtual/mesa virtual/libgles1 virtual/libgles2 virtual/egl"
 
-inherit autotools pkgconfig
+inherit autotools pkgconfig distro_features_check
+
+REQUIRED_DISTRO_FEATURES ?= "opengl"
 
 EXTRA_OECONF = "--disable-dummy-driver"
 
-- 
2.9.3

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel


[meta-intel] [PATCH] gstreamer-vaapi and libva: check for opengl feature.

2016-11-30 Thread Ismo Puustinen
In case "opengl" is missing from DISTRO_FEATURES, libva fails to satisfy
its dependencies. The dependency check is done by BitBake when
meta-world-pkgdata gathers information about all available packages
during image builds, even if libva isn't included in the build. This
patch makes libva recipe be skipped if the "opengl" DISTRO_FEATURE isn't
found.

Since missing libva breaks gstreamer-vaapi-1.0 build, the same check is
done in gstreamer-vaapi-1.0 recipe too.

Signed-off-by: Ismo Puustinen <ismo.puusti...@intel.com>
---
 common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc | 4 +++-
 common/recipes-multimedia/libva/libva_1.7.2.bb  | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc 
b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
index 6dea9cf..59b0324 100644
--- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
+++ b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
@@ -16,7 +16,9 @@ SRC_URI = 
"https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.x
 
 S = "${WORKDIR}/${REALPN}-${PV}"
 
-inherit autotools pkgconfig gtk-doc
+inherit autotools pkgconfig gtk-doc distro_features_check
+
+REQUIRED_DISTRO_FEATURES ?= "opengl"
 
 PACKAGES =+ "${PN}-tests"
 
diff --git a/common/recipes-multimedia/libva/libva_1.7.2.bb 
b/common/recipes-multimedia/libva/libva_1.7.2.bb
index d72074d..860ab77 100644
--- a/common/recipes-multimedia/libva/libva_1.7.2.bb
+++ b/common/recipes-multimedia/libva/libva_1.7.2.bb
@@ -24,7 +24,9 @@ SRC_URI[sha256sum] = 
"5dd61cf16a5648b680e6146a58064e93be11bf4e65a9e4e30f1e9cb8ec
 
 DEPENDS = "libdrm virtual/mesa virtual/libgles1 virtual/libgles2 virtual/egl"
 
-inherit autotools pkgconfig
+inherit autotools pkgconfig distro_features_check
+
+REQUIRED_DISTRO_FEATURES ?= "opengl"
 
 EXTRA_OECONF = "--disable-dummy-driver"
 
-- 
2.9.3

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel


[meta-intel] [meta-intel-iot-devkit-middleware 0/3] Fixes for LICENSE fields

2015-04-17 Thread Ismo Puustinen
Some LICENSE fields in the recipes apper to have incorrent license
information. This patch set tries to fix those.

Ismo Puustinen (3):
  Fix hid-api license field.
  Fix tempered license field.
  Fix node.js license field.

 recipes-devtools/hid-api/hid-api_0.8.0.bb | 2 +-
 recipes-devtools/nodejs/nodejs_0.10.35.bb | 2 +-
 recipes-devtools/tempered/tempered_1.0.bb | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.1.0

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel


[meta-intel] [meta-intel-iot-devkit-middleware 3/3] Fix node.js license field.

2015-04-17 Thread Ismo Puustinen
Signed-off-by: Ismo Puustinen ismo.puusti...@intel.com
---
 recipes-devtools/nodejs/nodejs_0.10.35.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/nodejs/nodejs_0.10.35.bb 
b/recipes-devtools/nodejs/nodejs_0.10.35.bb
index a547a0c..e33d4e9 100644
--- a/recipes-devtools/nodejs/nodejs_0.10.35.bb
+++ b/recipes-devtools/nodejs/nodejs_0.10.35.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = nodeJS Evented I/O for V8 JavaScript
 HOMEPAGE = http://nodejs.org;
-LICENSE = MIT  BSD-2-Clause  BSD-3-Clause  BSD-4-Clause  ISC  GPLv2  
GPLv3  AFL-2.0  GPL-2.0-with-OpenSSL-exception  Zlib
+LICENSE = MIT  BSD-2-Clause  BSD-3-Clause  ISC  AFL-2.0  Apache-2.0  
OpenSSL  Zlib  Artistic-2.0  (BSD-3-Clause | GPLv2)
 
 LIC_FILES_CHKSUM = file://LICENSE;md5=e804bf1e856481415099460bc54d9316
 
-- 
2.1.0

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel


[meta-intel] [meta-intel-iot-devkit-middleware 2/3] Fix tempered license field.

2015-04-17 Thread Ismo Puustinen
Signed-off-by: Ismo Puustinen ismo.puusti...@intel.com
---
 recipes-devtools/tempered/tempered_1.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/tempered/tempered_1.0.bb 
b/recipes-devtools/tempered/tempered_1.0.bb
index 486a177..dde6e58 100644
--- a/recipes-devtools/tempered/tempered_1.0.bb
+++ b/recipes-devtools/tempered/tempered_1.0.bb
@@ -3,7 +3,7 @@ SECTION = libs
 AUTHOR = Frode Austvik
 HOMEPAGE = https://github.com/edorfaus/TEMPered;
 
-LICENSE = BSD-2-Clause  BSD-3-Clause  BSD-4-Clause  GPLv2  GPLv3
+LICENSE = BSD-2-Clause
 
 LIC_FILES_CHKSUM = file://LICENSE;md5=7a3b4938b14feadc92e125c3af60e69a
 
-- 
2.1.0

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel


[meta-intel] [PATCH][meta-intel-iot-middleware] hid-api: add a forgotten udev dependency.

2015-03-30 Thread Ismo Puustinen
Hid-api doesn't compile without udev support, and udev is no longer a
direct dependency of libusb. Add an explicit dependency for udev.

Signed-off-by: Ismo Puustinen ismo.puusti...@intel.com
---
 recipes-devtools/hid-api/hid-api_0.8.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/hid-api/hid-api_0.8.0.bb 
b/recipes-devtools/hid-api/hid-api_0.8.0.bb
index 2947491..9e8c6c7 100644
--- a/recipes-devtools/hid-api/hid-api_0.8.0.bb
+++ b/recipes-devtools/hid-api/hid-api_0.8.0.bb
@@ -6,7 +6,7 @@ LICENSE = BSD-2-Clause  BSD-3-Clause  BSD-4-Clause  GPLv2  
GPLv3
 
 LIC_FILES_CHKSUM = file://LICENSE.txt;md5=7c3949a631240cb6c31c50f3eb696077
 
-DEPENDS = libusb
+DEPENDS = libusb udev
 
 SRC_URI = 
git://github.com/signal11/hidapi.git;protocol=git;rev=3a66d4e513ed1b1ce82b7e6fcfa30ff05598b696
 
-- 
2.1.0

-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel