All of lore.kernel.org
 help / color / mirror / Atom feed
* [master][PATCH 01/12] libnl: update bbappend for 3.2.29
@ 2017-03-21  1:42 Denys Dmytriyenko
  2017-03-21  1:42 ` [master][PATCH 02/12] Revert "cryptodev: backport patch for user page API change in recent kernels" Denys Dmytriyenko
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:42 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../libnl/{libnl_3.2.28.bbappend => libnl_3.2.29.bbappend}                | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename meta-arago-distro/recipes-support/libnl/{libnl_3.2.28.bbappend => libnl_3.2.29.bbappend} (100%)

diff --git a/meta-arago-distro/recipes-support/libnl/libnl_3.2.28.bbappend b/meta-arago-distro/recipes-support/libnl/libnl_3.2.29.bbappend
similarity index 100%
rename from meta-arago-distro/recipes-support/libnl/libnl_3.2.28.bbappend
rename to meta-arago-distro/recipes-support/libnl/libnl_3.2.29.bbappend
-- 
2.7.4



^ permalink raw reply	[flat|nested] 12+ messages in thread

* [master][PATCH 02/12] Revert "cryptodev: backport patch for user page API change in recent kernels"
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
@ 2017-03-21  1:42 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 03/12] packagegroup-*-base-tisdk: iperf was replaced by iperf3 Denys Dmytriyenko
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:42 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

This reverts commit 5e120638b973c8f5edbb53cca587c9050e1c4750.

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../cryptodev/cryptodev-module_%.bbappend          |  6 +---
 ...st-to-another-change-in-the-user-page-API.patch | 40 ----------------------
 2 files changed, 1 insertion(+), 45 deletions(-)
 delete mode 100644 meta-arago-distro/recipes-kernel/cryptodev/files/0001-Adjust-to-another-change-in-the-user-page-API.patch

diff --git a/meta-arago-distro/recipes-kernel/cryptodev/cryptodev-module_%.bbappend b/meta-arago-distro/recipes-kernel/cryptodev/cryptodev-module_%.bbappend
index 02bf90b..f8a35cd 100644
--- a/meta-arago-distro/recipes-kernel/cryptodev/cryptodev-module_%.bbappend
+++ b/meta-arago-distro/recipes-kernel/cryptodev/cryptodev-module_%.bbappend
@@ -1,7 +1,3 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
-
-PR_append = ".arago1"
+PR_append = ".arago0"
 
 KERNEL_MODULE_AUTOLOAD += "cryptodev"
-
-SRC_URI += "file://0001-Adjust-to-another-change-in-the-user-page-API.patch"
diff --git a/meta-arago-distro/recipes-kernel/cryptodev/files/0001-Adjust-to-another-change-in-the-user-page-API.patch b/meta-arago-distro/recipes-kernel/cryptodev/files/0001-Adjust-to-another-change-in-the-user-page-API.patch
deleted file mode 100644
index fb75278..0000000
--- a/meta-arago-distro/recipes-kernel/cryptodev/files/0001-Adjust-to-another-change-in-the-user-page-API.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From f126e4837e6334d0464540995df7426fedf6b175 Mon Sep 17 00:00:00 2001
-From: Michael Weiser <michael.weiser@gmx.de>
-Date: Fri, 11 Nov 2016 18:09:32 +0100
-Subject: [PATCH] Adjust to another change in the user page API
-
-4.9.0 will replace the write and force flags of get_user_pages_remote()
-with a gup_flags parameter[1]. Distinguish the two APIs based on kernel
-version we're compiling for.
-
-[1] https://github.com/torvalds/linux/commit/9beae1ea89305a9667ceaab6d0bf46a045ad71e7
-
-Upstream-Status: Backport
-
-Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
----
- zc.c | 8 +++++++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/zc.c b/zc.c
-index a97b49f..e766ee3 100644
---- a/zc.c
-+++ b/zc.c
-@@ -65,7 +65,13 @@ int __get_userbuf(uint8_t __user *addr, uint32_t len, int write,
- 	ret = get_user_pages(
- #endif
- 			task, mm,
--			(unsigned long)addr, pgcount, write, 0, pg, NULL);
-+			(unsigned long)addr, pgcount,
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0))
-+			write ? FOLL_WRITE : 0,
-+#else
-+			write, 0,
-+#endif
-+			pg, NULL);
- 	up_read(&mm->mmap_sem);
- 	if (ret != pgcount)
- 		return -EINVAL;
--- 
-1.9.1
-
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 03/12] packagegroup-*-base-tisdk: iperf was replaced by iperf3
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
  2017-03-21  1:42 ` [master][PATCH 02/12] Revert "cryptodev: backport patch for user page API change in recent kernels" Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 04/12] HACK: packagegroup-*-connectivity: crda was blacklisted upstream for breakage Denys Dmytriyenko
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
index 41c1304..d9f715c 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
@@ -23,7 +23,7 @@ RDEPENDS_${PN} = "\
     libxml2 \
     libpcre \
     iptables \
-    iperf \
+    iperf3 \
     arago-gpl-notice \
     arago-feed-config \
     nfs-utils-client \
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 04/12] HACK: packagegroup-*-connectivity: crda was blacklisted upstream for breakage
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
  2017-03-21  1:42 ` [master][PATCH 02/12] Revert "cryptodev: backport patch for user page API change in recent kernels" Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 03/12] packagegroup-*-base-tisdk: iperf was replaced by iperf3 Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 05/12] HACK: images: disable matrix, as php was blacklised " Denys Dmytriyenko
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-connectivity.bb             | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity.bb
index 7180a8b..01ed125 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity.bb
@@ -6,6 +6,8 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 
 inherit packagegroup
 
+# Disabled in master:
+#    crda
 # WLAN support packages.
 # These are the packages that all platforms use for WLAN support
 WLAN_COMMON = "\
@@ -18,7 +20,6 @@ WLAN_COMMON = "\
     eventdump \
     wlconf \
     wpa-supplicant-wl18xx \
-    crda \
     hostap-daemon-wl18xx \
     wl18xx-calibrator \
     wl18xx-target-scripts \
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 05/12] HACK: images: disable matrix, as php was blacklised upstream for breakage
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (2 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 04/12] HACK: packagegroup-*-connectivity: crda was blacklisted upstream for breakage Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 06/12] packagegroup-*-base: alsa-lib no longer provides smixer libs, depend directly on libasound Denys Dmytriyenko
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc   | 3 ++-
 meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb        | 3 ++-
 meta-arago-distro/recipes-core/images/tisdk-server-rootfs-image.bb | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
index 71041f8..98e824d 100644
--- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
+++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
@@ -51,12 +51,13 @@ IMAGE_INSTALL_QT = "\
 IMAGE_INSTALL_QT_keystone = ""
 IMAGE_INSTALL_QT_omapl138 = ""
 
+# Disable in master due to php breakage
+#    packagegroup-arago-tisdk-matrix-sdk-host
 IMAGE_INSTALL = "\
     packagegroup-arago-tisdk-addons-sdk-host \
     ${@bb.utils.contains('MACHINE_FEATURES','dsp','packagegroup-arago-tisdk-opencl-sdk-host','',d)} \
     packagegroup-arago-tisdk-crypto-sdk-host \
     ${@bb.utils.contains('MACHINE_FEATURES','sgx','packagegroup-arago-tisdk-graphics-sdk-host','',d)} \
-    packagegroup-arago-tisdk-matrix-sdk-host \
     packagegroup-arago-tisdk-multimedia-sdk-host \
     packagegroup-arago-tisdk-amsdk-sdk-host${ARAGO_KERNEL_SUFFIX} \
     ${IMAGE_INSTALL_QT} \
diff --git a/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb b/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb
index c511b83..3744d0b 100644
--- a/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb
+++ b/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb
@@ -2,6 +2,8 @@
 
 require arago-image.inc
 
+# Disbaled in master due to php breakage
+#    packagegroup-arago-tisdk-matrix
 IMAGE_INSTALL += "\
     packagegroup-arago-base \
     packagegroup-arago-console \
@@ -14,7 +16,6 @@ IMAGE_INSTALL += "\
     ${@bb.utils.contains('MACHINE_FEATURES','dsp','packagegroup-arago-tisdk-opencl-extra','',d)} \
     packagegroup-arago-tisdk-connectivity \
     packagegroup-arago-tisdk-crypto \
-    packagegroup-arago-tisdk-matrix \
     packagegroup-arago-tisdk-multimedia \
     packagegroup-arago-tisdk-amsdk \
     packagegroup-arago-tisdk-addons \
diff --git a/meta-arago-distro/recipes-core/images/tisdk-server-rootfs-image.bb b/meta-arago-distro/recipes-core/images/tisdk-server-rootfs-image.bb
index b64d092..5f4caa6 100644
--- a/meta-arago-distro/recipes-core/images/tisdk-server-rootfs-image.bb
+++ b/meta-arago-distro/recipes-core/images/tisdk-server-rootfs-image.bb
@@ -4,11 +4,12 @@ require arago-base-tisdk-image.bb
 
 SPLASH = ""
 
+# Disable in master due to php breakage
+#    packagegroup-arago-tisdk-matrix
 IMAGE_INSTALL += "\
     packagegroup-arago-tisdk-addons \
     ${@bb.utils.contains('MACHINE_FEATURES','dsp','packagegroup-arago-tisdk-opencl','',d)} \
     packagegroup-arago-tisdk-crypto \
-    packagegroup-arago-tisdk-matrix \
     packagegroup-arago-base-tisdk-server-extra \
     packagegroup-arago-tisdk-connectivity \
 "
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 06/12] packagegroup-*-base: alsa-lib no longer provides smixer libs, depend directly on libasound
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (3 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 05/12] HACK: images: disable matrix, as php was blacklised " Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 07/12] arago.conf: qtwayland 5.8 now requires qtbase with xkbcommon-evdev PACKAGECONFIG Denys Dmytriyenko
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb
index 7832a89..8d2e0b7 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb
@@ -7,7 +7,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 inherit packagegroup
 
 ARAGO_ALSA_BASE = "\
-    alsa-lib \
+    libasound \
     alsa-utils-aplay \
     "
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 07/12] arago.conf: qtwayland 5.8 now requires qtbase with xkbcommon-evdev PACKAGECONFIG
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (4 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 06/12] packagegroup-*-base: alsa-lib no longer provides smixer libs, depend directly on libasound Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 08/12] toolchain-gcc: update preferences to current versions Denys Dmytriyenko
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index 6ae06cb..1a3a2ca 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -79,7 +79,7 @@ PACKAGECONFIG_pn-weston = "egl kms launch clients"
 
 # Configure Qt5 flags (GLES is still required for qtdeclarative and qtwebkit)
 PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
-PACKAGECONFIG_DISTRO_pn-qtbase = "icu examples"
+PACKAGECONFIG_DISTRO_pn-qtbase = "icu examples xkbcommon-evdev"
 PACKAGECONFIG_FONTS_pn-qtbase = "fontconfig"
 
 # Add gstreamer in package configuration to enable video
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 08/12] toolchain-gcc: update preferences to current versions
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (5 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 07/12] arago.conf: qtwayland 5.8 now requires qtbase with xkbcommon-evdev PACKAGECONFIG Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 09/12] arago-prefs: prefer latest libnl version Denys Dmytriyenko
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/include/toolchain-gcc.inc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/toolchain-gcc.inc b/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
index 762a6a5..50fb5e1 100644
--- a/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
+++ b/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
@@ -17,9 +17,9 @@ PREFERRED_PROVIDER_binutils-cross-canadian-${TRANSLATED_TARGET_ARCH} ?= "binutil
 PREFERRED_PROVIDER_gdb-cross-canadian-${TRANSLATED_TARGET_ARCH} = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}"
 
 # Set Cross and SDK toolchain preferences
-SDKGCCVERSION ?= "6.2%"
+SDKGCCVERSION ?= "6.3%"
 SDKBINUVERSION ?= "2.27%"
-SDKGLIBCVERSION ?= "2.24%"
+SDKGLIBCVERSION ?= "2.25%"
 SDKLINUXLIBCVERSION ?= "4.9%"
 
 PREFERRED_VERSION_gcc-crosssdk ?= "${SDKGCCVERSION}"
@@ -34,10 +34,10 @@ PREFERRED_VERSION_nativesdk-glibc-initial ?= "${SDKGLIBCVERSION}"
 
 # Set target toolchain preferences to match Cross/SDK by default
 # Can be overwritten globally, if needed
-GCCVERSION ?= "6.2%"
+GCCVERSION ?= "6.3%"
 BINUVERSION ?= "2.27%"
-GLIBCVERSION ?= "2.24%"
-GLIBCINITVERSION ?= "2.24%"
+GLIBCVERSION ?= "2.25%"
+GLIBCINITVERSION ?= "2.25%"
 LINUXLIBCVERSION ?= "4.9%"
 
 PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 09/12] arago-prefs: prefer latest libnl version
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (6 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 08/12] toolchain-gcc: update preferences to current versions Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 10/12] arago-prefs: update gstreamer preference to 1.10.4 Denys Dmytriyenko
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/include/arago-prefs.inc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index 3b1a0aa..f0fc38f 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -29,7 +29,6 @@ PREFERRED_PROVIDER_jpeg = "libjpeg-turbo"
 # Setting PREFERRED_VERSIONS due to selecting a specific version of a library or
 # application that does not have a GPLv3 license
 PREFERRED_VERSION_gdbm = "1.8.3"
-PREFERRED_VERSION_libnl = "3.2.28"
 PREFERRED_VERSION_crda = "3.18"
 PREFERRED_VERSION_obex = "0.34"
 PREFERRED_VERSION_bash = "3.2.57"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 10/12] arago-prefs: update gstreamer preference to 1.10.4
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (7 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 09/12] arago-prefs: prefer latest libnl version Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 11/12] toolchain-gcc: update preference for binutils 2.28 Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 12/12] arago-prefs: disable preference for old GPLv2 packages removed from OE-Core Denys Dmytriyenko
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/include/arago-prefs.inc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index f0fc38f..ac18258 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -42,9 +42,9 @@ PREFERRED_PROVIDER_wpa-supplicant_ti33x = "wpa-supplicant-wl18xx"
 PREFERRED_PROVIDER_wpa-supplicant_ti43x = "wpa-supplicant-wl18xx"
 PREFERRED_PROVIDER_wpa-supplicant_omap-a15 = "wpa-supplicant-wl18xx"
 
-PREFERRED_VERSION_gstreamer1.0 = "1.10.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-ugly = "1.10.1"
-PREFERRED_VERSION_gstreamer1.0-libav = "1.10.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-good = "1.10.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-bad = "1.10.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-base = "1.10.1"
+PREFERRED_VERSION_gstreamer1.0 = "1.10.4"
+PREFERRED_VERSION_gstreamer1.0-plugins-ugly = "1.10.4"
+PREFERRED_VERSION_gstreamer1.0-libav = "1.10.4"
+PREFERRED_VERSION_gstreamer1.0-plugins-good = "1.10.4"
+PREFERRED_VERSION_gstreamer1.0-plugins-bad = "1.10.4"
+PREFERRED_VERSION_gstreamer1.0-plugins-base = "1.10.4"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 11/12] toolchain-gcc: update preference for binutils 2.28
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (8 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 10/12] arago-prefs: update gstreamer preference to 1.10.4 Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  2017-03-21  1:43 ` [master][PATCH 12/12] arago-prefs: disable preference for old GPLv2 packages removed from OE-Core Denys Dmytriyenko
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/include/toolchain-gcc.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/toolchain-gcc.inc b/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
index 50fb5e1..89f00c6 100644
--- a/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
+++ b/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
@@ -18,7 +18,7 @@ PREFERRED_PROVIDER_gdb-cross-canadian-${TRANSLATED_TARGET_ARCH} = "gdb-cross-can
 
 # Set Cross and SDK toolchain preferences
 SDKGCCVERSION ?= "6.3%"
