Re: [OE-core] Yocto Project Status WW47’17

2017-11-27 Thread Robert Yang
On 11/23/2017 06:20 PM, Richard Purdie wrote: On Mon, 2017-11-20 at 20:22 -0500, Randy MacLeod wrote: o   Issues with 4.13.10 host kernels booting kvm x86 guests on Tumbleweed (Suse) and Fedora 26 (attempting to see if 4.13.12 helps) Robert, can you test Fedora 26. It would help to have a de

[OE-core] [PATCH] qemu: fix the makefile for ptest

2017-11-27 Thread jackie.huang
From: Jackie Huang It always fail to check the file generated by configure when running ptest on the target since it's cross-compiling, so remove the check from the Makefile for ptest. Signed-off-by: Jackie Huang --- meta/recipes-devtools/qemu/qemu_2.10.1.bb | 3 +++ 1 file changed, 3 insertio

Re: [OE-core] [PATCH] bind: fix python3 dependencies

2017-11-27 Thread Alexander Kanavin
On 11/27/2017 10:24 PM, Dan McGregor wrote: 2) why is native python3 needed, and host python3 is not enough. Host python3 gives me the error above. Possibly my host's python3 is broken, but it's a Poky build appliance with multilib enabled. I'll make it more explicit in my commit message. No

Re: [OE-core] [PATCH] core-image-tiny-initramfs: initramfs recipes should not generate an actual image file

2017-11-27 Thread wenzong fan
On 11/28/2017 02:00 PM, Alejandro Hernandez wrote: Hey Wenzong, If you are using an Intel NUC, there is a recipe in meta-intel which is called core-image-tiny (not initramfs), that one is exactly what you are asking for, it builds the core-image-tiny-initramfs and then automatically creates

[OE-core] [PATCH] icu: fix libicudata corruption on big endian system

2017-11-27 Thread Yi Zhao
ICU library libicudata is created with a wrong endianness if the host and target have different endianness. (e.g. build ICU for qemuppc on x86-64 host) See upstream bug report: http://bugs.icu-project.org/trac/ticket/11758 The discussion in oe-core mailing list: https://www.mail-archive.com/openem

Re: [OE-core] [PATCH] core-image-tiny-initramfs: initramfs recipes should not generate an actual image file

2017-11-27 Thread Alejandro Hernandez
Hey Wenzong, If you are using an Intel NUC, there is a recipe in meta-intel which is called core-image-tiny (not initramfs), that one is exactly what you are asking for, it builds the core-image-tiny-initramfs and then automatically creates a WIC image, which would be something similar to man

Re: [OE-core] [PATCH] core-image-tiny-initramfs: initramfs recipes should not generate an actual image file

2017-11-27 Thread wenzong fan
Hi Alex, Do you have a case that generating an image with wic + tiny initramfs? If so could you please show me that? I tried to create an image with below commands directly, I'm not sure if this is a proper test case: $ wic create mkefidisk -e core-image-tiny-initramfs While I booting it wi

Re: [OE-core] backfill mechanism

2017-11-27 Thread Huang, Jie (Jackie)
> -Original Message- > From: Mark Hatle [mailto:mark.ha...@windriver.com] > Sent: Monday, November 27, 2017 23:46 > To: Slater, Joseph; openembedded-core@lists.openembedded.org > Cc: MacLeod, Randy; Huang, Jie (Jackie) > Subject: Re: backfill mechanism > > On 11/17/17 5:32 PM, Slater, Jo

Re: [OE-core] [PATCH] linux-yocto: drop KCONF_BSP_AUDIT_LEVEL

2017-11-27 Thread Ming Liu
Hi, Bruce: OK, got that. //Ming Liu 2017-11-27 21:36 GMT+08:00 Bruce Ashfield : > Nope. > > This flag can stay. I have new audit code coming that will use it again .. > that's > why it was left in the first place. > > Cheers, > > Bruce > > On Mon, Nov 27, 2017 at 7:54 AM, wrote: > >> From: Min

Re: [OE-core] [PATCH] recipes-graphics/piglit: Add patch for fix build in HiKey platforms

2017-11-27 Thread Anibal Limón
On Mon, Nov 27, 2017 at 5:06 PM, Randy MacLeod wrote: > On 2017-11-24 11:52 AM, Aníbal Limón wrote: > >> From: Aníbal Limón >> >> Some EGL implementations do not actually ship all Khronos-extensions. >> As it turns out, the Mali 450 driver does not include >> eglGetPlatformDisplay >> symbol so t

