]> code.ossystems Code Review - openembedded-core.git/log
openembedded-core.git
3 years agoserf: add a openssl 3 compatibility fix
Alexander Kanavin [Mon, 11 Oct 2021 09:40:43 +0000 (11:40 +0200)]
serf: add a openssl 3 compatibility fix

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agocryptodev-tests: do not use -Werror with openssl 3
Alexander Kanavin [Mon, 11 Oct 2021 09:40:42 +0000 (11:40 +0200)]
cryptodev-tests: do not use -Werror with openssl 3

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoopenssl: update 1.1.1l -> 3.0.0
Alexander Kanavin [Mon, 11 Oct 2021 09:40:41 +0000 (11:40 +0200)]
openssl: update 1.1.1l -> 3.0.0

Drop 0001-skip-test_symbol_presence.patch - testing revealed
no need for it, and I couldn't quite understand what it does.

Drop reproducible.patch - upstream has removed the non-reproducible
bit.

Process lines in run-ptest with sed one by one rather than with
perl after the test completes, avoiding ptest-runner timeout errors.

License-Update: openssl relicense to apache 2.0. Goodbye awkward
gpl exceptions in consumers.

DEPRECATED_CRYPTO_FLAGS is now empty by default but available
by anyone who wants to set it. Trying to come up with a working
set was not a good idea as shown in the deleted comment.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorust: generate target definitions from (arch, abi), not just arch
Alexander Kanavin [Sun, 10 Oct 2021 19:10:08 +0000 (21:10 +0200)]
rust: generate target definitions from (arch, abi), not just arch

This allows to add the missing x32 definition and others in the future.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorust: do not write ar into target json definitions
Alexander Kanavin [Sun, 10 Oct 2021 19:10:07 +0000 (21:10 +0200)]
rust: do not write ar into target json definitions

latest rust does not use it and prints a ton of warnings
because of it.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorust-common.bbclass: rewrite toolchain wrappers in (native) python
Alexander Kanavin [Sun, 10 Oct 2021 19:10:06 +0000 (21:10 +0200)]
rust-common.bbclass: rewrite toolchain wrappers in (native) python

librsvg on centos 7 and friends exhibits the same libtinfo leakage
problem, this time coming from the compiler and not the linker.
Simply covering the compiler by the existing C wrapper-of-wrapper
does not work, as rust-native builds put Important Stuff into
LD_LIBRARY_PATH and unsetting it breaks things badly.

Rather than try to figure out which combination of wrappers and
LD_LIBRARY_PATH settings works for which situation, or provide
some kind of sh-native, let's simply use python3-native for the
wrappers, which should insulate builds from the the host shell.
rust-native already depends on python3-native, so this does not
lengthen the builds.

This also reverts:
rust-common: Hack around LD_LIBRARY_PATH issues on centos7
(commit 63b1fd2226b5f146d6c853cc57417704df378438).

I'd also like to say boo to Red Hat (or GNU?) for breaking ABI
compatibility for stat() in glibc 2.33, we ended up sorting
this mess because of it.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorust/cargo: exclude UNINATIVE_LOADER from task signature
Alexander Kanavin [Sun, 10 Oct 2021 19:10:05 +0000 (21:10 +0200)]
rust/cargo: exclude UNINATIVE_LOADER from task signature

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agogstreamer1.0-plugins-bad: disable rsvg on x32
Alexander Kanavin [Sun, 10 Oct 2021 19:10:04 +0000 (21:10 +0200)]
gstreamer1.0-plugins-bad: disable rsvg on x32

librsvg throws:

