summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
Commit message (Collapse)AuthorAgeFilesLines
...
* libnsl2: embed version in filenameRoss Burton2024-11-271-5/+1
| | | | | | | | | This recipe fetches a tagged commit, so embed the PV in the filename. (From OE-Core rev: dddf0d4d5a702f07162852dd06b03582496a8736) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libnsl2: set CVE_PRODUCTRoss Burton2024-11-271-0/+2
| | | | | | | | | | | | Our libnsl2 recipe is just libnsl version 2.x, so set the CVE vendor and product pair appropriately as per: https://www.cvedetails.com/version/1177013/Libnsl-Project-Libnsl-2.0.0.html (From OE-Core rev: d0e77d3f9217b96f1c77ba65fc9b8420f413c401) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wget: upgrade 1.24.5 -> 1.25.0Alexander Kanavin2024-11-274-90/+10
| | | | | | | (From OE-Core rev: c66e1578278d4d0ba2a145f23887dba311fa0753) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: upgrade 1.9.15p5 -> 1.9.16p1Alexander Kanavin2024-11-273-4/+3
| | | | | | | | | License-Update: copyright years (From OE-Core rev: 5d4ff3b14771bbb2a7653c92b80806bc9aa3fa64) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsolv: upgrade 0.7.30 -> 0.7.31Alexander Kanavin2024-11-272-2/+2
| | | | | | | (From OE-Core rev: a6f6ea0d7abdc6e1d0b5427dd4c58a85679e3182) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gawk: upgrade 5.3.0 -> 5.3.1Alexander Kanavin2024-11-273-40/+37
| | | | | | | (From OE-Core rev: 96240d86955b51f9a494bd46ce064a7517aac7ab) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpam: drop cracklib from DEPENDSGuðni Már Gilbert2024-11-191-1/+1
| | | | | | | | | | | | cracklib was dropped as a dependency in libpam v1.5.0 See the following commit as reference: https://github.com/linux-pam/linux-pam/commit/d702ff714c309069111899fd07c09e31c414c166 (From OE-Core rev: f206c48a71e10195fb1d20a5b4efafad4ae64d95) Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* stress-ng: upgrade 0.18.02 -> 0.18.06Wang Mingyu2024-11-181-1/+1
| | | | | | | | (From OE-Core rev: b1a8ba7305d1473d807f1c86e8daeb68092a35fd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtirpc: upgrade 1.3.5 -> 1.3.6Wang Mingyu2024-11-181-1/+1
| | | | | | | | (From OE-Core rev: dd3a413d6d9415f1a546cc2d04b5213a4bf0c227) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* iptables: upgrade 1.8.10 -> 1.8.11Wang Mingyu2024-11-183-93/+1
| | | | | | | | | | | | | | | 0001-configure-Add-option-to-enable-disable-libnfnetlink.patch 0002-nft-ruleparse-Add-missing-braces-around-ternary.patch removed since they're included in 1.8.11 Changelog: https://netfilter.org/projects/iptables/files/changes-iptables-1.8.11.txt (From OE-Core rev: d12f4bf60cc45bf9f73f688000786cfea7a2faeb) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bzip2: fix 'bzip2 --version > /tmp/aaa 2>&1' hangHongxu Jia2024-11-182-0/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to [1] As of the current version 1.0.8, bzip2 --version will print version info but it will also continue compressing stdin: $ ./bzip2 --version bzip2, a block-sorting file compressor. Version 1.0.8, 13-Jul-2019. Copyright (C) 1996-2019 by Julian Seward. This program is free software; [...] bzip2: I won't write compressed data to a terminal. bzip2: For help, type: `bzip2 --help'. Debian (and its downstreams like Ubuntu) will patch this out [2], making the < /dev/null unnecessary, port a part of debian patch to fix the issue [1] https://stackoverflow.com/questions/59757176/why-using-dev-null-with-a-program-like-bzip2 [2] https://sources.debian.org/src/bzip2/1.0.8-6/debian/patches/20-legacy.patch/ (From OE-Core rev: ae4fe4263ba9d372f9b9e80df4ec4697b51c1f9b) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* parted: Fix the ptest path to test-driverOla x Nilsson2024-11-141-7/+9
| | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/tests/Makefile that transforms SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to SH_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: e1274fd52c7d7a41af60f5f19ba2163dba3d973f) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sed: Fix the ptest path to test-driverOla x Nilsson2024-11-141-0/+1
| | | | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/Makefile that transforms SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver PL_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to SH_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver PL_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: 2f7c365e97aa2205187e0ea426e17228cf91ad83) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* groff: Fix race issues for parallel buildRobert Yang2024-11-122-0/+32
| | | | | | | | | | | | | Fixed race issues for parallel build: groff: error: couldn't exec soelim: Permission And: groff: error: couldn't exec grn: Permission denied (From OE-Core rev: b9ee7ea9ab05a1887c863dc9fccc65cb9e6850df) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gzip: show full test log if ptests failRoss Burton2024-11-121-4/+1
| | | | | | | | | Enable verbose tests so that the output from the failing test is logged. (From OE-Core rev: 2e031a41a3c8da591755f39898ba063e39d79aaa) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzdata/tzcode-native: upgrade 2024a -> 2024bJinfeng Wang2024-11-051-3/+3
| | | | | | | (From OE-Core rev: b84b29b1827624270cc1698feda2ee87d55c01e4) Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: Fix build with glibc 2.41Khem Raj2024-11-012-0/+43
| | | | | | | (From OE-Core rev: 92646b4314054e14c2b57b045f4a5df859b55468) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libarchive: upgrade 3.7.6 -> 3.7.7Wang Mingyu2024-10-291-1/+1
| | | | | | | | (From OE-Core rev: 923ac5ed1b258c6ffb19e4b58a3bf00db55d0fb0) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* less: upgrade 661 -> 668Wang Mingyu2024-10-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ * Make 256/true colors work better on Windows without -Da * Fix build using --with-secure * Fix crash when using --header on command line * Fix possible crash when scrolling left/right or toggling -S * Fix bug when using #stop in a lesskey file * Fix bug when using --shift or --match-shift on command line with a parameter starting with '.' * Fix bug in R command when file size changes * Fix bug using --header when file does not fill screen * Fix ^X bug when output is not a terminal * Fix bug where ^Z is not handled immediately * Fix bug where first byte from a LESSOPEN filter is deleted if it is greater than 0x7F * Fix uninitialized variable in edit_ifile * Fix incorrect handling of UTF-8 chars in prompts (From OE-Core rev: 71c5b012278fc5c9c0c5e31b46ce348309b4b9e7) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bash: upgrade 5.2.32 -> 5.2.37Wang Mingyu2024-10-292-43/+1
| | | | | | | | | | | 0001-fix-c99.patch refreshed for 5.2.37 (From OE-Core rev: fa9289b26b9b3fe7e79c7fa01f6a57b072d8fdcd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shadow: use update-alternatives to handle groups.1Chen Qi2024-10-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | This patch fixes the following error at do_rootfs: update-alternatives: Error: not linking /PATH/TO/rootfs/usr/share /man/man1/groups.1 to /usr/share/man/man1/groups.1.coreutils since /PATH/TO/rootfs/usr/share/man/man1/groups.1 exists and is not a link The problem can be reproduced by adding the following lines to local.conf and then building an image: EXTRA_IMAGE_FEATURES:append = " doc-pkgs" IMAGE_INSTALL:append = " shadow coreutils" groups.1 is handled by update-alternatives in coreutils recipe, so do it in shadow recipe too. (From OE-Core rev: 78c8eb60097df2e16c699464c39ff9142fc1ae69) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* screen: uprev to 5.0.0Ming Liu2024-10-254-126/+4
| | | | | | | | | | | | | | | License-Update: A typo "httpss->https" fixed in Copyright. Drop deprecated patches. Inherit autotools-brokensep instead of autotools, there are some generated headers in ${B} that referring to ${S}. (From OE-Core rev: 061c99fb84b25cca8783efa66851b52c74126063) Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta: use explicit uri for all sourceforge upstream version checksAlexander Kanavin2024-10-154-3/+7
| | | | | | | | | | | | | | | | | Previously the check for some recipes relied on sourceforge redirecting from downloads.sourceforge.net (SRC_URI is set to that) into the actual project page. Sourceforge does this for interactive browsers, but not for wget. With the check no longer mimicking a browser, and being truthful about coming from wget we need to explicitly fetch the project page in all cases, which is what this commit does. (many recipes already set this explicitly and don't need to be tweaked) (From OE-Core rev: 4c21ce6e34f6ce8fbf4db7bc2fd017c8f7a811b4) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* groff: fix rare build race in hdtblRoss Burton2024-10-152-0/+39
| | | | | | | | | | | | | | | It's possible to build the hdtbl examples before grn has been build: groff: error: couldn't exec grn: No such file or directory Backport a dependency fix from upstream. [ YOCTO #15610 ] (From OE-Core rev: d590a32423d05cefc4e7282f971f633b3fa0b941) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ethtool: upgrade 6.10 -> 6.11Changhyeok Bae2024-10-151-1/+1
| | | | | | | | | | | | | | | | | | Release notes: * Feature: cmis: print active and inactive firmware versions * Feature: flash transceiver module firmware (--flash-module-firmware) * Feature: add T1BRR 10Mb/s mode to link mode tables * Feature: support for disabling netlink from command line * Fix: fix lanes parameter format specifier * Fix: add missing clause 33 PSE manual description * Fix: qsf: Better handling of Page A2h netlink read failure * Fix: rss: retrieve ring count using ETHTOOL_GRXRINGS ioctl (-x) * Misc: man page formatting fix (From OE-Core rev: 6f7321d9d1b7892737b1e3fe27ef2070a37079de) Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libarchive: Update SRC_URI to use httpsJermain Horsman2024-10-111-1/+1
| | | | | | | (From OE-Core rev: 1311e94e3983bc1d5ad0d08a6f30081a2c3bef63) Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xz: upgrade 5.6.2 -> 5.6.3Wang Mingyu2024-10-111-1/+1
| | | | | | | | | | Changelog: https://github.com/tukaani-project/xz/releases/tag/v5.6.3 (From OE-Core rev: da367ada2e837b4f77f85995ae6dcd93a0d193e8) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* msmtp: upgrade 1.8.26 -> 1.8.27Wang Mingyu2024-10-111-1/+1
| | | | | | | | | | | | | Changelog: ============= - Add a testing infrastructure ('make check') - Many improvements in the msmtpq script - Many improvements to the vim scripts (From OE-Core rev: 3d696a11c04538c0f9e83ddbdb21831098ea071e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: upgrade 20240524 -> 20240930Wang Mingyu2024-10-111-1/+1
| | | | | | | | | | Changelog: https://github.com/linux-test-project/ltp/releases/tag/20240930 (From OE-Core rev: 66ab680077c547239f4972fd5aab5f5d739b8f14) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libarchive: upgrade 3.7.4 -> 3.7.6Ross Burton2024-10-082-57/+2
| | | | | | | | | | | | Drop configurehack.patch, no longer needed Upstream changes break the python3-libarchive-c test suite, a second patch follows. (From OE-Core rev: e093f603963f10dd8a4cfb2a8d3c3f0efb3fb5bf) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsb-release: fix Distro Codename shell escapingSergei Zhmylev2024-09-301-1/+1
| | | | | | | (From OE-Core rev: 7b5824c547b1348713e992a8bebd40577a0c5709) Signed-off-by: Sergei Zhmylev <s.zhmylev@yadro.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* texinfo-dummy: log what the invoking command was when failingRoss Burton2024-09-301-3/+3
| | | | | | | (From OE-Core rev: 9d2aa8211fff9fb06f1833066d8d0a4731cfda1c) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sysklogd: upgrade 2.6.1 -> 2.6.2Wang Mingyu2024-09-301-1/+1
| | | | | | | | | | | | | | | | | Changes ========= - 'syslog.conf': misplaced continuation character in example - Adapt facilities for RFC5424 compliance. - Add support for IPv6 addresses in 'listen' directive, issue #90 Fixes ======= - Fix #85: logging to remote IPv6 address does not work. - Fix #88: initial delay for unresolvable remote target. (From OE-Core rev: 61bdaaf9500ffb78564ed051939e9a33a47ffa55) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ghostscript: upgrade 10.03.1 -> 10.04.0Wang Mingyu2024-09-302-4/+4
| | | | | | | | | | | | | | | | | | avoid-host-contamination.patch refreshed for 10.04.0 Changelog: =========== - addresses CVEs: CVE-2024-46951, CVE-2024-46952, CVE-2024-46953, CVE-2024-46954, CVE-2024-46955, CVE-2024-46956 - add protection for device selection from PostScript input. - efforts in code hygiene and maintainability continue. - The usual round of bug fixes, compatibility changes, and incremental improvements. - add the capability to build with the Tesseract OCR engine. (From OE-Core rev: b9aa935d1d834e86b1a9cd2e5311e41dd7cd092f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpam: use libdir in conditionalDaniel McGregor2024-09-201-1/+1
| | | | | | | | | | | Using the usrmerge distro feature for this check causes the -native variant's build to fail. Simplify the test to be correct for both native and target builds. (From OE-Core rev: 105e6fbdd28238cef41f280c0c28939b24d1a96e) Signed-off-by: Daniel McGregor <daniel.mcgregor@vecima.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* iputils: upgrade 20240117 -> 20240905Changhyeok Bae2024-09-201-1/+1
| | | | | | | | | | | | | | | | | Changelog: - Allow to disable reverse DNS resolution (PTR lookup) with with environment variable IPUTILS_PING_PTR_LOOKUP=0 - Lower max allowed -s value to 65507 (IPv4) or 65527 (IPv6). That is the maximum the Linux kernel supports. - Include pre-generated man pages & HTML docs in dist tarballs. This allows to avoid libxslt, docbook, ... as a build dependencies. - require meson >= 0.44 - ping has new option -3 (From OE-Core rev: 6e950f5edd36a2ef1b1a7c46c1bb860ddce7a70f) Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mc: upgrade 4.8.31 -> 4.8.32Wang Mingyu2024-09-041-1/+1
| | | | | | | (From OE-Core rev: 9f1d056d89a1892ab3deb6dd6635821442e4ffd4) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* acpica: upgrade 20240322 -> 20240827Wang Mingyu2024-09-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Fix the PHAT table working: ensure that the PHAT firmware health record offset works correctly, fix various sub-table offsets, prevent segmentation faults when encountering invalid device paths. - Fix the optional table 4-byte signature. - Correct the dumping of SLIC and DBG2 tables. - Add support for QWordPCC and DWordPCC - Fix the integer to hex string conversions - Detecting FACS in reduced HW mode and allowing setting waking vector thereby waking up from S3 state - Fixing issues with crossing page boundaries when mapping operation regions - Update the support for IORT, HMAT, MPAM, AEST, CEDT, SPCR etc. tables - Fix multiple issues with table parsing, compilation and disassembly - Allow for more flexibility in _DSM usage. (From OE-Core rev: d1271e6435a399094152ceac540e160d87d7ae3b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* zip: Fix LICENSENiko Mauno2024-09-041-1/+1
| | | | | | | | | | | | | The contents of the LICENSE file included in the current source code package match those of Info-ZIP license, which seems to originate from the year 2007: This is version 2007-Mar-4 of the Info-ZIP license. (From OE-Core rev: 3739a1af61ff6f0faca23bb565f9e71666953715) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* unzip: Fix LICENSENiko Mauno2024-09-041-1/+1
| | | | | | | | | | | | | The contents of the LICENSE file included in the current source code package match those of Info-ZIP license, which seems to originate from the year 2009: This is version 2009-Jan-02 of the Info-ZIP license. (From OE-Core rev: e7c9368e56a6ad90b4ffbba1b765e2b3a331c796) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mc: set ac_cv_path_ZIP to avoid buildpaths QA issuesMartin Jansa2024-09-031-0/+1
| | | | | | | | | | | | | | | | | * in builds with zip in HOSTTOOLS mc fails with: ERROR: mc-4.8.31-r0 do_package_qa: QA Issue: File /usr/libexec/mc/extfs.d/uzip in package mc-helpers-perl contains reference to TMPDIR [buildpaths] and it's because of the path to zip: mc/4.8.31/package $ grep -R styhead . ./usr/libexec/mc/extfs.d/uzip:my $app_zip = "TMPDIR/hosttools/zip"; * don't use /usr/bin/env as in other cases, because app_zip is then used e.g. with: my $cmd_addlink = "$app_zip -g -y"; (From OE-Core rev: 24df179cdb8c89c54d1864862afa2692bb7c659f) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cracklib: update 2.9.11 -> 2.10.2Alexander Kanavin2024-08-282-341/+1
| | | | | | | | | | | Drop endianness patch; upstream resolved the issue via: https://github.com/cracklib/cracklib/pull/86 https://github.com/cracklib/cracklib/issues/74 (From OE-Core rev: 4a54f06332fc0e3065b772a4563b9662830b1c98) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go-helloworld: update to latest revisionAlexander Kanavin2024-08-281-1/+1
| | | | | | | (From OE-Core rev: 62b8005e6df13fed7754d504d7aa37614d318008) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* quota: Apply a backport to fix basename API with muslKhem Raj2024-08-283-71/+229
| | | | | | | | | | Drop the local patches for supporting musl, as they are either subsumed in the backport or are not needed anymore (From OE-Core rev: 8109e87c32381bd2c8cacde213091dd0b381774c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cronie: add inotify PACKAGECONFIG optionJonathan GUILLOT2024-08-231-0/+1
| | | | | | | | | | | | By default, cronie inspects crontab modtimes every minute to check for modications avoiding server restart for them to be taken in account. The inotify option allows the server to use this mechanism to be directly notified when a crontab is modified. (From OE-Core rev: 4f6bf3c4208178cd670eeb61d8428373c7d1285f) Signed-off-by: Jonathan GUILLOT <jonathan@joggee.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man-pages: 6.8 -> 6.9.1hongxu2024-08-231-1/+1
| | | | | | | (From OE-Core rev: bff8308849f471a7987e5bf4deef5271d7d16d4d) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shadow: upgrade from 4.15.1 to 4.16.0Chen Qi2024-08-232-1/+1
| | | | | | | | | Upgrade shadow from 4.15.1 to 4.16.0. (From OE-Core rev: 3cbcd040f427ccd0de5f0db35061d378b369b285) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xz: upgrade 5.4.6 -> 5.6.2Alexander Kanavin2024-08-231-10/+13
| | | | | | | | | | | | | | | | | | | | | | | | | This is the first post-backdoor release. These are the release notes: https://github.com/tukaani-project/xz/releases/ There are also backdoor notes: https://tukaani.org/xz-backdoor/ "I plan to write an article how the backdoor got into the releases and what can be learned from this." - that'd be most welcome, as it would be first hand information that sets the record straight. And there's a commit by commit review of Jia Tan's contributions: https://tukaani.org/xz-backdoor/review.html Add an option for landlock sandbox (off by default as it clashes with running under pseudo). License-Update: public domain bits were relicensed under 0BSD license (From OE-Core rev: 6446d82a533da091ec2acc613b4cf06951d78ff3) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* stress-ng: upgrade 0.17.08 -> 0.18.02Alexander Kanavin2024-08-231-1/+1
| | | | | | | (From OE-Core rev: b054931f8428c625dca4ca5ed2f90f45817e469c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bash: upgrade 5.2.21 -> 5.2.32Alexander Kanavin2024-08-239-42/+38
| | | | | | | (From OE-Core rev: f70eebdf5b60d0ee7b1bbcdff1135801b2654a08) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>