Re: [OE-core] [PATCH] recipes-graphics/piglit: Add patch for fix build in HiKey platforms

2017-11-27 Thread Randy MacLeod
On 2017-11-24 11:52 AM, Aníbal Limón wrote: From: Aníbal Limón Some EGL implementations do not actually ship all Khronos-extensions. As it turns out, the Mali 450 driver does not include eglGetPlatformDisplay symbol so there is not grauntee to exists use piglit_egl_get_default_display Anibal,

Re: [OE-core] [PATCH] bind: fix python3 dependencies

2017-11-27 Thread Dan McGregor
On 27 November 2017 at 13:16, Alexander Kanavin wrote: > On 11/27/2017 08:35 PM, Dan McGregor wrote: >> >> Add missing python3 dependency, and use python3 from the build >> system. >> -DEPENDS = "openssl libcap" >> +DEPENDS = "openssl libcap python3" >> -inherit autotools update-rc.d systemd usera

[OE-core] [PATCH v5 1/2] image.bbclass: add prohibited-paths QA test

2017-11-27 Thread Martyn Welch
Sometimes we wish to ensure that files or directories are not installed somewhere that may prove detrimental to the operation of the system. For example, this may be the case if files are placed in a directory that is utilised as a mount point at run time, thus making them inaccessible once when th

[OE-core] [PATCH v5 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2017-11-27 Thread Martyn Welch
Add a default IMAGE_QA_PROHIBIT_PATHS variable containing paths known to be mounted in the default fstab, which are known mount points or directories which should be populated at runtime. Suggested-by: Alexander Kanavin Signed-off-by: Martyn Welch --- Changes since v3: - This patch added. me

Re: [OE-core] [PATCH] devtool: add license checksum change handling to 'devtool upgrade'

2017-11-27 Thread Alexander Kanavin
On 11/27/2017 08:11 PM, Khem Raj wrote: 3) and the cool part: devtool will create a diff of the old and new licenses, and write the diff into the workspace recipe as a comment, like this: adding a comment in recipe itself might start folks sending patches with this text in the recipe changes

Re: [OE-core] [PATCH] bind: fix python3 dependencies

2017-11-27 Thread Alexander Kanavin
On 11/27/2017 08:35 PM, Dan McGregor wrote: Add missing python3 dependency, and use python3 from the build system. -DEPENDS = "openssl libcap" +DEPENDS = "openssl libcap python3" -inherit autotools update-rc.d systemd useradd pkgconfig python3-dir +inherit autotools update-rc.d systemd useradd pk

Re: [OE-core] [PATCH v2] kernel.bbclass: Add cleandirs for do_shared_workdir

2017-11-27 Thread Bruce Ashfield
On Mon, Nov 27, 2017 at 2:01 PM, Saul Wold wrote: > We add the kernel-build-artifacts to the cleandirs list to ensure > that there are no remaining artificats in the kernel-build-artifacts > directory which is STAGING_KERNEL_BUILDDIR. Without this change > multiple System.map files are visiable i

[OE-core] [PATCH v2] kernel.bbclass: Add cleandirs for do_shared_workdir

2017-11-27 Thread Saul Wold
We add the kernel-build-artifacts to the cleandirs list to ensure that there are no remaining artificats in the kernel-build-artifacts directory which is STAGING_KERNEL_BUILDDIR. Without this change multiple System.map files are visiable in the STAGING_KERNEL_BUILDDIR, which could cause problems fo

[OE-core] [PATCH] bind: fix python3 dependencies

2017-11-27 Thread Dan McGregor
From: Dan McGregor Add missing python3 dependency, and use python3 from the build system. Signed-off-by: Dan McGregor --- meta/recipes-connectivity/bind/bind_9.10.6.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/bind/bind_9.10.6.bb b/meta/

Re: [OE-core] [PATCH] kernel.bbclass: Add cleandirs for do_shared_workdir

2017-11-27 Thread Saul Wold
On Mon, 2017-11-27 at 08:35 -0500, Bruce Ashfield wrote: > > > On Sun, Nov 26, 2017 at 11:52 PM, Bruce Ashfield l.com> wrote: > > > > On Sun, Nov 26, 2017 at 5:44 PM, Saul Wold > > wrote: > > > On Wed, 2017-11-22 at 15:51 -0500, Bruce Ashfield wrote: > > > > On 2017-11-22 1:47 PM, Saul Wold wr