| error[E0080]: erroneous constant used
|    --> /home/alex/development/poky/build-x32/tmp/work/x86_64_x32-poky-linux-gnux32/librsvg/2.52.0-r0/librsvg-2.52.0/vendor/thin-slice/src/lib.rs:111:25
|     |
| 111 |         } else if len < TAG_LIMIT {
|     |

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoadwaita-icon-theme: update 3.34/38 -> 41.0
Alexander Kanavin [Sun, 10 Oct 2021 19:10:03 +0000 (21:10 +0200)]
adwaita-icon-theme: update 3.34/38 -> 41.0

The original reason to pin the version (outdated librsvg)
no longer applies.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibrsvg: restore reproducibility
Alexander Kanavin [Sun, 10 Oct 2021 19:10:02 +0000 (21:10 +0200)]
librsvg: restore reproducibility

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibrsvg: use only the target architecture to determine availability of atomic primitives
Alexander Kanavin [Sun, 10 Oct 2021 19:10:01 +0000 (21:10 +0200)]
librsvg: use only the target architecture to determine availability of atomic primitives

This eliminates the hardcoded list of rust targets which can't
possibly include everything from OE universe.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibrsvg: add backports to fix big endian targets (e.g. mips)
Alexander Kanavin [Sun, 10 Oct 2021 19:10:00 +0000 (21:10 +0200)]
librsvg: add backports to fix big endian targets (e.g. mips)

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibrsvg: do not enable nativesdk
Alexander Kanavin [Sun, 10 Oct 2021 19:09:59 +0000 (21:09 +0200)]
librsvg: do not enable nativesdk

rust is not currently available for nativesdk builds:

WARNING: Nothing PROVIDES 'nativesdk-libstd-rs' (but virtual:nativesdk:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-gnome/librsvg/librsvg_2.52.0.bb DEPENDS on or otherwise requires it). Close matches:
WARNING: Nothing PROVIDES 'virtual/nativesdk-x86_64-pokysdk-linux-rust' (but virtual:nativesdk:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-gnome/librsvg/librsvg_2.52.0.bb DEPENDS on or otherwise requires it). Close matches:

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibrsvg: update 2.40.21 -> 2.52.0 (transition to rust!)
Alexander Kanavin [Sun, 10 Oct 2021 19:09:58 +0000 (21:09 +0200)]
librsvg: update 2.40.21 -> 2.52.0 (transition to rust!)

After some poking and hacking I have arrived to the settings that work.
Please refer to the commit for details.

Some of these issues may re-occur in other components; in that case
we need to come up with more generic solutions or upstream fixes.

So far, it's a learning exercise for everybody in getting to know the rust toolchain.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorust: update 1.54.0 -> 1.55.0
Alexander Kanavin [Sun, 10 Oct 2021 19:09:57 +0000 (21:09 +0200)]
rust: update 1.54.0 -> 1.55.0

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorust: drop PV from include file names
Alexander Kanavin [Sun, 10 Oct 2021 19:09:56 +0000 (21:09 +0200)]
rust: drop PV from include file names

This complicates (semi) automated upgrades, and isn't necessary
as we carry only a single version of the toolchain.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: Rework crunch_license to recognize more variants
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:35 +0000 (09:48 +0200)]
recipetool: Rework crunch_license to recognize more variants

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agonpm: Use configs for npm environment and args for npm run command
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:34 +0000 (09:48 +0200)]
npm: Use configs for npm environment and args for npm run command

Use parameter configs of class NpmEnvironment and parameter args of
function run to support a common npmrc for all run calls of a single
NpmEnvironment.

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agonpm: Add variable NPM_NODEDIR with default value
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:33 +0000 (09:48 +0200)]
npm: Add variable NPM_NODEDIR with default value

Replace the variable NPM_NODEDIR fallback to a default value inside the
code with a variable NPM_NODEDIR with default value.

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: npm: Use README as license fallback
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:32 +0000 (09:48 +0200)]
recipetool: npm: Use README as license fallback

Use the README as license fallback if a license file is missing. Use the
linenumbers parameter of get_license_md5sums function to determine the
license text inside the README.

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: npm: Do not add package.json files to LIC_FILES_CHKSUM
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:31 +0000 (09:48 +0200)]
recipetool: npm: Do not add package.json files to LIC_FILES_CHKSUM

