[yocto] [layerindex-web][PATCH] update: fix regression caused by previous temp dir fix

2018-09-26 Thread Paul Eggleton
In c26604146a74149487a1a2dfc40d40d53aa68bdf I made a fix to change where the bitbake code writes out bitbake.lock and other files it creates during parsing, but didn't adequately test it and it turns out our call to delete the temp directory races against bitbake deleting bitbake.lock and

[yocto] [meta-selinux][PATCH] libpcre_selinux.inc: fix do_install failure if .so file does not exist

2018-09-26 Thread Chen Qi
In case of the existence of meta-mingw, the library is .dll instead of .so and these .dll files are in ${bindir}. We need to check the existence of the .so file before doing readlink, otherwise do_install fails. Signed-off-by: Chen Qi --- recipes-support/libpcre/libpcre_selinux.inc | 2 +- 1

[linux-yocto] [PATCH] arm64: dts: stratix10: move dts node gpio_fpga into board specific dts file.

2018-09-26 Thread Meng.Li
From: Limeng The FPGA IO peripheral is only in specific FPGA design on Intel-PSG Stratix10 development board, and not all FPGA designs include FPGA IO. In addtional, this part of resource <0xf9001080 0x4> is able to be used for any peripheral. Therefore, move the dts node gpio_fpga from header

[linux-yocto] : [yocto-4.12]: intel-socfpga: arm64: dts: stratix10: move dts node gpio_fpga into board specific dts file.

2018-09-26 Thread Meng.Li
From: Limeng Hi Bruce, The FPGA IO peripheral is only in specific FPGA design on Intel-PSG Stratix10 development board, and not all FPGA designs include FPGA IO. In addtional, this part of resource <0xf9001080 0x4> is able to be used for any peripheral. Therefore, move the dts node gpio_fpga

[yocto] can't get header files from recipe included in SDK build

2018-09-26 Thread Greg Wilson-Lindberg
I've got a recipe that I've created for a package that creates some .so libs and I'm having trouble getting the associated header files included in the SDK build. The FILES lines that I have are: FILES_${PN}-dbg = "/usr/src/debug/canfestival" FILES_${PN}-dev = "/usr/lib/libcanfestival*.a

Re: [yocto] PetaLinux build fails because of locale errors logged by do_rootfs (Ubuntu 18.04 LST)

2018-09-26 Thread Tőkés Attila
Hi, Got some more details on this... Apparently, the errors are generated because of the use of Python 3.5.3 included in Yocto / PetaLinux. The "Failed to set locale, defaulting to C" message seems to be logged from dnf, i18n.py/setup_locale(): def setup_locale():     try:        

[yocto] [meta-security][PATCH] meta-security: add THUD

2018-09-26 Thread Armin Kuster
Signed-off-by: Armin Kuster --- conf/layer.conf | 2 +- meta-security-compliance/conf/layer.conf | 2 +- meta-tpm/conf/layer.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/layer.conf b/conf/layer.conf index

Re: [linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread Bruce Ashfield
I have a full update to the latest 4.18-rt pending, so I'll confirm that these are part of it, and do the update that way. Cheers, Bruce On 2018-09-26 2:42 AM, zhe...@windriver.com wrote: From: Sebastian Andrzej Siewior The powerpc port won't compile and abort with "Error: operand out of

[yocto] Proper convention for naming guest

2018-09-26 Thread Ken Bassford
Hi Folks, I'm rather new to Yocto so please forgive me (and please correct me) if I have some of the terminology wrong. I am currently building a Xen dom0 with two guest domain images running under the dom0. These directories for building each of these images are located under the

Re: [yocto] Is KCONFIG_MODE test backwards in kernel-yocto.bbclass?

2018-09-26 Thread Bruce Ashfield
On 2018-09-25 10:03 PM, Aaron Cohen wrote: http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/classes/kernel-yocto.bbclass#n297 With no KCONFIG_MODE specified, we check if the user has copied a defconfig to workdir, and then use allnoconfig if so. Shouldn't we be using alldefconfig in

[yocto] Removing old images

2018-09-26 Thread Mauro Ziliani
Hi all. How can I remove all unneeded images in tmp/deploy/images/imx6dlsabresd ? I try a brutal rm -f. but it is not so friendly. MZ -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] update_icon_cache fails

2018-09-26 Thread Mauro Ziliani
Hi all. I try to build my own image with Krogoth, imx6dlsabresd. bitbake tells me a warning about update_icon_cache. The reason is that it cannot find gdk-pixbuf-query-loaders in ${BUILDDIR}/tmp/sysroot/x86_64-linux I look for gdk-pixbuf-query-loaders in

[linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread zhe.he
From: Sebastian Andrzej Siewior The powerpc port won't compile and abort with "Error: operand out of range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger than 15 which is the upper limit. Swap it with TIF_32BIT and fixup the assembly in one assembly file to get it to compile

Re: [linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread He Zhe
Ignore this. Zhe On 2018年09月26日 14:33, zhe...@windriver.com wrote: > From: Sebastian Andrzej Siewior > > The powerpc port won't compile and abort with "Error: operand out of > range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger > than 15 which is the upper limit. > Swap it with

[linux-yocto] [PATCH] powerpc: correct the preempt-lazy assembly

2018-09-26 Thread zhe.he
From: Sebastian Andrzej Siewior The powerpc port won't compile and abort with "Error: operand out of range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger than 15 which is the upper limit. Swap it with TIF_32BIT and fixup the assembly in one assembly file to get it to compile