[OE-core] [PATCH] bind: fix python3 dependencies

2017-11-27 Thread Dan McGregor
From: Dan McGregor Add missing python3 dependency, and use python3 from the build system. Signed-off-by: Dan McGregor --- meta/recipes-connectivity/bind/bind_9.10.6.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/bind/bind_9.10.6.bb b/meta/

[OE-core] [PATCH] package_manager: force dnf to refresh the cache

2017-11-27 Thread Ross Burton
DNF has a time-based cache policy (and a great sense of humour) so it's possible that 'dnf makecache' won't actually refresh any caches. Force the cache updates by passing --refresh. Signed-off-by: Ross Burton --- meta/lib/oe/package_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion

Re: [OE-core] [PATCH] devtool: add license checksum change handling to 'devtool upgrade'

2017-11-27 Thread Khem Raj
On 11/27/17 6:54 AM, Alexander Kanavin wrote: Specifically, 'devtool upgrade' will now do these things: 1) determine if any of the license checksums need updating; if so, write the new checksums into the LIC_FILES_CHKSUM value in the recipe that is written to the workspace; 2) print a notice

Re: [OE-core] [PATCH] puppet: add recipe for puppet 4.10.9

2017-11-27 Thread Khem Raj
On 11/27/17 2:35 AM, Pablo Saavedra wrote: Added Yocto recipe for Puppet 4.10.9 Signed-off-by: Pablo Saavedra --- recipes-support/puppet/puppet_4.10.9.bb | 41 + 1 file changed, 41 insertions(+) create mode 100644 recipes-support/puppet/puppet_4.10.9.bb d

Re: [OE-core] [PATCH 5/6] alsa-tools: 1.1.3 -> 1.1.5

2017-11-27 Thread Khem Raj
On 11/27/17 8:39 AM, Tanu Kaskinen wrote: Changes: http://www.alsa-project.org/main/index.php/Changes_v1.1.4_v1.1.5 Rebased autotools.patch and makefile_no_gtk.patch. Dropped 0001-as10k1-Make-output_tram_line-static-inline.patch with the assumption that it's not needed any more. The patch add

[OE-core] [PATCH 5/6] alsa-tools: 1.1.3 -> 1.1.5

2017-11-27 Thread Tanu Kaskinen
Changes: http://www.alsa-project.org/main/index.php/Changes_v1.1.4_v1.1.5 Rebased autotools.patch and makefile_no_gtk.patch. Dropped 0001-as10k1-Make-output_tram_line-static-inline.patch with the assumption that it's not needed any more. The patch added a "static" qualifier to a function. Accordi

[OE-core] [PATCH 4/6] alsa-plugins: 1.1.4 -> 1.1.5

2017-11-27 Thread Tanu Kaskinen
Changes: http://www.alsa-project.org/main/index.php/Changes_v1.1.4_v1.1.5 Signed-off-by: Tanu Kaskinen --- .../alsa/{alsa-plugins_1.1.4.bb => alsa-plugins_1.1.5.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/alsa/{alsa-plugins_1.1.4.bb =

[OE-core] [PATCH 2/6] lame: 3.99.5 -> 3.100

2017-11-27 Thread Tanu Kaskinen
Release notes: http://lame.cvs.sourceforge.net/viewvc/lame/lame/doc/html/history.html?revision=1.154 Dropped patches that are included in the release: - lame-3.99.5_fix_for_automake-1.12.x.patch - CVE-2017-13712.patch The CACHED_CONFIGUREVARS thing to disable SSE code on x86 isn't needed anymor

[OE-core] [PATCH 3/6] alsa-lib: 1.1.4.1 -> 1.1.5

2017-11-27 Thread Tanu Kaskinen
Changes: http://www.alsa-project.org/main/index.php/Changes_v1.1.4_v1.1.5 Dropped all patches. The poll.h patch is included in the release, and the wordexp patch is not needed any more, because the wordexp function is replaced by an internal reimplementation. It would still be possible to enable

[OE-core] [PATCH 6/6] alsa-utils: 1.1.4 -> 1.1.5