The package.json files doesn't contain any licenses. The name of the
license doesn't comply the license requirements of most liceneses.

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: Add support for linenumbers to licenses.csv
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:30 +0000 (09:48 +0200)]
recipetool: Add support for linenumbers to licenses.csv

Add support for linenumbers (begin and end lines) to licenses.csv. Add
an optional linenumbers parameter to get_license_md5sums to support
different use cases.

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: Add logger info for missing license entries
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:29 +0000 (09:48 +0200)]
recipetool: Add logger info for missing license entries

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: ignore empty license files
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:28 +0000 (09:48 +0200)]
recipetool: ignore empty license files

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: Change default paramter fallback_licenses of function split_pkg_licenses...
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:27 +0000 (09:48 +0200)]
recipetool: Change default paramter fallback_licenses of function split_pkg_licenses from None to []

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: Skip common source files in guess_license
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:26 +0000 (09:48 +0200)]
recipetool: Skip common source files in guess_license

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorecipetool: Move license md5sums into CSV files
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:25 +0000 (09:48 +0200)]
recipetool: Move license md5sums into CSV files

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agonpm: Add support for EXTRA_OENPM arguments
Stefan Herbrechtsmeier [Fri, 8 Oct 2021 07:48:24 +0000 (09:48 +0200)]
npm: Add support for EXTRA_OENPM arguments

Add support for EXTRA_OENPM arguments to set node-gyp variables for
example. This allows use of shared librariess, avoid download
of external sources or build from source.

Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoltp: Update to 20210927
Petr Vorel [Sat, 2 Oct 2021 17:25:55 +0000 (19:25 +0200)]
ltp: Update to 20210927

New patches to fix functionality:
* 0002-lib-fix-MemAvailable-parsing.patch
* 0003-lapi-rtnetlink.h-Fix-include-guards.patch
* 0004-lapi-Create-if_addr.h-and-reuse-it-in-rtnetlink.h.patch
* 0005-lapi-if_addr.h-Define-IFA_FLAGS.patch

Removed patch from this release
* 0001-syscalls-ioctl_ns05.c-ioctl_ns06.c-Fix-too-small-buf.patch

Rebased patch
* 0001-Remove-OOM-tests-from-runtest-mm.patch

* Updated copying (reduced files in 5eff445d4 ("Reduce LICENCE/COPYING files"))

* Updated removed musl incompatible files in
  remove_broken_musl_sources() (process.c was removed in 926d3b906
  ("sched: Remove process.c")), also update link to CI file.

[RP: Fixed Upstream-Status lines in patches]
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agolinux-yocto-dev: Ensure DEPENDS matches recent 5.14 kernel changes
Richard Purdie [Thu, 14 Oct 2021 10:21:33 +0000 (11:21 +0100)]
linux-yocto-dev: Ensure DEPENDS matches recent 5.14 kernel changes

DEPENDS here should match what 5.14 is using.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolinux-yocto: add libmpc-native to DEPENDS
Ross Burton [Tue, 5 Oct 2021 13:04:11 +0000 (14:04 +0100)]
linux-yocto: add libmpc-native to DEPENDS

5.14 changed how the GCC plugins are built, which means they now
depend on both GMP and MPC to be built. We already depend on gmp-native,
so add libmpc-native aswell.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agobuildhistory: Fix package output files for SDKs
Andres Beltran [Tue, 5 Oct 2021 00:34:15 +0000 (00:34 +0000)]
buildhistory: Fix package output files for SDKs

Currently, installed packages are listed for images in image-info.txt, but
not for SDKs in sdk-info.txt. Add TOOLCHAIN_HOST_TASK and
TOOLCHAIN_TARGET_TASK to the output variables in sdk-info.txt.

Moreover, package output files for the SDK host are empty because
PKGDATA_DIR defaults to the target directory. Fix this bug and create a new
variable called PKGDATA_DIR_SDK which stores the correct path for the SDK
host package data.

Signed-off-by: Andres Beltran <abeltran@linux.microsoft.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopackagedata.py: silence a DeprecationWarning
Mingli Yu [Mon, 11 Oct 2021 08:28:48 +0000 (16:28 +0800)]
packagedata.py: silence a DeprecationWarning

