All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denis@denix.org>
To: meta-arago@arago-project.org
Subject: [PATCH 24/26] arago-prefs: update toolchain preferences, drop gstreamer 0.10
Date: Thu, 31 Mar 2016 23:41:44 -0400	[thread overview]
Message-ID: <1459482106-27723-25-git-send-email-denis@denix.org> (raw)
In-Reply-To: <1459482106-27723-1-git-send-email-denis@denix.org>

From: Denys Dmytriyenko <denys@ti.com>

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

diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index 8acd156..4a02e79 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -1,10 +1,10 @@
 # Set *target* toolchain preferences at global distro level.
 # Cross and SDK toolchain preferences are set in toolchain-*.inc files
-GCCVERSION ?= "linaro-4.9%"
+GCCVERSION ?= "linaro-5.2%"
 BINUVERSION ?= "linaro-2.25%"
-GLIBCVERSION ?= "2.21%"
-GLIBCINITVERSION ?= "2.21%"
-LINUXLIBCVERSION ?= "4.1"
+GLIBCVERSION ?= "2.23%"
+GLIBCINITVERSION ?= "2.23%"
+LINUXLIBCVERSION ?= "4.4"
 
 PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
 PREFERRED_VERSION_binutils ?= "${BINUVERSION}"
@@ -78,8 +78,8 @@ PREFERRED_PROVIDER_u-boot_omap-a15 = "u-boot-ti-staging"
 PREFERRED_VERSION_u-boot-ti-staging = "2015.07%"
 
 # Pin down udev version from oe-core, as meta-oe pulls in newer systemd-enhanced version
-PREFERRED_VERSION_udev = "182"
-PREFERRED_PROVIDER_udev = "udev"
+PREFERRED_VERSION_eudev = "3.1.5"
+PREFERRED_PROVIDER_eudev = "eudev"
 
 # Set the PREFERRED_PROVIDER for jpeg functionality based on the MACHINE
 # architecture.  For armv7a devices libjpeg-turbo should be used to take
@@ -95,7 +95,7 @@ PREFERRED_VERSION_readline-native = "5.2"
 PREFERRED_VERSION_readline-nativesdk = "5.2"
 
 PREFERRED_VERSION_libnl = "3.2.25"
-PREFERRED_VERSION_crda = "3.13"
+PREFERRED_VERSION_crda = "3.18"
 PREFERRED_VERSION_obex = "0.34"
 PREFERRED_VERSION_bash = "3.2.48"
 PREFERRED_VERSION_gettext = "0.16.1"
@@ -107,19 +107,6 @@ 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_PROVIDER_gstreamer = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gstreamer-mm-accel', 'gstreamer', d)}"
-PREFERRED_PROVIDER_gstreamer-dev = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gstreamer-mm-accel-dev', 'gstreamer-dev', d)}"
-PREFERRED_PROVIDER_gstreamer-dbg = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gstreamer-mm-accel-dbg', 'gstreamer-dbg', d)}"
-PREFERRED_PROVIDER_gst-plugins-bad = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-bad-mm-accel', 'gst-plugins-bad', d)}"
-PREFERRED_PROVIDER_gst-plugins-bad-dev = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-bad-mm-accel-dev', 'gst-plugins-bad-dev', d)}"
-PREFERRED_PROVIDER_gst-plugins-bad-meta = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-bad-mm-accel-meta', 'gst-plugins-bad-meta', d)}"
-PREFERRED_PROVIDER_gst-plugins-base = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-base-mm-accel', 'gst-plugins-base', d)}"
-PREFERRED_PROVIDER_gst-plugins-base-dev = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-base-mm-accel-dev', 'gst-plugins-base-dev', d)}"
-PREFERRED_PROVIDER_gst-plugins-base-meta = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-base-mm-accel-meta', 'gst-plugins-base-meta', d)}"
-PREFERRED_PROVIDER_gst-plugins-good = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-good-mm-accel', 'gst-plugins-good', d)}"
-PREFERRED_PROVIDER_gst-plugins-good-dev = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-good-mm-accel-dev', 'gst-plugins-good-dev', d)}"
-PREFERRED_PROVIDER_gst-plugins-good-meta = "${@base_contains('MACHINE_FEATURES', 'mmip', 'gst-plugins-good-mm-accel-meta', 'gst-plugins-good-meta', d)}"
-
 def filter_out(f, str, d):
     from re import match
     return " ".join(filter(lambda x: not match(f, x, 0), str.split()))
-- 
2.2.0



  parent reply	other threads:[~2016-04-01  3:52 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-01  3:41 [PATCH 00/26] Initial batch of fixes for master/krogoth Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 01/26] recipes-qt: remove all traces of qt4, no longer in oe-core Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 02/26] gstreamer: remove outdated 0.10.x version, " Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 03/26] linux-libc-headers: remove version 4.1, default to 4.4 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 04/26] linux: remove bbappends for old kernel versions, removed from meta-ti Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 05/26] wpa-gui-e: remove, as no longer supported and requiring qt4 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 06/26] u-boot-fw-utils: remove old version Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 07/26] cryptodev-tests: remove, the change got upstreamed Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 08/26] udev: rename bbappends to eudev, add symlink for libudev.so.0 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 09/26] gstreamer: overlay .inc files from fido and update 1.2.3 recipes Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 10/26] liboil: overlay locally for gstreamer-1.2.3 dependency Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 11/26] obexd: fix typo in license URL Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 12/26] cpuloadgen: fix cross-compilation by passing correct parameters Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 13/26] eventdump: " Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 14/26] serialcheck: " Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 15/26] omapconf: bump SRCREV to pick up gcc-5 fixes Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 16/26] ltp-ddt: fix make scripts failure due to new kernel task dependencies Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 17/26] python3: fix configure failure to find cross-version of readelf Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 18/26] packagegroup-arago-console: alsa-utils-alsaconf got renamed to alsa-utils-scripts Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 19/26] HACK: weston-init: overlay locally due to REQUIRED_DISTRO_FEATURES = "opengl" Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 20/26] HACK: dt: disable for now as breaking with gcc-5 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 21/26] FIXME: external-linaro-toolchain-cross: target Linaro gcc version doesn't match cross version Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 22/26] branding-core: disable SGX for now, until drivers updated for 4.4 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 23/26] external-linaro-toolchain.bbappend: drop unneeded fixes for broken 2015.05 Denys Dmytriyenko
2016-04-01  3:41 ` Denys Dmytriyenko [this message]
2016-04-01  3:41 ` [PATCH 25/26] toolchain*.inc: update toolchain preferences Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 26/26] arago.conf: disable bluez5, disable -fstack-protector, restore git-native ASSUME_PROVIDED Denys Dmytriyenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1459482106-27723-25-git-send-email-denis@denix.org \
    --to=denis@denix.org \
    --cc=meta-arago@arago-project.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.