Re: [OE-core] [oe-core][systemd][PATCH] some dependencies in systemd seem not to be taken into account in systemd_229.bb

2016-03-07 Thread Herve Jourdain
Dear Anders, Regarding the binfmt part, you're right, it should be a second patch... I will resend it separately. For the gcrypt/resolved patch, I will rework it. One thing, though, the idea was to add the --disable-gcrypt in the EXTRA_OECONF, if neither gcrypt nor resolved are enabled. Hence

Re: [OE-core] [oe-core][systemd][PATCH] some dependencies in systemd seem not to be taken into account in systemd_229.bb

2016-03-07 Thread Anders Darander
(Resending as it didn't go to the list). Thanks! I've just ran into this myself this morning. A few comments are inlined. * Herve Jourdain [160307 11:51]: > # Sign the journal for anti-tampering > -PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt"

Re: [OE-core] [oe-core][systemd][PATCH] some dependencies in systemd seem not to be taken into account in systemd_229.bb

2016-03-07 Thread Martin Jansa
On Mon, Mar 07, 2016 at 12:47:09PM +0100, Anders Darander wrote: > (Resending as it didn't go to the list). > > Thanks! > > I've just ran into this myself this morning. > > A few comments are inlined. > > * Herve Jourdain [160307 11:51]: > > > # Sign the journal for

[OE-core] [oe-core][systemd][PATCH] some dependencies in systemd seem not to be taken into account in systemd_229.bb

2016-03-07 Thread Herve Jourdain
Systemd: - RESOLVED depends on GCRYPT, so GCRYPT should be enabled if RESOLVED is enabled - ${PN}-binfmt should be added to SYSTEMD_PACKAGES only if binfmt is enabled Without this patch, build fails when gcrypt is not in PACKAGECONFIG, but resolved is, or when binfmt is not in

[OE-core] [PATCH][RFC] systemd-serialgetty: allow baud rate overriding

2016-03-07 Thread Awais Belal
In case a getty is required on a UART which is not being used as the kernel console, the current agetty invocation fails to obey the baud rate configured through the SERIAL_CONSOLES variable because it uses --keep-baud. Signed-off-by: Awais Belal ---

Re: [OE-core] [oe-core][systemd][PATCH] some dependencies in systemd seem not to be taken into account in systemd_229.bb

2016-03-07 Thread Burton, Ross
On 7 March 2016 at 12:01, Herve Jourdain wrote: > For the gcrypt/resolved patch, I will rework it. > One thing, though, the idea was to add the --disable-gcrypt in the > EXTRA_OECONF, if neither gcrypt nor resolved are enabled. > Hence the removal of "--disable-gcrypt" in

[OE-core] [PATCH] glibc: Add relocation of GCONV_PATH

2016-03-07 Thread Richard Purdie
We're seeing various failures where nativesdk glibc can't find the gconv modules. We've tried various workaround but this needs fixing 'properly'. One significant problem is knowing when a binary would use this glibc and hence when to set the path and when not to. Add the default path to its

Re: [OE-core] [oe-core][systemd][PATCH] some dependencies in systemd seem not to be taken into account in systemd_229.bb

2016-03-07 Thread Anders Darander
* Burton, Ross [160307 13:11]: > On 7 March 2016 at 12:01, Herve Jourdain wrote: > > For the gcrypt/resolved patch, I will rework it. > > One thing, though, the idea was to add the --disable-gcrypt in the > > EXTRA_OECONF, if neither gcrypt nor

Re: [OE-core] [PATCH] packagegroup-core-lsb.bb: remove Qt 3 library from packagegroup-core-lsb-desktop

2016-03-07 Thread Burton, Ross
On 7 March 2016 at 03:53, Li Xin wrote: > Since with this release of the LSB 5.0, the Qt 3 library has been removed > Ref: https://wiki.linuxfoundation.org/en/ReleaseNotes50#Qt_3_Removed > Whilst it's unspecified the LSB packages are mostly LSB 4.1. If we're going to

[OE-core] [PATCH 2/3] linux-yocto/4.4: iwlwifi: mvm: don't allow sched scans without matches to be started

2016-03-07 Thread Bruce Ashfield
Integrating the following commit for improved iwlwifi support: iwlwifi: mvm: don't allow sched scans without matches to be started commit 5e56276e7555b34550d51459a801ff75eca8b907 upstream. The firmware can perform a scheduled scan with not matchsets passed, but it can't send

[OE-core] [PATCH 3/3] linux-yocto/4.4: explicitly enable ftrace in tracing fragment

2016-03-07 Thread Bruce Ashfield
The recent split/factoring between production and development kernel configurations, EXPERT, EMBEDDED and DEBUG_KERNEL are no longer selected for all kernel types. This means that ftrace is no longer selected by default in in standard BSPs, causing breakage in things that relied on it.

[OE-core] [PATCH 0/3] linux-yocto/4.4: updated pull request

2016-03-07 Thread Bruce Ashfield
Hi all, Ross pointed out that the AB found some issues with lttng when the refactored kernel types change was included (missing modules). I previously sent patch [linux-yocto/kernel-meta: ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED], and I've included it in this updated pull

[OE-core] [PATCH 1/3] linux-yocto/kernel-meta: ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED

2016-03-07 Thread Bruce Ashfield
Integrating the folliwing patch series from Cal: This patch series refactors the ktypes so that base and standard ktypes do not enable EMBEDDED, EXPERT, or DEBUG_KERNEL. The reason this decision was made is because production platforms likely do not want DEBUG_KERNEL enabled, and EMBEDDED

[OE-core] [PATCH 3/6] recipetool: create: match *LICENSE* as a license file

2016-03-07 Thread Paul Eggleton
For example, this picks up a file named MIT-LICENSE.txt. Signed-off-by: Paul Eggleton --- scripts/lib/recipetool/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index

[OE-core] [PATCH 5/6] recipetool: create: split npm module dependencies into packages

2016-03-07 Thread Paul Eggleton
Rather than rolling all of an npm module's dependencies into the same package, split them into one module per package. Additionally, mark each package with the appropriate license using the license scanning we already do, falling back to the license stated in the package.json file for the module

[OE-core] [PATCH 6/6] recipetool: create: check if npm available if npm:// URL specified

2016-03-07 Thread Paul Eggleton
If the user specifies an npm:// URL then the fetcher needs npm to be available to run, so check if it's available early rather than failing later. Signed-off-by: Paul Eggleton --- scripts/lib/recipetool/create.py | 6 ++ 1 file changed, 6 insertions(+) diff

[OE-core] [PATCH 1/6] recipetool: create: be more tolerant of spacing in configure.ac

2016-03-07 Thread Paul Eggleton
Allow for whitespace in appropriate places, and ensure we match all whitespace chars not just the space character. (This fixes extracting dependencies from tmux's configure.ac, for example.) Signed-off-by: Paul Eggleton ---

[OE-core] [PATCH 0/6] recipetool create improvements

2016-03-07 Thread Paul Eggleton
Improvements to the following areas of recipetool create: * License detection * Autotools program mapping and spacing in macro regexes * npm module handling The following changes since commit 0d02159c8d66bb136f7da2c10fda7d1a57f40cec: image.bbclass: fix incomplete .rootfs customization

[OE-core] [PATCH 2/6] recipetool: create: improve mapping for autotools program macros

2016-03-07 Thread Paul Eggleton
Make the following improvements to mapping items specified in AC_CHECK_PROG, AC_PATH_PROG and AX_WITH_PROG to recipes/classes: * Produce a map of native recipe -> binary for all binaries currently in STAGING_BINDIR_NATIVE and use this when mapping items * Add some more entries to the class map

[OE-core] [PATCH 4/6] recipetool: create: add license file crunching

2016-03-07 Thread Paul Eggleton
Matching license texts directly to md5sums only goes so far. Some licenses make the copyright statement an intrinsic part of the license statement (e.g. MIT) which of course varies between projects. Also, people often seem to take standard license texts such as GPLv2 and reformat them cosmetically

Re: [OE-core] [PATCH v2] externalsrc.bbclas: remove nostamp from do_configure

2016-03-07 Thread Paul Eggleton
Hi Markus, On Thu, 25 Feb 2016 16:29:47 Markus Lehtonen wrote: > Be a bit more intelligent than mindlessly re-compiling every time. > Instead of using 'nostamp' flag for do_compile run a python function to > get a list of files to add as 'file-checksums' flag. The intention is > to only re-run

Re: [OE-core] [PATCH][master] Add tune for 32-bit ARMv8-a

2016-03-07 Thread Otavio Salvador
Hello Daniel, On Mon, Mar 7, 2016 at 9:55 PM, Otavio Salvador wrote: > On Mon, Mar 7, 2016 at 11:34 AM, Daniel Dragomir > wrote: >> This patch adds tunes for 32-bit armv8 platforms. The user can select >> the vector floating-point

Re: [OE-core] [meta-intel][master][jethro][PATCH 1/1] tune-corei7.inc: Fix PACKAGE_EXTRA_ARCHS for corei7-32

2016-03-07 Thread Mittal, AnujX
Ping > -Original Message- > From: Mittal, AnujX > Sent: Wednesday, March 02, 2016 5:56 PM > To: openembedded-core@lists.openembedded.org > Cc: Chang, Rebecca Swee Fun ; Mittal, AnujX > > Subject: [meta-intel][master][jethro][PATCH

[OE-core] [PATCH] avahi: restore rlimit-nproc tweak for avahi discovery

2016-03-07 Thread Zhixiong Chi
Looks like we are still falling victim to: "chroot.c: fork() failed: Resource temporarily unavailable) = 57" So we restore the removal of rlimit-nproc in avahi.conf, and could receive return value from daemon process to start avahi-daemon.service successfully. The original patch is from

Re: [OE-core] [meta-oe][PATCH] systemd: binfmt should be added to SYSTEMD_PACKAGES only if binfmt is enabled

2016-03-07 Thread Herve Jourdain
Hi Ross, Duly noted, actually I tried several times through git-send-email, but it didn’t go through… I’m trying to figure out how to have it working in my configuration, but as a last resort I turned to Oulook… Until I fix my configuration, if I have other patches to send, I’ll follow your

[OE-core] State of bitbake world, Failed tasks 2016-03-05

2016-03-07 Thread Martin Jansa
== Tested changes (not included in master yet) - bitbake == 5206b0d world-image: add extra target == Tested changes (not included in master yet) - openembedded-core == 2310fe1 no-static-libs.inc: add gdb 11af190 base.bbclass: Introduce EXTRA_CONF_PACKAGECONFIG variable 7571d27 recipes: Replace

[OE-core] [PATCH 1/1] Revert "gstreamer1.0-plugins-XXX: move inherit gettext into common .inc file"

2016-03-07 Thread Peter Kjellerstedt
Do not assume that the recipes in OE-Core are the only ones using gstreamer1.0-plugins.inc or that all GStreamer plugins support localization. Without this reversal, all our GStreamer plugin recipes started spewing out: configure: WARNING: unrecognized options: --disable-nls This reverts commit

[OE-core] [master][PATCH] ARMv8 32-bit compiler tunings

2016-03-07 Thread Daniel Dragomir
Hello! This is a new version for the patch, against master branch: http://lists.openembedded.org/pipermail/openembedded-core/2016-February/117603.html @Martin, I pushed the results from testing with your script in a personal repo: Tune results without the patch - clean open-embedded (master

[OE-core] [PATCH][master] Add tune for 32-bit ARMv8-a

2016-03-07 Thread Daniel Dragomir
This patch adds tunes for 32-bit armv8 platforms. The user can select the vector floating-point instruction set: vfpv4 or fp-armv8 and the thumb, neon, crc and crypto extensions. Signed-off-by: Daniel Dragomir --- meta/conf/machine/include/arm/arch-armv8a.inc

[OE-core] [PATCH 0/1] Revert recent change to streamer1.0-plugins.inc

2016-03-07 Thread Peter Kjellerstedt
This reverts a recent change to streamer1.0-plugins.inc where it was made to inherit gettext. This caused all out GStreamer plugins to start generating warnings since they lack localization support. //Peter The following changes since commit d2c96caa40d6979792b7b73f37e81e2bc67f6735: mtools:

[OE-core] [PATCH 1/2] image creation: allow overriding .rootfs suffix

2016-03-07 Thread Patrick Ohly
By default, the image file name contains ".rootfs" to distinguish the image file from other files created during image building. However, for certain image types (for example, .hddimg) the ".rootfs" suffix is redundant because the type suffix alone already uniquely identifies the main image file

[OE-core] [PATCH 0/2] more flexible image conversion

2016-03-07 Thread Patrick Ohly
In Ostro OS (https://ostroproject.org) we have a custom image class which creates a whole-disk image (https://github.com/ostroproject/meta-ostro/blob/master/meta-ostro/classes/image-dsk.bbclass). Currently that class is more complex than it should be because it re-implements image compression and

Re: [OE-core] [meta-oe][PATCH] systemd: binfmt should be added to SYSTEMD_PACKAGES

2016-03-07 Thread Herve Jourdain
Hmmm… It seems the subject line was cut… It was supposed to say "system: binfmt should be added to SYSTEMD_PACKAGES only if binfmt is enabled". Yep, the second condition was overkill, I agree. I'll send a new version of the patch. Thanks, Herve From: Burton, Ross [mailto:ross.bur...@intel.com]

[OE-core] [PATCH] eudev: remove redundant udev_run assignment

2016-03-07 Thread Ross Burton
The path isn't correct as we use /run/udev now, also /run/udev is the default value, and eudev doesn't let you override it like this anyway. Signed-off-by: Ross Burton --- meta/recipes-core/udev/eudev_3.1.5.bb | 2 -- 1 file changed, 2 deletions(-) diff --git

Re: [OE-core] [oe-core][Patch][jethro] xf86-video-modesetting: Require sufficiently new libdrm

2016-03-07 Thread Burton, Ross
On 1 March 2016 at 20:12, Johannes Pointner wrote: > This fixes the check of the libdrm version in the configure script. > For patches to stable branches please explain why this isn't also required to be applied to master. Ross --

Re: [OE-core] [PATCH 4/7] udev: udev_run is /run, not /var/run (since ea647cd9 2013-05-26)

2016-03-07 Thread Burton, Ross
On 28 February 2016 at 11:38, Jens Rehsack wrote: > - echo 'udev_run="/var/run/udev"' >> ${D}${sysconfdir}/udev/udev.conf > + echo 'udev_run="/run/udev"' >> ${D}${sysconfdir}/udev/udev.conf > oe-core has eudev now so this would need rebasing, but I can't see any

[OE-core] [meta-oe][PATCH] systemd: binfmt should be added to SYSTEMD_PACKAGES

2016-03-07 Thread Herve Jourdain
Signed-off-by: Herve Jourdain --- meta/recipes-core/systemd/systemd_229.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_229.bb b/meta/recipes-core/systemd/systemd_229.bb index 16af0ac..a537dd3 100644 ---

Re: [OE-core] [PATCH 1/1] pTest-tcl fail fixed

2016-03-07 Thread Burton, Ross
On 1 March 2016 at 09:37, Dengke Du wrote: > http.test httpold.test socket.test failed when run the pTest-tcl,because > the tcl script "info hostname" in /usr/lib/tcl/ptest/tests/http.test on > target fail. When run the "info hostname" get the hostname,but it can find >

[OE-core] [PATCH 1/7 v4] rpm: Uprev to rpm-5.4.16 (pre) and rpm-5.4+cvs to current CVS head

2016-03-07 Thread Mark Hatle
meta/lib/oe/package_manager.py was also updated. This ensures that any diagnostic messages are ignored from the output of rpmresolve. The patches have been split into bug fixes (things that belong upstream) and local changes that are OE specific. The following patches are obsolete and have been

[OE-core] [PATCH 2/7 v4] security_flags.inc: Special flags are needed for RPM

2016-03-07 Thread Mark Hatle
RPM interally has support to build and work with the stack protector. This is disabled by default in the RPM package, and the proper settings should be specified in the security_flags. Using the default setting of stack-protector-strong causes linking problems due to issues with libtool selecting

[OE-core] [PATCH 0/7 v4] Upgrade RPM to 5.4.16 (CVE HEAD)

2016-03-07 Thread Mark Hatle
v4: * Move large patches to externally downloaded - Included in a commit to be testable, but that commit should not be merged * Disable default stack-protector for popt * Fix AddErase API breakage * Break popt header dependency * Allow popt to be built internal

[OE-core] [PATCH 3/7 v4] rpm: Enable specific crypto and digest settings via variables

2016-03-07 Thread Mark Hatle
Allow the user to set the specific digest and non-repudiable signature algorithms. This should be done on a distribution wide basis. See recipe for exact instructions, but values are now set using: RPM_FILE_DIGEST_ALGO (default 1 - md5) RPM_SELF_SIGN_ALGO (default DSA) Also, change the

[OE-core] [PATCH] siteinfo: Add ppc64le support.

2016-03-07 Thread Patrick Williams
From: Chris Austen Signed-off-by: Patrick Williams --- meta/classes/siteinfo.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass index b715b6c..1b3906c 100644 ---

Re: [OE-core] [meta-oe][PATCH] systemd: binfmt should be added to SYSTEMD_PACKAGES

2016-03-07 Thread Burton, Ross
First, the commit message isn't accurate (binfmt was already in SYSTEMD_PACKAGES). On 7 March 2016 at 14:17, Herve Jourdain wrote: > -SYSTEMD_PACKAGES = "${PN}-binfmt" > -SYSTEMD_SERVICE_${PN}-binfmt = "systemd-binfmt.service" > +SYSTEMD_PACKAGES =

Re: [OE-core] [oe-core][Patch][jethro] xf86-video-modesetting: Require sufficiently new libdrm

2016-03-07 Thread Johannes Pointner
The reason I thought this patch wouldn't be needed for master is that it was included in xserver 1.18.1 and master is already on xserver 1.18.0. Do you know if it is planned to switch to the newer 1.18.1 version? 2016-03-07 15:02 GMT+01:00 Burton, Ross : > > On 1 March 2016

[OE-core] [PATCH 2/2] image.bbclass: support chaining compression (aka conversion) commands

2016-03-07 Thread Patrick Ohly
It makes sense to use the compression mechanism also for conversion, for example of a whole-disk image into .vdi (VirtualBox). That part already works, like this: COMPRESSIONTYPES_append = " vdi" COMPRESS_CMD_vdi = "qemu-img convert -O vdi ${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}

Re: [OE-core] [meta-oe][PATCH] systemd: binfmt should be added to SYSTEMD_PACKAGES only if binfmt is enabled

2016-03-07 Thread Burton, Ross
Your mailer (Outlook, by the look of it) is corrupting patches (wraps lines when they shouldn't be wrapped), in the future please don't send patches by pasting them into an email but use git-send-email if you can, or attach the patch if you can't. For a one-liner I could fix up the patch by hand

Re: [OE-core] [jethro][PATCH v3] license.bbclass: fix host contamination warnings for license files

2016-03-07 Thread Jagadeesh Krishnanjanappa
> > I've merged this into my staging branch for master, no need to send again. > > Thanks Martin and Ross. Regards, Jagadeesh -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

[OE-core] [PATCH 6/7 v4] db: remove the NO_UPDATE_REASON and replace it a comment about RPM

2016-03-07 Thread Mark Hatle
Signed-off-by: Mark Hatle --- meta/recipes-support/db/db_6.0.30.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/db/db_6.0.30.bb b/meta/recipes-support/db/db_6.0.30.bb index 9505def..50a469b 100644 ---

[OE-core] [PATCH 5/7 v4] rpmresolve: It is not necessary to manually specify -lpopt

2016-03-07 Thread Mark Hatle
Popt may be internal or external to rpm. Either way the rpm libraries will link properly with or without -lpopt. Signed-off-by: Mark Hatle --- meta/recipes-devtools/rpm/rpmresolve_1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 4/7 v2] rpm: A number of the patches have been submitted upstream

2016-03-07 Thread Mark Hatle
Note the upstream submission in the patches. Signed-off-by: Mark Hatle --- meta/recipes-devtools/rpm/rpm/0001-define-EM_AARCH64.patch| 2 +- .../0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch | 2 +-

[OE-core] [PATCH 0/6 v5] Upgrade RPM to 5.4.16 (CVE HEAD)

2016-03-07 Thread Mark Hatle
The new lines follow (patch 1/6). I won't be sending a full patch in order to stop polluting mailboxes. +SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.15-0.20140824.src.rpm;name=srpm;extract=rpm-5.4.15.tar.gz \ +

Re: [OE-core] [PATCH] linux-yocto/kernel-meta: ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED

2016-03-07 Thread Burton, Ross
On 4 March 2016 at 18:21, Bruce Ashfield wrote: > Some coordination is required for this change, as existing BSPs WILL be > affected, and will either need to accept the changes in the standard > ktype or move to the developer ktype. > As qemu machines are

[OE-core] [PATCH] rpm: fix races over rpmqv.c in parallel builds

2016-03-07 Thread Ross Burton
Signed-off-by: Ross Burton --- .../recipes-devtools/rpm/rpm/rpmqv_cc_b_gone.patch | 37 +++--- 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/meta/recipes-devtools/rpm/rpm/rpmqv_cc_b_gone.patch

[OE-core] [PATCH] image.bbclass: fix incomplete .rootfs customization

2016-03-07 Thread Patrick Ohly
The patch for making the .rootfs configurable was incomplete: in the python create_symlinks() method the new variable must be expanded explicitly. Not doing so broke the symlink creation and that led to hard build failures in image types depending on the boot-directdisk.bbclass (like qcow2)

Re: [OE-core] [PATCH] rpm: fix races over rpmqv.c in parallel builds

2016-03-07 Thread Mark Hatle
On 3/7/16 2:11 PM, Ross Burton wrote: > Signed-off-by: Ross Burton Tested and it works. If I need to spin a V6, I'll include this -- otherwise it should be added on it's own. --Mark > --- > .../recipes-devtools/rpm/rpm/rpmqv_cc_b_gone.patch | 37 >

[OE-core] [oe-core][Patch] xf86-video-modesetting: Require sufficiently new libdrm

2016-03-07 Thread Johannes Pointner
This fixes the check of the libdrm version in the configure script. Signed-off-by: Johannes Pointner --- .../modesetting_libdrm_requirements.patch | 29 ++ .../xorg-xserver/xserver-xorg_1.18.0.bb| 1 + 2 files changed, 30

[OE-core] [PATCH] no-static-libs: Ensure correct whitespace is provided for _append

2016-03-07 Thread Saul Wold
Adjusted white space in the DISABLE_STATIC to make output of the -e option more readable. becomes Signed-off-by: Saul Wold --- meta/conf/distro/include/no-static-libs.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

Re: [OE-core] [oe-core][Patch][jethro] xf86-video-modesetting: Require sufficiently new libdrm

2016-03-07 Thread Johannes Pointner
Sure, I'll send a patch for master. Furthermore, I'll send a second version of this one, because I just saw that I messed up the file mode of the patch file. 2016-03-07 17:00 GMT+01:00 Burton, Ross : > > On 7 March 2016 at 14:50, Johannes Pointner

[OE-core] [meta-oe][PATCH] systemd: binfmt should be added to SYSTEMD_PACKAGES only if binfmt is enabled

2016-03-07 Thread Herve Jourdain
V2 Signed-off-by: Herve Jourdain --- meta/recipes-core/systemd/systemd_229.bb | 2 ++-- 1 file changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_229.bb b/meta/recipes-core/systemd/systemd_229.bb index 16af0ac..a537dd3 100644 ---

Re: [OE-core] [jethro][PATCH v3] license.bbclass: fix host contamination warnings for license files

2016-03-07 Thread Burton, Ross
On 28 November 2015 at 08:09, Jagadeesh Krishnanjanappa < jkrishnanjana...@mvista.com> wrote: > We get below host contamination warnings of license files for > each recipe, when we try to create a separate ${PN}-lic package (which > contains license files), by setting LICENSE_CREATE_PACKAGE equal

Re: [OE-core] [jethro][PATCH v3] license.bbclass: fix host contamination warnings for license files

2016-03-07 Thread Burton, Ross
On 7 March 2016 at 16:45, Jagadeesh Krishnanjanappa < jkrishnanjana...@mvista.com> wrote: > I can send an updated patch for the master branch. For jethro, this patch > can be applied successfully. > I've merged this into my staging branch for master, no need to send again. Ross --

Re: [OE-core] [oe-core][Patch][jethro] xf86-video-modesetting: Require sufficiently new libdrm

2016-03-07 Thread Burton, Ross
On 7 March 2016 at 14:50, Johannes Pointner wrote: > The reason I thought this patch wouldn't be needed for master is that > it was included in xserver 1.18.1 and master is already on xserver > 1.18.0. > Do you know if it is planned to switch to the newer 1.18.1 version? >

[OE-core] OE Changelog since 2016-02-28 until 2016-03-06

2016-03-07 Thread cliff . brake
Changelog since 2016-02-28 until 2016-03-06. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-angstrom:

Re: [OE-core] [jethro][PATCH v3] license.bbclass: fix host contamination warnings for license files

2016-03-07 Thread Jagadeesh Krishnanjanappa
This patch was applying correctly for jethro and master, when it was sent on 28th Nov 2015. Now, it applies correctly for jethro. And for master it applies with hunk warning as below -- snip -- patching file meta/classes/license.bbclass Hunk #1 succeeded at 350 (offset 165 lines). -- snip -- I

[OE-core] Cross-distribution ARM meetings at Linaro connect this weel

2016-03-07 Thread Riku Voipio
Hi, We have a few sessions at this Linaro connect that could be in interest of Linux distributions working on Arm/Linux: Tuesday 14.00 Bangkok time: (07.00 UTC): https://bkk16.pathable.com/meetings/372827 BKK16-212: What's broken on ARM64? Thursday 10.10 Bangkok time: (03.00 UTC):

Re: [OE-core] [PATCH][master] Add tune for 32-bit ARMv8-a

2016-03-07 Thread Otavio Salvador
Hello Daniel, On Mon, Mar 7, 2016 at 11:34 AM, Daniel Dragomir wrote: > This patch adds tunes for 32-bit armv8 platforms. The user can select > the vector floating-point instruction set: vfpv4 or fp-armv8 > and the thumb, neon, crc and crypto extensions. > >

[OE-core] [PATCH v2] no-static-libs: Ensure correct whitespace is set for _append

2016-03-07 Thread Saul Wold
Adjusted white space in the DISABLE_STATIC to make output of the -e option more readable. Before: " --enable-opt1 --with_opt1=${libdir}${DISABLE_STATIC} After " --enable-opt1 --with_opt1=${libdir} ${DISABLE_STATIC} Signed-off-by: Saul Wold --- v2: Fixed commit message to

[OE-core] [oe-core][Patch v2][jethro] xf86-video-modesetting: Require sufficiently new libdrm

2016-03-07 Thread Johannes Pointner
v2: Fixed file mode of patch file. This fixes the check of the libdrm version in the configure script. Signed-off-by: Johannes Pointner --- .../0002-modesetting_libdrm_requirements.patch | 29 ++ .../xorg-xserver/xserver-xorg_1.17.2.bb