Use regex strings (r’’) to silence below deprecation warning [1]:
 $ cat tmp/work/intel_x86_64-wrs-linux/linux-yocto/5.10.x+gitAUTOINC+917c420111_373c02c3ca-r0/temp/log.do_deploy
 [snip]
 /build/layers/oe-core/meta/lib/oe/packagedata.py:22: DeprecationWarning: invalid escape sequence \s
 r = re.compile("(^.+?):\s+(.*)")
 [snip]

[1] https://docs.python.org/3/library/re.html

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolttng-tools: replace ad hoc ptest fixup with upstream fixes
Alexander Kanavin [Mon, 11 Oct 2021 09:40:36 +0000 (11:40 +0200)]
lttng-tools: replace ad hoc ptest fixup with upstream fixes

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoqemu: install qmp module without hardcoding the python version in oeqa scripts
Alexander Kanavin [Mon, 11 Oct 2021 09:40:35 +0000 (11:40 +0200)]
qemu: install qmp module without hardcoding the python version in oeqa scripts

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agobootchart2: Don't compile python modules
Richard Purdie [Tue, 12 Oct 2021 11:51:51 +0000 (12:51 +0100)]
bootchart2: Don't compile python modules

"make install" may attempt to compile the python modules but it uses the host python
and host paths which means the binaries are not reproducbile. Make things consistent.
If anyone needs compiling, it will beed to be fixed to be cross compile compatible.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibnewt: Use python3targetconfig to fix reproducibility issue
Richard Purdie [Tue, 12 Oct 2021 10:45:26 +0000 (11:45 +0100)]
libnewt: Use python3targetconfig to fix reproducibility issue

We're seeing pthread being linked sometimes and not others leading to
non-reproducible target binaries. The reason is mixing the native python
config with the target one. We should use the target one.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibxml2: Use python3targetconfig to fix reproducibility issue
Richard Purdie [Tue, 12 Oct 2021 10:41:41 +0000 (11:41 +0100)]
libxml2: Use python3targetconfig to fix reproducibility issue

We're seeing pthread being linked sometimes and not others leading to
non-reproducible target binaries. The reason is mixing the native python
config with the target one. We should use the target one.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agodevpyshell: rename to pydevshell kirkstone-next
Michael Opdenacker [Tue, 5 Oct 2021 08:33:34 +0000 (10:33 +0200)]
devpyshell: rename to pydevshell

For consistency with "pydevshell" which is also used.
This addresses [YOCTO #14531]

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agobusybox: 1.34.0 -> 1.34.1
Andrej Valek [Mon, 4 Oct 2021 10:27:31 +0000 (12:27 +0200)]
busybox: 1.34.0 -> 1.34.1

- update to next stable version 1.34.1

Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogst-examples: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:06 +0000 (00:42 +0100)]
gst-examples: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogst-devtools: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:05 +0000 (00:42 +0100)]
gst-devtools: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-python: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:04 +0000 (00:42 +0100)]
gstreamer1.0-python: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-omx: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:03 +0000 (00:42 +0100)]
gstreamer1.0-omx: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-vaapi: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:02 +0000 (00:42 +0100)]
gstreamer1.0-vaapi: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-libav: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:01 +0000 (00:42 +0100)]
gstreamer1.0-libav: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-rtsp-server: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:42:00 +0000 (00:42 +0100)]
gstreamer1.0-rtsp-server: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-plugins-ugly: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:41:59 +0000 (00:41 +0100)]
gstreamer1.0-plugins-ugly: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-plugins-bad: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:41:58 +0000 (00:41 +0100)]
gstreamer1.0-plugins-bad: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-plugins-good: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:41:57 +0000 (00:41 +0100)]
gstreamer1.0-plugins-good: 1.18.4 -> 1.18.5