2017-11-27 Thread Tanu Kaskinen
Changes: http://www.alsa-project.org/main/index.php/Changes_v1.1.4_v1.1.5 Rebased 0001-alsactl-don-t-let-systemd-unit-restore-the-volume-wh.patch. Signed-off-by: Tanu Kaskinen --- ...sa-utils-scripts_1.1.4.bb => alsa-utils-scripts_1.1.5.bb} | 0 ...lsactl-don-t-let-systemd-unit-restore-the-vol

[OE-core] [PATCH 1/6] pulseaudio: 10.0 -> 11.1

2017-11-27 Thread Tanu Kaskinen
11.0 release notes: https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/11.0/ Additional changes in 11.1: * Fix a crash in filter modules related to flat volumes and volume sharing * Fix a crash when the bluetooth adapter reports weird MTU size * Disable bluetooth MTU autodetection by

[OE-core] [PATCH 0/6] Audio recipe updates

2017-11-27 Thread Tanu Kaskinen
Tanu Kaskinen (6): pulseaudio: 10.0 -> 11.1 lame: 3.99.5 -> 3.100 alsa-lib: 1.1.4.1 -> 1.1.5 alsa-plugins: 1.1.4 -> 1.1.5 alsa-tools: 1.1.3 -> 1.1.5 alsa-utils: 1.1.4 -> 1.1.5 .../Check-if-wordexp-function-is-supported.patch | 51 .../avoid-including-sys-poll.h-directly.patch

[OE-core] ✗ patchtest: failure for Allow specifying subdir for rootfs when using wic -e

2017-11-27 Thread Patchwork
== Series Details == Series: Allow specifying subdir for rootfs when using wic -e Revision: 1 URL : https://patchwork.openembedded.org/series/9964/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have

[OE-core] (no subject)

2017-11-27 Thread Volker Vogelhuber
I currently have an image with six different partitions. See the following partition configuration: ># bootloader >part /boot/EFI --source bootimg-efi --sourceparams="loader=systemd-boot" >--ondisk mmcblk --fstype=vfat --label boot --active --align 1024 --size 20 >--overhead-factor=1.0 --uuid="

[OE-core] [PATCH] Allow specifying subdir for rootfs when using wic -e

2017-11-27 Thread Volker Vogelhuber
--- scripts/lib/wic/ksparser.py | 1 + scripts/lib/wic/partition.py | 1 + scripts/lib/wic/plugins/source/rootfs.py | 7 --- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/lib/wic/ksparser.py b/scripts/lib/wic/ksparser.py index 99b66eebc5..a9e07

Re: [OE-core] [PATCH 1/1] fontcache: fix fonts postinst failed

2017-11-27 Thread Burton, Ross
Ah, that would be why I have this in a local branch: http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/commit/?h=ross/allarch I rediscovered this on Friday... personally I think my solution is better as it's global instead of needing to be worked around in each place where this can happen,

[OE-core] [PATCH 2/2] rootfs-postcommands.bbclass: ensure that rootfs gets mounted ro

2017-11-27 Thread Patrick Ohly
When read-only-rootfs is active, we need to ensure that the rootfs does not get mounted read/write by the kernel or initramfs. Adding "ro" to the boot parameters achieves that. Signed-off-by: Patrick Ohly --- meta/classes/rootfs-postcommands.bbclass | 8 1 file changed, 8 insertions(+)

[OE-core] [PATCH 1/2] connman.inc: do not check IMAGE_FEATURES

2017-11-27 Thread Patrick Ohly
Recipes can't rely on IMAGE_FEATURES to determine whether the resulting packages will be used in an image with read/write or read-only rootfs because IMAGE_FEATURES is a per-image recipe variable. The connman.inc code checked IMAGE_FEATURES to determine whether /var/run/connman needs to be created

[OE-core] [PATCH 0/2] fixes for read-only rootfs

2017-11-27 Thread Patrick Ohly
When investigating in refkit why /etc/machine-id was getting permanently modified in a rootfs despite read-only-rootfs in IMAGE_FEATURES, I noticed two things: - the boot parameters did not include "ro", the initramfs thus mounted the rootfs read/write, and systemd then wrote /etc/machine-id be

[OE-core] Yocto Project Status WW48’17

