[OE-core] [PATCH v2] pulseaudio: improve the Thumb frame pointer fix

2020-07-17 Thread Tanu Kaskinen
By changing the register that PulseAudio uses in its asm code makes it unnecessary to care whether frame pointers are enabled or not. This fix was suggested by Andre McCurdy. Signed-off-by: Tanu Kaskinen --- v2: Fixed the Upstream-Status line. .../pulseaudio/pulseaudio.inc |

[OE-core] ✗ patchtest: failure for pulseaudio: improve the Thumb frame pointer fix

2020-07-17 Thread Patchwork
== Series Details == Series: pulseaudio: improve the Thumb frame pointer fix Revision: 1 URL : https://patchwork.openembedded.org/series/25177/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have

[OE-core] [PATCH] pulseaudio: improve the Thumb frame pointer fix

2020-07-17 Thread Tanu Kaskinen
By changing the register that PulseAudio uses in its asm code makes it unnecessary to care whether frame pointers are enabled or not. This fix was suggested by Andre McCurdy. Signed-off-by: Tanu Kaskinen --- .../pulseaudio/pulseaudio.inc | 8 ---

Re: [OE-core] [PATCH] pulseaudio: fix for ARM thumb + frame pointers compilation error

2020-07-17 Thread Tanu Kaskinen
On Fri, 2020-07-17 at 12:19 -0700, Andre McCurdy wrote: > On Fri, Jul 17, 2020 at 3:09 AM Tanu Kaskinen wrote: > > On Thu, 2020-03-26 at 14:23 -0700, Andre McCurdy wrote: > > > On Thu, Mar 26, 2020 at 1:26 PM Adrian Bunk wrote: > > > > On Thu, Mar 26, 2020 at 12:53:08PM -0700, Andre McCurdy

Re: [OE-core] [PATCH] pulseaudio: fix for ARM thumb + frame pointers compilation error

2020-07-17 Thread Andre McCurdy
On Fri, Jul 17, 2020 at 3:09 AM Tanu Kaskinen wrote: > On Thu, 2020-03-26 at 14:23 -0700, Andre McCurdy wrote: > > On Thu, Mar 26, 2020 at 1:26 PM Adrian Bunk wrote: > > > On Thu, Mar 26, 2020 at 12:53:08PM -0700, Andre McCurdy wrote: > > > > On Thu, Mar 26, 2020 at 12:16 PM Adrian Bunk wrote:

Re: [OE-core] [AUH] Upgrade status: 2020-07-15

2020-07-17 Thread Richard Purdie
On Fri, 2020-07-17 at 12:15 +0200, Alexander Kanavin wrote: > Thanks - obviously, the most appreciated work for volunteer upgrades > is taking items that AUH wasn't able to handle, and resolving the > issues (most often patch rebase conflicts or build failures - AUH > tells in the email exactly

[oe-core][PATCH] linux-firmware: add ibt-20 package

2020-07-17 Thread Kurt Kiefer
From: Kurt Kiefer Add the firmware packaging for Intel Bluetooth AX200, also known as Intel CyclonePeak (CcP). Signed-off-by: Kurt Kiefer --- meta/recipes-kernel/linux-firmware/linux-firmware_20200619.bb | 4 1 file changed, 4 insertions(+) diff --git

[OE-core][dunfell 12/20] ptest: append to FILES

2020-07-17 Thread Steve Sakoman
From: Konrad Weihmann as ptest FILES could be determined before or after the classes was inherited, if is much safer to append to the setting of FILES_${PN}-ptest Signed-off-by: Konrad Weihmann Signed-off-by: Richard Purdie (cherry picked from commit 419ad35ffe7f5199e49a246ef9854f0810ca1d6c)

[OE-core][dunfell 10/20] go: Disbale CGO for riscv64