Drop backport patches:
    * 0002-rtpjitterbuffer-Fix-parsing-of-the-mediaclk-direct-f.patch

    * 0003-Remove-volatile-from-static-vars-to-fix-build-with-g.patch
      https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/commit/a1bf3d8d540a25268d612a489e1e836d6ea737b0

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0-plugins-base: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:41:56 +0000 (00:41 +0100)]
gstreamer1.0-plugins-base: 1.18.4 -> 1.18.5

Drop backport patches:
    * 4ef5c91697a141fea7317aff7f0f28e5a861db99.patch

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogstreamer1.0: 1.18.4 -> 1.18.5
Jose Quaresma [Sun, 3 Oct 2021 23:41:55 +0000 (00:41 +0100)]
gstreamer1.0: 1.18.4 -> 1.18.5

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agooeqa/selftest/sstatetests: fix typo ware -> were
Alexandre Belloni [Sun, 3 Oct 2021 10:36:24 +0000 (12:36 +0200)]
oeqa/selftest/sstatetests: fix typo ware -> were

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agolibseccomp: Upgrade to 2.5.2 and beyond
Khem Raj [Fri, 1 Oct 2021 04:54:27 +0000 (21:54 -0700)]
libseccomp: Upgrade to 2.5.2 and beyond

Forward port the rv32 port

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogo: upgrade 1.16.7 -> 1.16.8
Sakib Sajal [Thu, 23 Sep 2021 00:17:31 +0000 (20:17 -0400)]
go: upgrade 1.16.7 -> 1.16.8

Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoell: upgrade 0.43 -> 0.44
wangmy [Wed, 22 Sep 2021 13:13:36 +0000 (21:13 +0800)]
ell: upgrade 0.43 -> 0.44

ver 0.44:
        Fix issue with allowing zero byte input for AEAD cipher.
        Fix issue with filling in DNS info in DHCP lease objects.
        Add support neighbor discovery utility helpers.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agodnf: upgrade 4.8.0 -> 4.9.0
wangmy [Wed, 22 Sep 2021 13:13:35 +0000 (21:13 +0800)]
dnf: upgrade 4.8.0 -> 4.9.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agocreaterepo-c: upgrade 0.17.4 -> 0.17.5
wangmy [Wed, 22 Sep 2021 13:13:34 +0000 (21:13 +0800)]
createrepo-c: upgrade 0.17.4 -> 0.17.5

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agobind: upgrade 9.16.20 -> 9.16.21
wangmy [Wed, 22 Sep 2021 13:13:33 +0000 (21:13 +0800)]
bind: upgrade 9.16.20 -> 9.16.21

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoacpid: upgrade 2.0.32 -> 2.0.33
wangmy [Wed, 22 Sep 2021 13:13:32 +0000 (21:13 +0800)]
acpid: upgrade 2.0.32 -> 2.0.33

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agolibinput: update to 1.19.0
Oleksandr Kravchuk [Tue, 21 Sep 2021 19:31:12 +0000 (21:31 +0200)]
libinput: update to 1.19.0

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoxf86-input-libinput: update to 1.2.0
Oleksandr Kravchuk [Tue, 21 Sep 2021 19:31:11 +0000 (21:31 +0200)]
xf86-input-libinput: update to 1.2.0

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoethtool: update to 5.14
Changhyeok Bae [Tue, 21 Sep 2021 09:38:01 +0000 (11:38 +0200)]
ethtool: update to 5.14

Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopython3-setuptools: minor cleanup
Oleksandr Kravchuk [Sat, 18 Sep 2021 22:18:52 +0000 (00:18 +0200)]
python3-setuptools: minor cleanup

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopython3-setuptools: update to 58.0.4
Oleksandr Kravchuk [Sat, 18 Sep 2021 22:18:51 +0000 (00:18 +0200)]
python3-setuptools: update to 58.0.4

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopython3-dbusmock: update to 0.24.0
Oleksandr Kravchuk [Sat, 18 Sep 2021 22:14:43 +0000 (00:14 +0200)]
python3-dbusmock: update to 0.24.0

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopython3-git: update to 3.1.24
Oleksandr Kravchuk [Sat, 18 Sep 2021 22:14:36 +0000 (00:14 +0200)]
python3-git: update to 3.1.24

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopython3: update to 3.9.7
Oleksandr Kravchuk [Sat, 18 Sep 2021 22:14:28 +0000 (00:14 +0200)]
python3: update to 3.9.7

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopkgconfig: Update to latest
Khem Raj [Sat, 18 Sep 2021 18:16:09 +0000 (11:16 -0700)]
pkgconfig: Update to latest