-SDKBINUVERSION ?= "2.27%"
+SDKBINUVERSION ?= "2.28%"
 SDKGLIBCVERSION ?= "2.25%"
 SDKLINUXLIBCVERSION ?= "4.9%"
 
@@ -35,7 +35,7 @@ PREFERRED_VERSION_nativesdk-glibc-initial ?= "${SDKGLIBCVERSION}"
 # Set target toolchain preferences to match Cross/SDK by default
 # Can be overwritten globally, if needed
 GCCVERSION ?= "6.3%"
-BINUVERSION ?= "2.27%"
+BINUVERSION ?= "2.28%"
 GLIBCVERSION ?= "2.25%"
 GLIBCINITVERSION ?= "2.25%"
 LINUXLIBCVERSION ?= "4.9%"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [master][PATCH 12/12] arago-prefs: disable preference for old GPLv2 packages removed from OE-Core
  2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
                   ` (9 preceding siblings ...)
  2017-03-21  1:43 ` [master][PATCH 11/12] toolchain-gcc: update preference for binutils 2.28 Denys Dmytriyenko
@ 2017-03-21  1:43 ` Denys Dmytriyenko
  10 siblings, 0 replies; 12+ messages in thread
From: Denys Dmytriyenko @ 2017-03-21  1:43 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/include/arago-prefs.inc | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index ac18258..546cecb 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -28,12 +28,13 @@ PREFERRED_PROVIDER_jpeg = "libjpeg-turbo"
 
 # Setting PREFERRED_VERSIONS due to selecting a specific version of a library or
 # application that does not have a GPLv3 license
-PREFERRED_VERSION_gdbm = "1.8.3"
 PREFERRED_VERSION_crda = "3.18"
 PREFERRED_VERSION_obex = "0.34"
-PREFERRED_VERSION_bash = "3.2.57"
-PREFERRED_VERSION_gettext = "0.16.1"
-PREFERRED_VERSION_elfutils = "0.148"
+# These old GPLv2 versions are no longer in OE-Core
+#PREFERRED_VERSION_gdbm = "1.8.3"
+#PREFERRED_VERSION_bash = "3.2.57"
+#PREFERRED_VERSION_gettext = "0.16.1"
+#PREFERRED_VERSION_elfutils = "0.148"
 
 PREFERRED_PROVIDER_libnl-xfrm = "libnl"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2017-03-21  1:43 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-21  1:42 [master][PATCH 01/12] libnl: update bbappend for 3.2.29 Denys Dmytriyenko
2017-03-21  1:42 ` [master][PATCH 02/12] Revert "cryptodev: backport patch for user page API change in recent kernels" Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 03/12] packagegroup-*-base-tisdk: iperf was replaced by iperf3 Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 04/12] HACK: packagegroup-*-connectivity: crda was blacklisted upstream for breakage Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 05/12] HACK: images: disable matrix, as php was blacklised " Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 06/12] packagegroup-*-base: alsa-lib no longer provides smixer libs, depend directly on libasound Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 07/12] arago.conf: qtwayland 5.8 now requires qtbase with xkbcommon-evdev PACKAGECONFIG Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 08/12] toolchain-gcc: update preferences to current versions Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 09/12] arago-prefs: prefer latest libnl version Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 10/12] arago-prefs: update gstreamer preference to 1.10.4 Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 11/12] toolchain-gcc: update preference for binutils 2.28 Denys Dmytriyenko
2017-03-21  1:43 ` [master][PATCH 12/12] arago-prefs: disable preference for old GPLv2 packages removed from OE-Core Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.