2020-07-17 Thread Steve Sakoman
From: Khem Raj cgo is still not available in go for riscv64, we will re-evaluate it once we upgrade to 1.15 Fixes | /usr/src/debug/go-runtime/1.14.4-r0/go/src/runtime/cgo/gcc_util.c:23: undefined reference to `_cgo_sys_thread_start' [YOCTO #13966] Signed-off-by: Khem Raj Signed-off-by:

[OE-core][dunfell 20/20] oeqa/utils/qemurunner: Fix missing pid file tracebacks

2020-07-17 Thread Steve Sakoman
From: Richard Purdie One element of the error message guarded against None as a value but I missed the other, fix this. Signed-off-by: Richard Purdie (cherry picked from commit dbce6baec68d7658453b8c44159e1d1fef746151) Signed-off-by: Steve Sakoman --- meta/lib/oeqa/utils/qemurunner.py | 2 +-

[OE-core][dunfell 16/20] scripts/lib/recipetool/create.py: fix regex strings

2020-07-17 Thread Steve Sakoman
From: Tim Orling Python now expects regex strings to be prepended with r. Silence pylint/autopep8 and similar warnings by identifying these regex patterns as... regex patterns. Signed-off-by: Tim Orling Signed-off-by: Richard Purdie (cherry picked from commit

[OE-core][dunfell 15/20] lib/oe/recipeutils.py: add AUTHOR; BBCLASSEXTEND

2020-07-17 Thread Steve Sakoman
From: Tim Orling If you try to create a plugin for recipetool that adds the AUTHOR field, it is impossible to put it in the recommended position [1] without adding to the recipe_progression variable. While we are at it, also add BBCLASSEXTEND at the end, as also recommended by [1]. [1]

[OE-core][dunfell 13/20] nativesdk: clear MACHINE_FEATURES

2020-07-17 Thread Steve Sakoman
From: Douglas Further to 96c20c9df7: Try to avoid nativesdk recipes accidentally being dependent on MACHINE_FEATURES. Signed-off-by: Douglas Royds Signed-off-by: Richard Purdie (cherry picked from commit 956e5bd6862ca898143a234aa85cc83b1f2d1807) Signed-off-by: Steve Sakoman ---

[OE-core][dunfell 14/20] nativesdk: Set the CXXFLAGS to the BUILDSDK_CXXFLAGS

2020-07-17 Thread Steve Sakoman
From: Douglas ... which default to the BUILDSDK_CFLAGS in any case. Signed-off-by: Douglas Royds Signed-off-by: Richard Purdie (cherry picked from commit 9b4bf667bac49131cee382f2f346fc054d5f28b9) Signed-off-by: Steve Sakoman --- meta/classes/nativesdk.bbclass | 2 +- 1 file changed, 1

[OE-core][dunfell 18/20] qemurunner: Ensure pid location is deterministic

2020-07-17 Thread Steve Sakoman
From: Richard Purdie The pid location could vary due to changes in cwd as only a filename is specified, not a full path. This in theory could be resulting in some of our autobuilder failures. Whilst its difficult to know if this is causing a problem, Using a full path removes any question of

[OE-core][dunfell 17/20] babeltrace: correct the git SRC_URI

2020-07-17 Thread Steve Sakoman
From: Alexander Kanavin The previous one seems to be gone. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie (cherry picked from commit b9995f8a8f08bbcb1e0915a7420ec7fb5623d604) Signed-off-by: Steve Sakoman --- meta/recipes-kernel/lttng/babeltrace2_2.0.2.bb | 2 +-

[OE-core][dunfell 19/20] qemurunner: Add extra debug info when qemu fails to start

2020-07-17 Thread Steve Sakoman
From: Richard Purdie When qemu fails to start we're struggling to work out why. Add more debug info which can at least confirm/rule out various things. This code is only on the error handling path and more info shoudl help us debug issues. Signed-off-by: Richard Purdie (cherry picked from

[OE-core][dunfell 00/20] Patch review

2020-07-17 Thread Steve Sakoman
Please review this next set of patches for dunfell and have comments back by end of day Tuesday. Passed a-full build on autobuilder: https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1179 The following changes since commit c2ad3af9da9bb3a98c1d5d1b3d21eb8db643c189: coreutils:

[OE-core][dunfell 09/20] u-boot: fix condition to allow use of *.cfg

2020-07-17 Thread Steve Sakoman
From: Charlie Davies U-boot recipe supports .cfg files in SRC_URI, but bug in conditional statement meant that the code was unreachable and the .cfg files were never applied. Signed-off-by: Charlie Davies Signed-off-by: Richard Purdie (cherry picked from commit

[OE-core][dunfell 08/20] serf: extend for nativesdk

2020-07-17 Thread Steve Sakoman
From: Jens Rehsack As an unconditionally dependency of subversion, extend serf recipe for building a nativesdk variant being usable by nativesdk-subversion. Signed-off-by: Jens Rehsack Signed-off-by: Richard Purdie (cherry picked from commit ff731a25a49c768f04a474438efccb3bb505a898)

[OE-core][dunfell 01/20] insane: consolidate skipping of temporary do_package files

2020-07-17 Thread Steve Sakoman
From: Ross Burton During the course of do_package_rpm and friends the tools create a top-level CONTROL or DEBIAN directory in the package directory. do_package_qa needs to be aware of these files and ignore them, this was previously done in just one check but instead should be done once when

[OE-core][dunfell 02/20] linux-firmware: fix the wrong file path for ibt-misc

2020-07-17 Thread Steve Sakoman
From: Yongxin Liu Signed-off-by: Yongxin Liu Signed-off-by: Richard Purdie (cherry picked from commit 7c1470ea6e337dc1d1e320d33267f06584e9752d) Signed-off-by: Steve Sakoman --- meta/recipes-kernel/linux-firmware/linux-firmware_20200619.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[OE-core][dunfell 07/20] subversion: extend for nativesdk

2020-07-17 Thread Steve Sakoman
From: Jens Rehsack For SDK environments where people still use subversion, let it easily being added to buildtools-tarball to invite more developers relying on Yocto based SDKs without much requirement to setup anything on the development workplace. Signed-off-by: Jens Rehsack Signed-off-by:

[OE-core][dunfell 03/20] linux-firmware: move ibt-misc to the end of ibt packages

2020-07-17 Thread Steve Sakoman
From: Yongxin Liu After commit 3ca1d3fa1d ("linux-firmware: fix the wrong file path for ibt-misc"), if we don't change the location of ibt-misc in PACKAGES, ibt-misc will include all ibt files and make other individual ibt package empty. Signed-off-by: Yongxin Liu Signed-off-by: Richard Purdie

[OE-core][dunfell 06/20] oeqa/selftest/sstatetests: Avoid polluting DL_DIR

2020-07-17 Thread Steve Sakoman
From: Richard Purdie Every selftest run is currently polluting the autobuilder DL_DIR. Avoid this by using a temporary directory for the test which is cleaned up. Signed-off-by: Richard Purdie (cherry picked from commit 002d321e02b3ce4f34c8a54211b109a5416c8a0e) Signed-off-by: Steve Sakoman

[OE-core][dunfell 05/20] avahi: Fix typo in recipe

2020-07-17 Thread Steve Sakoman
From: Christian Eggers According to the PACKAGES variable, LICENSE_avahi-client is misspelled. Additionally, the libavahi-client package actually only includes LGPLv2.1+ software (as opposed to the global LICENSE variable). Signed-off-by: Christian Eggers Signed-off-by: Richard Purdie (cherry

[OE-core][dunfell 04/20] bison: fix Argument list too long error

2020-07-17 Thread Steve Sakoman
From: Lee Chee Yang fix Argument list too long error when len(TMPDIR) = 410 Signed-off-by: Lee Chee Yang Signed-off-by: Richard Purdie (cherry picked from commit 73f05ba58dcee57e25712f9aee97535d9a32c982) Signed-off-by: Steve Sakoman --- meta/recipes-devtools/bison/bison_3.5.3.bb | 2 +- 1

[OE-core] ✗ patchtest: failure for kernel-fitimage: build configuration for image tree when dtb is not present

2020-07-17 Thread Patchwork
== Series Details == Series: kernel-fitimage: build configuration for image tree when dtb is not present Revision: 1 URL : https://patchwork.openembedded.org/series/25171/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated

[OE-core] [PATCH] kernel-fitimage: build configuration for image tree when dtb is not present

2020-07-17 Thread Usama Arif
This patch adds support for adding default config node even when dtb is not part of the FIT image. The conf options are therefore changed to point to kernel ID rather than dtb ID when dtb does not exist. Signed-off-by: Usama Arif --- meta/classes/kernel-fitimage.bbclass | 14 -- 1

[OE-core] [PATCH] kernel-fitimage: build configuration for image tree when dtb is not present

2020-07-17 Thread Usama Arif
This patch adds support for adding default config node even when dtb is not part of the FIT image. The conf options are therefore changed to point to kernel ID rather than dtb ID when dtb does not exist. Signed-off-by: Usama Arif --- meta/classes/kernel-fitimage.bbclass | 14 -- 1

[OE-core] [PATCH 2/4] linux-yocto-rt/5.4: fix mmdrop stress test issues

2020-07-17 Thread Bruce Ashfield
From: Bruce Ashfield Integrating the following commit(s) to linux-yocto/5.4: 508b4e6ada7f sched: Remove unexpected mmdrop on RT Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 4/4] kernel-devsrc: fix on-target module build for v5.8+

2020-07-17 Thread Bruce Ashfield
From: Bruce Ashfield The kernel build is now more sensitive to changing build inputs, like the compiler, linker, source tree location, versions, file timestamps, etc. When a difference is detected, the kernel build invokes a syncconfig to update/regenerate files as required. That process may

[OE-core] [PATCH 0/4] kernel/yocto: conslidated pull request

2020-07-17 Thread Bruce Ashfield
From: Bruce Ashfield Richard, Here's my latest set of patches. For 5.4: a -stable update, and -rt bug fix For the build: a tweak to the config generation (as reported and discussed on the mailing list) For 5.8 (aka the next reference kernel): a fix for devsrc and on target kernel building.

[OE-core] [PATCH 1/4] linux-yocto/5.4: update to v5.4.51

2020-07-17 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.4 to the latest korg -stable release that comprises the following commits: 1c54d3c15afa Linux 5.4.51 8ba1913cd6ba efi: Make it possible to disable efivar_ssdt entirely 43986c32ee00 dm zoned: assign max_io_len correctly 215e562251bb

[OE-core] [PATCH 3/4] kernel-yocto: account for extracted defconfig in elements check

2020-07-17 Thread Bruce Ashfield
From: Bruce Ashfield The test for whether or not scc should to invoked to generate a config.queue was missing the newly created sccs_defconfig variable. We need to test for that variable as well, or we may miss generating the config.queue in some cases. Signed-off-by: Bruce Ashfield ---

[OE-core][RFC 2/2] buildtools-tarball: eliminate overwtiting OPENSSL_CONF

2020-07-17 Thread Jens Rehsack
Remove overwriting of OPENSSL_CONF from buildtools-tarball.bb to clarify whether nativesdk-openssl installs wrong content or buildtools-tarball: (nativesdk-openssl) tmp/sysroots/x86_64/usr/lib/ssl-1.1/openssl.cnf (buildtools-tarball)

[OE-core][RFC 1/2] toolchain-scripts.bbclass: also recognize ${SDK_SYS} env setups

2020-07-17 Thread Jens Rehsack
Instead of recognizing only environment-setup scripts in ${STAGING_DIR_TARGET} or ${STAGING_DIR_NATIVE}, respectively - lurk also into ${SDKPATH}/buildtools/sysroots/${SDK_SYS} where nativesdk-openssl installs setup files. Signed-off-by: Jens Rehsack --- meta/classes/toolchain-scripts.bbclass |

Re: [OE-core] [AUH] Upgrade status: 2020-07-15

2020-07-17 Thread Alexander Kanavin
Thanks - obviously, the most appreciated work for volunteer upgrades is taking items that AUH wasn't able to handle, and resolving the issues (most often patch rebase conflicts or build failures - AUH tells in the email exactly what the problem was). Alex On Thu, 16 Jul 2020 at 17:55, Richard

[OE-core][PATCH] kmod: add packageconfig for xz and ssl

2020-07-17 Thread Jens Rehsack
Add the opportunity for kmod (and depmod etc.) to deal with Xz-compressed kernel modules and handle PKCS7 signatures, if desired. Signed-off-by: Jens Rehsack --- meta/recipes-kernel/kmod/kmod.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-kernel/kmod/kmod.inc

Re: [OE-core] [PATCH] pulseaudio: fix for ARM thumb + frame pointers compilation error

2020-07-17 Thread Tanu Kaskinen
On Thu, 2020-03-26 at 14:23 -0700, Andre McCurdy wrote: > On Thu, Mar 26, 2020 at 1:26 PM Adrian Bunk wrote: > > On Thu, Mar 26, 2020 at 12:53:08PM -0700, Andre McCurdy wrote: > > > On Thu, Mar 26, 2020 at 12:16 PM Adrian Bunk wrote: > > > > On Thu, Mar 26, 2020 at 05:26:29PM +0200, Stefan

[OE-core] [PATCH][dunfell] systemd : fix CVE-2020-13776

2020-07-17 Thread Lee Chee Yang
From: Lee Chee Yang Signed-off-by: Lee Chee Yang --- .../systemd/systemd/CVE-2020-13776.patch | 96 +++ meta/recipes-core/systemd/systemd_244.3.bb| 1 + 2 files changed, 97 insertions(+) create mode 100644 meta/recipes-core/systemd/systemd/CVE-2020-13776.patch diff

Re: [OE-core] [PATCH] gtk-icon-cache.bbclass: update RDEPENDS

2020-07-17 Thread Changqing Li
On 7/14/20 12:30 AM, Khem Raj wrote: On 7/12/20 11:03 PM, Changqing Li wrote: Hi, Martin Thanks for tell me the problem.  Maybe I don't understand you correctly,  but I don't met your problem, below is what I tried, if I am wrong, please tell me how I can reproduce your problem, thanks.

Re: [OE-core] [PATCH 2/4] help2man: rewrite recipe

2020-07-17 Thread Richard Purdie
On Fri, 2020-07-17 at 07:14 +0100, Richard Purdie via lists.openembedded.org wrote: > On Thu, 2020-07-16 at 12:55 +0100, Ross Burton wrote: > > From: Ross Burton > > > > Instead of being explicitly native, use BBCLASSEXTEND. > > > > No need to explicitly depend on autoconf-native

Re: [OE-core] [PATCH 2/4] help2man: rewrite recipe

2020-07-17 Thread Richard Purdie
On Thu, 2020-07-16 at 12:55 +0100, Ross Burton wrote: > From: Ross Burton > > Instead of being explicitly native, use BBCLASSEXTEND. > > No need to explicitly depend on autoconf-native automake-native, > because > the autotools class does that. > > Don't explicitly disable NLS, but use the