Brings following change

  * d97db4f Update URL for bug reporting
  * eb866ad Spelling and grammar in pkg.m4
  * 1f81c80 Fix spelling of rra's name
  * 350515e Use https for developer.gnome.org URL
  * 834ecc2 Update bug reporting URL to point to gitlab
  * 38936b2 Call setlocale in main function
  * 2ad16fa pkg: Make ordering of output from print_package_list() deterministic
  * 2dd2b19 parse: Don't emit unknown keyword warning for Libs.private

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agowayland-protocols: upgrade 1.22 -> 1.23
Denys Dmytriyenko [Thu, 16 Sep 2021 01:06:37 +0000 (21:06 -0400)]
wayland-protocols: upgrade 1.22 -> 1.23

wayland-protocols 1.23 is now available.

This release adds the new gesture "hold" to the pointer gesture protocol.

https://lists.freedesktop.org/archives/wayland-devel/2021-September/041979.html

Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoweston: wrapper for weston modules argument
Pavel Zhukov [Wed, 15 Sep 2021 08:50:37 +0000 (10:50 +0200)]
weston: wrapper for weston modules argument

Due to custom option parser implementation weston accepts only one
argument of a given type. As the result if multiple modules add
multiple --modules agruments only last will be used. This fix
introduces wrapper around modules in terms of weston-init to prepare
proper modules argument for weston and adds systemd-notify module into
weston-init module to support Type=notify in systemd service file.

Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agopython3-more-itertools: upgrade 8.8.0 -> 8.9.0
wangmy [Tue, 14 Sep 2021 23:37:42 +0000 (07:37 +0800)]
python3-more-itertools: upgrade 8.8.0 -> 8.9.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agohelp2man: upgrade 1.48.4 -> 1.48.5
wangmy [Tue, 14 Sep 2021 23:36:25 +0000 (07:36 +0800)]
help2man: upgrade 1.48.4 -> 1.48.5

   * Use @samp{} around the option in the menu description for "--help
     recommendations" to avoid rendering the -- as endash.
   * Update French translations
   * Update standards version to 4.6.0 (no changes).

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agovulkan-tools: upgrade 1.2.182 -> 1.2.191
wangmy [Tue, 14 Sep 2021 23:35:46 +0000 (07:35 +0800)]
vulkan-tools: upgrade 1.2.182 -> 1.2.191

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agovulkan-loader: upgrade 1.2.182 -> 1.2.191
wangmy [Tue, 14 Sep 2021 23:35:45 +0000 (07:35 +0800)]
vulkan-loader: upgrade 1.2.182 -> 1.2.191

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agovulkan-headers: upgrade 1.2.182 -> 1.2.191
wangmy [Tue, 14 Sep 2021 23:35:44 +0000 (07:35 +0800)]
vulkan-headers: upgrade 1.2.182 -> 1.2.191

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agotar: filter CVEs using vendor name
Ralph Siemsen [Tue, 14 Sep 2021 19:15:47 +0000 (15:15 -0400)]
tar: filter CVEs using vendor name

Recently a number of CVEs have been logged against a nodejs project
called "node-tar". These appear as false positives against the GNU tar
being built by Yocto. Some of these have been manually excluded using
CVE_CHECK_WHITELIST.

To avoid this problem, use the vendor name (in addition to package name)
for filtering CVEs. The syntax for this is:
  CVE_PRODUCT = "vendor:package"