2017-11-27 Thread Jolley, Stephen K
Current Dev Position: YP 2.5 M1 development Next Deadline: YP 2.5 M1 cut off of 12/4/17 SWAT team rotation: Paul -> Todor on Nov. 24, 2017. SWAT team rotation: Todor -> Tracy on Dec. 1, 2017. https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: ·We ar

Re: [OE-core] backfill mechanism

2017-11-27 Thread Mark Hatle
On 11/17/17 5:32 PM, Slater, Joseph wrote: > The backfill mechanism is not compatible with multilib.  This could possibly > be > fixed, but the backfill_considered functionality is also obscure, so I think > in > at least the machine related .inc files we should replace lines like > >   > > MAC

Re: [OE-core] [rocko][PATCH] weston: add patch to set pitch correctly for subsampled textures

2017-11-27 Thread Leonardo Sandoval
On Sat, 25 Nov 2017 22:59:36 +0300 Andrey Konovalov wrote: > On 24.11.2017 23:34, Leonardo Sandoval wrote: > > On Fri, 24 Nov 2017 22:58:20 +0300 > > Andrey Konovalov wrote: > > > >> This exact patch also applies to pyro. > >> Should I send the separate "[OE-core][pyro][PATCH] weston: add pat

Re: [OE-core] ✗ patchtest: failure for linux-yocto: drop KCONF_BSP_AUDIT_LEVEL

2017-11-27 Thread Leonardo Sandoval
On Mon, 27 Nov 2017 13:03:05 - Patchwork wrote: > == Series Details == > > Series: linux-yocto: drop KCONF_BSP_AUDIT_LEVEL > Revision: 1 > URL : https://patchwork.openembedded.org/series/9957/ > State : failure > > == Summary == > > > Thank you for submitting this patch series to OpenEm

Re: [OE-core] [PATCH 1/1] fontcache: fix fonts postinst failed

2017-11-27 Thread Christopher Larson
On Tue, Oct 25, 2016 at 7:31 PM, Hongxu Jia wrote: > While instal liberation-fonts to image, the fonts postinst > failed at do_rootfs time: > --- > |WARNING: core-image-minimal-1.0-r0 do_rootfs: The postinstall intercept > hook > 'update_font_cache' fai

[OE-core] [PATCH] devtool: add license checksum change handling to 'devtool upgrade'

2017-11-27 Thread Alexander Kanavin
Specifically, 'devtool upgrade' will now do these things: 1) determine if any of the license checksums need updating; if so, write the new checksums into the LIC_FILES_CHKSUM value in the recipe that is written to the workspace; 2) print a notice to the standard output: NOTE: New recipe is /hom

Re: [OE-core] [PATCH] linux-yocto: drop KCONF_BSP_AUDIT_LEVEL

2017-11-27 Thread Bruce Ashfield
Nope. This flag can stay. I have new audit code coming that will use it again .. that's why it was left in the first place. Cheers, Bruce On Mon, Nov 27, 2017 at 7:54 AM, wrote: > From: Ming Liu > > The warning that this flag was trying to control, it had been dropped > by commit 0f698dfd: >

Re: [OE-core] [PATCH] kernel.bbclass: Add cleandirs for do_shared_workdir