When not specified, the vendor defaults to "%" which matches anything.

Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agomount-copybind: add rootcontext mountoption for overlayfs
Maximilian Blenk [Thu, 9 Sep 2021 08:05:05 +0000 (10:05 +0200)]
mount-copybind: add rootcontext mountoption for overlayfs

If selinux is enabled, the context of the mountpoint for overlayfs
needs to be specified manually via the rootcontext option. To this
end, the required context is determined using matchpathcon(1) and
passed via the rootcontext mount option.

Additionally, if the mount source directory is created by mount-copybind
it also needs to take care that the context of the directory is correct

Signed-off-by: Tobias Kaufmann <Tobias.KA.Kaufmann@bmw.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agomount-copybind: add SELinux support
Tobias Kaufmann [Thu, 9 Sep 2021 08:05:04 +0000 (10:05 +0200)]
mount-copybind: add SELinux support

bind mounts don't use the SELinux label of the target, but the SELinux
label of the source.

This patch restores the SELinux context of the bind mount recursively using
restorecon.

Signed-off-by: Tobias Kaufmann <Tobias.KA.Kaufmann@bmw.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agofindutils: add ptest
Oleh Matiusha [Wed, 8 Sep 2021 17:17:54 +0000 (20:17 +0300)]
findutils: add ptest

Placed it in PTESTS_SLOW since it takes 36s to execute this ptest on qemu.

Signed-off-by: Oleh Matiusha <oleh.matiusha@globallogic.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoharfbuzz: upgrade 2.9.0 -> 2.9.1
wangmy [Wed, 8 Sep 2021 14:41:59 +0000 (22:41 +0800)]
harfbuzz: upgrade 2.9.0 -> 2.9.1

Final subset API is in place and if no issues are discovered,
it will be the stable subset API of HarfBuzz 3.0.0.
Old API is kept to ease transition, but will be removed in 3.0.0.
Various fuzzer-found bug fixes.
hb_buffer_append() now handles the pre- and post-context which
previously were left unchanged in the destination buffer.
hb-view / hb-shape now accept following new arguments:
--unicodes-before/after: takes a list of hex numbers that represent Unicode
codepoints.
Undeprecated API:
hb_set_invert()

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agogzip: upgrade 1.10 -> 1.11
wangmy [Wed, 8 Sep 2021 14:41:58 +0000 (22:41 +0800)]
gzip: upgrade 1.10 -> 1.11

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoiproute2: update to 5.14.0
Changhyeok Bae [Mon, 6 Sep 2021 16:46:19 +0000 (18:46 +0200)]
iproute2: update to 5.14.0

Signed-off-by: Changhyeok <changhyeok.bae@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agolibhandy: update 1.2.3 -> 1.4.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:22 +0000 (20:01 +0200)]
libhandy: update 1.2.3 -> 1.4.0

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibssh2: update 1.9.0 -> 1.10.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:25 +0000 (20:01 +0200)]
libssh2: update 1.9.0 -> 1.10.0

0001-configure-Conditionally-undefine-backend-m4-macro.patch no
longer needed; code removed upstream.

License-Update: copyright years
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibgit2: update 1.1.1 -> 1.2.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:24 +0000 (20:01 +0200)]
libgit2: update 1.1.1 -> 1.2.0

License-Update: includes portions of openssl headers
https://github.com/libgit2/libgit2/commit/0903cac1d08817e87c556f5a3e6ec881be86c7f2

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agort-tests: update 2.1 -> 2.2
Alexander Kanavin [Wed, 8 Sep 2021 18:01:23 +0000 (20:01 +0200)]
rt-tests: update 2.1 -> 2.2

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolibpam: update 1.5.1 -> 1.5.2
Alexander Kanavin [Wed, 8 Sep 2021 18:01:21 +0000 (20:01 +0200)]
libpam: update 1.5.1 -> 1.5.2

Drop patches: issues fixed upstream.

Move .pc files to correct place as libpam is instructed to install them in /lib via
--libdir.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agolsof: update 4.91 -> 4.94.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:20 +0000 (20:01 +0200)]
lsof: update 4.91 -> 4.94.0

Drop all custom sourcedir handling as the source is now a standard
git checkout.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agosystemd: update 249.3 -> 249.4
Alexander Kanavin [Wed, 8 Sep 2021 18:01:19 +0000 (20:01 +0200)]
systemd: update 249.3 -> 249.4

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoinetutils: drop CVE-2021-40491 patch
Alexandre Belloni [Mon, 27 Sep 2021 12:31:32 +0000 (14:31 +0200)]
inetutils: drop CVE-2021-40491 patch

This CVE is already fixed in inetutils 2.2

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
3 years agoinetutils: update 2.1 -> 2.2
Alexander Kanavin [Wed, 8 Sep 2021 18:01:18 +0000 (20:01 +0200)]
inetutils: update 2.1 -> 2.2

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoshaderc: update 2021.1 -> 2021.2
Alexander Kanavin [Wed, 8 Sep 2021 18:01:15 +0000 (20:01 +0200)]
shaderc: update 2021.1 -> 2021.2

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoglslang: update 11.5.0 -> 11.6.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:14 +0000 (20:01 +0200)]
glslang: update 11.5.0 -> 11.6.0

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agospirv-tools: update 2021.2 -> 2021.3
Alexander Kanavin [Wed, 8 Sep 2021 18:01:13 +0000 (20:01 +0200)]
spirv-tools: update 2021.2 -> 2021.3

Drop 0001-fix-strncpy-bound-error.patch; issue fixed upstream.

Bump spirv-headers revision to avoid outdated headers causing
build errors.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agopinentry: update 1.1.1 -> 1.2.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:12 +0000 (20:01 +0200)]
pinentry: update 1.1.1 -> 1.2.0

Rebase patches.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agognupg: update 2.3.1 -> 2.3.2
Alexander Kanavin [Wed, 8 Sep 2021 18:01:11 +0000 (20:01 +0200)]
gnupg: update 2.3.1 -> 2.3.2

Drop chunk from relocate.patch, the upstream code no longer exists.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agorunqemu: correct vga-virtio option to keep virgl enabled
Alexander Kanavin [Wed, 8 Sep 2021 18:01:10 +0000 (20:01 +0200)]
runqemu: correct vga-virtio option to keep virgl enabled

qemu 6.1 has (perhaps unintentionally) disabled virgl in -vga virtio:
https://gitlab.com/qemu-project/qemu/-/issues/586

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agoqemu: update 6.0.0 -> 6.1.0
Alexander Kanavin [Wed, 8 Sep 2021 18:01:09 +0000 (20:01 +0200)]
qemu: update 6.0.0 -> 6.1.0

Recipe changes:
qemu-plugin.h is installed by both qemu-native and qemu-system-native

qmp.py module is now provided in a module directory (no other files
from that directory are necessary to use it though)

additional host-specific info is stripeed from ptest tests/tcg/*.mak

Patches:
drop all backports

drop 0001-Add-enable-disable-udev.patch (change added upstream)

drop 0001-linux-user-Tag-vsx-with-ieee128-fpbits.patch
(issue fixed upstream)

drop 0004-qemu-disable-Valgrind.patch (valgrind detection moved
from configure to meson, and should be robust against host contamination)

rebase 0010-configure-Add-pkg-config-handling-for-libgcrypt.patch
(upstream moved libgcrypt handling from configure to meson, and using
pkg-config is now a one-liner adjustment)

rebase cross.patch

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 years agopackage_rpm: use zstd instead of xz
Alexander Kanavin [Mon, 4 Oct 2021 09:22:48 +0000 (11:22 +0200)]
package_rpm: use zstd instead of xz

zstd has similar time and space performance in compression but is
vastly faster in decompression, which benefits rootfs creation
(especially when installing very large packages) and on-target
package installation.

Also, ensure ZSTD_THREADS doesn't change sstate checksums. The
detailed explanation is in the commit making similar change for
XZ_THREADS.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>