2017-11-27 Thread Bruce Ashfield
On Sun, Nov 26, 2017 at 11:52 PM, Bruce Ashfield wrote: > > > On Sun, Nov 26, 2017 at 5:44 PM, Saul Wold wrote: > >> On Wed, 2017-11-22 at 15:51 -0500, Bruce Ashfield wrote: >> > On 2017-11-22 1:47 PM, Saul Wold wrote: >> > > Ensure we have a clean and empty STAGING_KERNEL_BUILDDIR (kernel- >> >

[OE-core] ✗ patchtest: failure for linux-yocto: drop KCONF_BSP_AUDIT_LEVEL

2017-11-27 Thread Patchwork
== Series Details == Series: linux-yocto: drop KCONF_BSP_AUDIT_LEVEL Revision: 1 URL : https://patchwork.openembedded.org/series/9957/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed

[OE-core] [PATCH] linux-yocto: drop KCONF_BSP_AUDIT_LEVEL

2017-11-27 Thread liu . ming50
From: Ming Liu The warning that this flag was trying to control, it had been dropped by commit 0f698dfd: [ kernel-yocto: streamline patch, configuration and audit phases ] so this flag is useless since that commit merged, drop it as well. Signed-off-by: Ming Liu --- meta/classes/kernel-yocto.

[OE-core] [PATCH v8 15/16] python3: remove two setup.py cross-compile hacks

2017-11-27 Thread Markus Lehtonen
Remove two unneeded hacks. The first hack ("setup.py: no host headers libs" patch) is not needed because we use cross-compiler (e.g. i586-oe-linux-gcc) which has not been configured with any host system include or library directories, and thus, we don't get any host system directories when running

[OE-core] [PATCH v8 16/16] oeqa: add selftest for python pgo

2017-11-27 Thread Markus Lehtonen
Check that we're able to run python profile task on qemu and that python builds when pgo is enabled. [YOCTO #9338] Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/selftest/cases/python.py | 28 1 file changed, 28 insertions(+) create mode 100644 meta/lib/oeqa/self

[OE-core] [PATCH v8 14/16] python3: add python3-tools subpackage

2017-11-27 Thread Markus Lehtonen
Useful in developing Python, e.g. in benchmarking. [YOCTO #9338] Signed-off-by: Markus Lehtonen --- meta/recipes-devtools/python/python-3.5-manifest.inc | 10 +++--- meta/recipes-devtools/python/python3_3.5.3.bb| 5 + scripts/contrib/python/generate-manifest-3.5.py | 3 ++

[OE-core] [PATCH v8 13/16] python3: fix profile-optimized build of modules

2017-11-27 Thread Markus Lehtonen
Without this the pgo-related compiler flags are not used in cross-builds. [YOCTO #9338] Signed-off-by: Markus Lehtonen --- ...-CFLAGS-for-extensions-when-cross-compili.patch | 56 ++ meta/recipes-devtools/python/python3_3.5.3.bb | 1 + 2 files changed, 57 insertions(+)

[OE-core] [PATCH v8 12/16] python3: support profile optimized build

2017-11-27 Thread Markus Lehtonen
This patch makes it possible to build python3 with profile directed optimization. That is, feed python build process with profile data to guide optimization. This is the third (and the last) step in profile directed optimization for Python 3.x. In order to do a profile-optimized build you need to

[OE-core] [PATCH v8 09/16] oeqa/targetcontrol: re-introduce get_target_controller()

2017-11-27 Thread Markus Lehtonen
This function was dropped in f352ef37a27cb0871c87cf9991d8ad2e1d560fde as unused, but, python-pgo-image needs it for running profile task on target hw. [YOCTO #9338] Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/targetcontrol.py | 25 + 1 file changed, 25 insertions(+)

[OE-core] [PATCH v8 11/16] devtools/images: add python-pgo-image

2017-11-27 Thread Markus Lehtonen
This is a special image for profiling Python 3.x in order to utilize profile-guided-optimization. Profile data can be obtained by by running bitbake python-pgo-image -c profile. Profile data will be copied into a directory pointed by PYTHON3_PROFILE_DIR on the host system. The profile task may be s

[OE-core] [PATCH v8 10/16] oeqa/targetcontrol: add missing arg to SimpleRemoteTarget.__init__

2017-11-27 Thread Markus Lehtonen
Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/targetcontrol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index d147a44480..da529e67a4 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/ta

[OE-core] [PATCH v8 08/16] iproute2: enable native

2017-11-27 Thread Markus Lehtonen
[YOCTO #9338] Signed-off-by: Markus Lehtonen --- meta/recipes-connectivity/iproute2/iproute2.inc | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/iproute2/iproute2.inc b/meta/recipes-connectivity/iproute2/iproute2.inc index a578eb3afa..d08d049f

[OE-core] [PATCH v8 07/16] iptables: enable native

2017-11-27 Thread Markus Lehtonen
[YOCTO #9338] Signed-off-by: Markus Lehtonen --- ...revent-absolute-path-in-installed-symlink.patch | 29 ++ meta/recipes-extended/iptables/iptables_1.6.1.bb | 3 +++ 2 files changed, 32 insertions(+) create mode 100644 meta/recipes-extended/iptables/iptables/prevent-abs

[OE-core] [PATCH v8 03/16] python3: add python3-profile-opt recipe

2017-11-27 Thread Markus Lehtonen
This patch adds a new recipe that builds a special version of python3 that produces profile data used for optimization. The new recipe directly includes the base python recipe so that they are build in as similar way as possible and this hopefully decreases the recipe maintenance burden, too. Also

[OE-core] [PATCH v8 05/16] openssh: extend to -native

2017-11-27 Thread Markus Lehtonen
[YOCTO #9338] Signed-off-by: Markus Lehtonen --- ...1-don-t-use-absolute-path-for-ssh-program.patch | 31 ++ meta/recipes-connectivity/openssh/openssh_7.6p1.bb | 7 - 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-connectivity/openssh/

[OE-core] [PATCH v8 01/16] python3-native: support profile optimized build

2017-11-27 Thread Markus Lehtonen
Make it possible to build python3-native with profile directed optimization enabled. The feature is enabled by specifying PYTHON3_NATIVE_PROFILE_OPT = "1" in local.conf. The profile task to be run may be specified with PYTHON3_NATIVE_PROFILE_TASK variable in local.conf, e.g. PYTHON3_NATIVE_PROFILE

[OE-core] [PATCH v8 06/16] libmnl: enable native

2017-11-27 Thread Markus Lehtonen
[YOCTO #9338] Signed-off-by: Markus Lehtonen --- meta/recipes-extended/libmnl/libmnl_1.0.4.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-extended/libmnl/libmnl_1.0.4.bb b/meta/recipes-extended/libmnl/libmnl_1.0.4.bb index b458799800..23262e8c6f 100644 --- a/meta/recipes-

[OE-core] [PATCH v8 04/16] python3-profile-opt: rename libpython3

2017-11-27 Thread Markus Lehtonen
Prevents soname clash with "normal" libpython3. The python library needs to be renamed so that the automatic ndency generation/checking mechanism in bitbake does not get confused. Otherwise python3-profile-opt will depend on libpython3 from the "normal" python3 package. [YOCTO #9338] Signed-off-b

[OE-core] [PATCH v8 00/16] support profile-optimized build for Python

2017-11-27 Thread Markus Lehtonen
Changes since v7: - simple selftest added The following changes since commit 33418ed064fe9cff5b4803f09135a81d9170c189: runqemu: Also specialcase resolution of '.' to the file's location (2017-11-21 17:58:36 +) are available in the git repository at: git://git.openembedded.org/openembe

[OE-core] [PATCH v8 02/16] python3: fix depends of python3-tests

2017-11-27 Thread Markus Lehtonen
Similar to an earlier fix for Python 2.7. Make the tests subpackage depend on all modules as test.regrtest uses most (if not all) of them. Some tests also depend on libgcc so add that as a runtime dependency as well. [YOCTO #9338] Signed-off-by: Markus Lehtonen --- meta/recipes-devtools/python

Re: [OE-core] [PATCH] puppet: add recipe for puppet 4.10.9

2017-11-27 Thread Burton, Ross
A puppet recipe is great, but it doesn't belong in oe-core. Maybe one of the layers in meta-openembedded would be better. Ross On 27 November 2017 at 10:35, Pablo Saavedra wrote: > Added Yocto recipe for Puppet 4.10.9 > > Signed-off-by: Pablo Saavedra > --- > recipes-support/puppet/puppet_4.

[OE-core] [PATCH] puppet: add recipe for puppet 4.10.9

2017-11-27 Thread Pablo Saavedra
Added Yocto recipe for Puppet 4.10.9 Signed-off-by: Pablo Saavedra --- recipes-support/puppet/puppet_4.10.9.bb | 41 + 1 file changed, 41 insertions(+) create mode 100644 recipes-support/puppet/puppet_4.10.9.bb diff --git a/recipes-support/puppet/puppet_4.10.9.b

[OE-core] [PATCH 1/1] bind: fix daemon startup failure on sysvinit

2017-11-27 Thread Chen Qi
When starting the bind daemon on sysvinit based system, we are meeting the following error and the daemon fails to start. /etc/bind/rndc.key: permission denied Fix this problem by chaning the ownship of rndc.key to root:bind. Signed-off-by: Chen Qi --- ...owner-of-rndc.key-to-correctly-start

[OE-core] [PATCH 0/1] bind: fix daemon startup failure on sysvinit

2017-11-27 Thread Chen Qi
The following changes since commit 72867393fe2004ab9f0ee23eb09a975c82938b9e: runqemu: Also specialcase resolution of '.' to the file's location (2017-11-21 17:58:41 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/bind-daemon-sysvinit http://git.