* [OE-core][dunfell 0/3] Patch review
@ 2021-05-21 0:19 Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 1/3] Revert "cml1.bbclass: Return sorted list of cfg files" Steve Sakoman
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Steve Sakoman @ 2021-05-21 0:19 UTC (permalink / raw)
To: openembedded-core
Please review this final set of patches for the 3.1.8 release and have
comments back by end of day Friday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/2172
The following changes since commit cc49591d84d241d90e3dccb3e174ddfd737de311:
meta/lib/oe/rootfs.py: Fix typo "Restoreing" -> "Restoring" (2021-05-14 07:16:38 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Richard Purdie (2):
Revert "cml1.bbclass: Return sorted list of cfg files"
sstate: Handle manifest 'corruption' issue
Stefan Ghinea (1):
boost: fix do_fetch failure
meta/classes/cml1.bbclass | 2 +-
meta/classes/sstate.bbclass | 16 +++++++++++++++-
meta/recipes-support/boost/boost-1.72.0.inc | 2 +-
3 files changed, 17 insertions(+), 3 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [OE-core][dunfell 1/3] Revert "cml1.bbclass: Return sorted list of cfg files"
2021-05-21 0:19 [OE-core][dunfell 0/3] Patch review Steve Sakoman
@ 2021-05-21 0:19 ` Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 2/3] boost: fix do_fetch failure Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 3/3] sstate: Handle manifest 'corruption' issue Steve Sakoman
2 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2021-05-21 0:19 UTC (permalink / raw)
To: openembedded-core
From: Richard Purdie <richard.purdie@linuxfoundation.org>
This reverts commit dee41e92f0efac7e453597bed4b4c02f867e3aa9.
This patch breaks cases where some config files make changes to earlier ones,
ordering is important. The reproducibility issue in busybox was elsewhere.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ab0a296607b58775e91948ba40956c666dbb1244)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/classes/cml1.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
index e91452081c..8ab240589a 100644
--- a/meta/classes/cml1.bbclass
+++ b/meta/classes/cml1.bbclass
@@ -6,7 +6,7 @@ def find_cfgs(d):
if s.endswith('.cfg'):
sources_list.append(s)
- return sorted(sources_list)
+ return sources_list
cml1_do_configure() {
set -e
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [OE-core][dunfell 2/3] boost: fix do_fetch failure
2021-05-21 0:19 [OE-core][dunfell 0/3] Patch review Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 1/3] Revert "cml1.bbclass: Return sorted list of cfg files" Steve Sakoman
@ 2021-05-21 0:19 ` Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 3/3] sstate: Handle manifest 'corruption' issue Steve Sakoman
2 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2021-05-21 0:19 UTC (permalink / raw)
To: openembedded-core
From: Stefan Ghinea <stefan.ghinea@windriver.com>
Bintray service has been discontinued causing boost do_fetch to fail:
WARNING: boost-1.72.0-r0 do_fetch: Failed to fetch URL
https://dl.bintray.com/boostorg/release/1.76.0/source/boost_1_72_0.tar.bz2,
attempting MIRRORS if available
Signed-off-by: Stefan Ghinea <stefan.ghinea@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6a76da15ece9d27fca20ace12db4978092e042b7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-support/boost/boost-1.72.0.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-support/boost/boost-1.72.0.inc b/meta/recipes-support/boost/boost-1.72.0.inc
index 55a095bf1c..d152895f09 100644
--- a/meta/recipes-support/boost/boost-1.72.0.inc
+++ b/meta/recipes-support/boost/boost-1.72.0.inc
@@ -11,7 +11,7 @@ BOOST_VER = "${@"_".join(d.getVar("PV").split("."))}"
BOOST_MAJ = "${@"_".join(d.getVar("PV").split(".")[0:2])}"
BOOST_P = "boost_${BOOST_VER}"
-SRC_URI = "https://dl.bintray.com/boostorg/release/${PV}/source/${BOOST_P}.tar.bz2"
+SRC_URI = "https://boostorg.jfrog.io/artifactory/main/release/${PV}/source/${BOOST_P}.tar.bz2"
SRC_URI[md5sum] = "cb40943d2a2cb8ce08d42bc48b0f84f0"
SRC_URI[sha256sum] = "59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722"
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [OE-core][dunfell 3/3] sstate: Handle manifest 'corruption' issue
2021-05-21 0:19 [OE-core][dunfell 0/3] Patch review Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 1/3] Revert "cml1.bbclass: Return sorted list of cfg files" Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 2/3] boost: fix do_fetch failure Steve Sakoman
@ 2021-05-21 0:19 ` Steve Sakoman
2 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2021-05-21 0:19 UTC (permalink / raw)
To: openembedded-core
From: Richard Purdie <richard.purdie@linuxfoundation.org>
Under certain build patterns, warnings about missing manifests can appear. These
are real issues where the manifest was removed and shouldn't have been.
Martin Jansa was able to find a reproducer of:
MACHINE=qemux86 bitbake zlib-native
echo 'PR = "r1"' >> meta/recipes-core/zlib/zlib_1.2.11.bb
MACHINE=qemux86-64 bitbake zlib-native
MACHINE=qemux86 bitbake zlib-native
<the zlib-native manifest is now removed along with the sysroot-components contents>
The code maintains a per machine list of stamps but a per PACAGE_ARCH list of
stamp/manifest/workdir mappings. The latter is only appended to for speed with
the assumption that once stamps are gone, the code wouldn't trigger.
The code only ever appends to the mapping list (for speed/efficency under lock)
meaning that multiple entries can result where the stamp/workdir differs due to
version changes but the manifest remains the same.
By switching MACHINE part way through the build, the older stamp is referenced
and the manifest is incorrectly removed as it matches an now obsolete entry in
the mapping file.
There are two possible fixes, one is to rewrite the mapping file every time
which means adding regexs, iterating and generally complicating that code. The
second option is to only use the last mapping entry in the file for a given
manifest and ignore any earlier ones. This patch implments the latter.
Also drop the stale entries if we are rewriting it.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 63da9a4f889c5b0e41bc8ec08abe0acea1546479)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/classes/sstate.bbclass | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index a8e169a10b..3c89c35ecf 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -319,6 +319,8 @@ def sstate_install(ss, d):
if os.path.exists(i):
with open(i, "r") as f:
manifests = f.readlines()
+ # We append new entries, we don't remove older entries which may have the same
+ # manifest name but different versions from stamp/workdir. See below.
if filedata not in manifests:
with open(i, "a+") as f:
f.write(filedata)
@@ -1175,11 +1177,21 @@ python sstate_eventhandler2() {
i = d.expand("${SSTATE_MANIFESTS}/index-" + a)
if not os.path.exists(i):
continue
+ manseen = set()
+ ignore = []
with open(i, "r") as f:
lines = f.readlines()
- for l in lines:
+ for l in reversed(lines):
try:
(stamp, manifest, workdir) = l.split()
+ # The index may have multiple entries for the same manifest as the code above only appends
+ # new entries and there may be an entry with matching manifest but differing version in stamp/workdir.
+ # The last entry in the list is the valid one, any earlier entries with matching manifests
+ # should be ignored.
+ if manifest in manseen:
+ ignore.append(l)
+ continue
+ manseen.add(manifest)
if stamp not in stamps and stamp not in preservestamps and stamp in machineindex:
toremove.append(l)
if stamp not in seen:
@@ -1210,6 +1222,8 @@ python sstate_eventhandler2() {
with open(i, "w") as f:
for l in lines:
+ if l in ignore:
+ continue
f.write(l)
machineindex |= set(stamps)
with open(mi, "w") as f:
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [OE-core][dunfell 0/3] Patch review
@ 2022-09-29 2:05 Steve Sakoman
0 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2022-09-29 2:05 UTC (permalink / raw)
To: openembedded-core
Please review this set of patches for dunfell and have comments back by end
of day Thursday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/4278
The following changes since commit 6227efbf03d2e7ca773ab29177705203f2550722:
linux-firmware: package new Qualcomm firmware (2022-09-26 12:29:44 -1000)
are available in the Git repository at:
https://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Hitendra Prajapati (1):
bluez: CVE-2022-39176 BlueZ allows physically proximate attackers
Martin Jansa (1):
create-pull-request: don't switch the git remote protocol to git://
Richard Purdie (1):
vim: Upgrade 9.0.0541 -> 9.0.0598
meta/recipes-connectivity/bluez5/bluez5.inc | 1 +
.../bluez5/bluez5/CVE-2022-39176.patch | 126 ++++++++++++++++++
meta/recipes-support/vim/vim.inc | 4 +-
scripts/create-pull-request | 2 +-
4 files changed, 130 insertions(+), 3 deletions(-)
create mode 100644 meta/recipes-connectivity/bluez5/bluez5/CVE-2022-39176.patch
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [OE-core][dunfell 0/3] Patch review
@ 2022-07-13 19:46 Steve Sakoman
0 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2022-07-13 19:46 UTC (permalink / raw)
To: openembedded-core
Please review this set of patches for dunfell and have comments back by end
of day Friday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/3905
except for a known autobuilder intermittent issue on oe-selftest-centos:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=14201
which passed on subsequent retest:
https://autobuilder.yoctoproject.org/typhoon/#/builders/79/builds/3820
The following changes since commit af25fff399fa623b4fd6efbca21e01ea6b4d1fd7:
qemu: add PACKAGECONFIG for capstone (2022-07-12 04:08:20 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Joshua Watt (1):
classes/cve-check: Move get_patches_cves to library
Ross Burton (1):
vim: upgrade to 9.0.0021
Steve Sakoman (1):
openssl: security upgrade 1.1.1p to 1.1.1q
meta/classes/cve-check.bbclass | 62 +-------------
meta/lib/oe/cve_check.py | 82 +++++++++++++++++++
.../{openssl_1.1.1p.bb => openssl_1.1.1q.bb} | 2 +-
meta/recipes-support/vim/vim.inc | 4 +-
4 files changed, 87 insertions(+), 63 deletions(-)
rename meta/recipes-connectivity/openssl/{openssl_1.1.1p.bb => openssl_1.1.1q.bb} (98%)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [OE-core][dunfell 0/3] Patch review
@ 2022-03-10 14:04 Steve Sakoman
0 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2022-03-10 14:04 UTC (permalink / raw)
To: openembedded-core
Please review this set of patches for dunfell and have comments back by end
of day Friday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/3344
The following changes since commit 604146a242c3d5f5a9872bb756910f4bd1b58406:
sstate: inside the threadedpool don't write to the shared localdata (2022-03-07 07:05:33 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Bruce Ashfield (1):
perf-tests: add bash into RDEPENDS (v5.12-rc5+)
Richard Purdie (1):
vim: Update to 8.2.4524 for further CVE fixes
sana kazi (1):
tiff: Add backports for two CVEs from upstream
meta/recipes-kernel/perf/perf.bb | 2 +-
...99c99f987dc32ae110370cfdd7df7975586b.patch | 28 +++++++++++++++++
...0712f4c3a5b449f70c57988260a667ddbdef.patch | 30 +++++++++++++++++++
meta/recipes-multimedia/libtiff/tiff_4.1.0.bb | 2 ++
meta/recipes-support/vim/vim.inc | 4 +--
5 files changed, 63 insertions(+), 3 deletions(-)
create mode 100644 meta/recipes-multimedia/libtiff/tiff/561599c99f987dc32ae110370cfdd7df7975586b.patch
create mode 100644 meta/recipes-multimedia/libtiff/tiff/eecb0712f4c3a5b449f70c57988260a667ddbdef.patch
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [OE-core][dunfell 0/3] Patch review
@ 2022-03-08 14:13 Steve Sakoman
0 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2022-03-08 14:13 UTC (permalink / raw)
To: openembedded-core
Please review this set of patches for dunfell and have comments back by
end of day Thursday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/3335
The following changes since commit 51844f2d60d77fb8cb46ffe460402f76ae216ca5:
uninative: Upgrade to 3.5 (2022-03-03 07:43:07 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Jose Quaresma (1):
sstate: inside the threadedpool don't write to the shared localdata
Richard Purdie (1):
systemd: Ensure uid/gid ranges are set deterministically
Ross Burton (1):
asciidoc: update git repository
meta/classes/sstate.bbclass | 2 +-
meta/recipes-core/systemd/systemd_244.5.bb | 2 ++
meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [OE-core][dunfell 0/3] Patch review
@ 2021-11-04 14:06 Steve Sakoman
0 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2021-11-04 14:06 UTC (permalink / raw)
To: openembedded-core
Please review these patches for dunfell and have comments back by end of day
Monday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/2876
The following changes since commit 6cd21ddc6f998eec4d9be05f080e32072fddd2bd:
tzdata: update 2021d -> 2021e (2021-11-03 11:17:55 +0000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Richard Purdie (2):
scripts/convert-srcuri: Backport SRC_URI conversion script from master
branch
meta/scripts: Manual git url branch additions
Steve Sakoman (1):
meta: Add explict branch to git SRC_URIs, handle github url changes
.../devtool/devtool-upgrade-test2_git.bb | 2 +-
.../devtool-upgrade-test2_git.bb.upgraded | 2 +-
meta/classes/devupstream.bbclass | 2 +-
.../distro/include/default-distrovars.inc | 2 +-
meta/lib/oeqa/selftest/cases/devtool.py | 4 +-
meta/lib/oeqa/selftest/cases/recipetool.py | 6 +-
meta/lib/oeqa/selftest/cases/sstatetests.py | 2 +-
meta/recipes-bsp/efibootmgr/efibootmgr_17.bb | 2 +-
meta/recipes-bsp/efivar/efivar_37.bb | 2 +-
meta/recipes-bsp/opensbi/opensbi_0.6.bb | 2 +-
meta/recipes-bsp/u-boot/libubootenv_0.3.1.bb | 2 +-
meta/recipes-bsp/u-boot/u-boot-common.inc | 2 +-
.../connman/connman-gnome_0.7.bb | 2 +-
.../libnss-mdns/libnss-mdns_0.14.1.bb | 2 +-
.../mobile-broadband-provider-info_git.bb | 2 +-
.../resolvconf/resolvconf_1.82.bb | 2 +-
meta/recipes-core/dbus-wait/dbus-wait_git.bb | 2 +-
meta/recipes-core/expat/expat_2.2.9.bb | 2 +-
meta/recipes-core/fts/fts_1.2.7.bb | 2 +-
.../glibc/cross-localedef-native_2.31.bb | 2 +-
meta/recipes-core/glibc/glibc-version.inc | 2 +-
meta/recipes-core/ifupdown/ifupdown_0.8.35.bb | 2 +-
meta/recipes-core/libxcrypt/libxcrypt.inc | 2 +-
meta/recipes-core/musl/libucontext_git.bb | 2 +-
meta/recipes-core/musl/musl-obstack.bb | 2 +-
meta/recipes-core/musl/musl-utils.bb | 2 +-
meta/recipes-core/musl/musl_git.bb | 2 +-
meta/recipes-core/ncurses/ncurses.inc | 2 +-
meta/recipes-core/psplash/psplash_git.bb | 2 +-
meta/recipes-core/systemd/systemd.inc | 2 +-
.../update-rc.d/update-rc.d_0.8.bb | 2 +-
.../bootchart2/bootchart2_0.14.9.bb | 2 +-
.../btrfs-tools/btrfs-tools_5.4.1.bb | 2 +-
.../build-compare/build-compare_git.bb | 2 +-
.../createrepo-c/createrepo-c_0.15.7.bb | 2 +-
meta/recipes-devtools/distcc/distcc_3.3.3.bb | 2 +-
meta/recipes-devtools/dnf/dnf_4.2.2.bb | 2 +-
meta/recipes-devtools/e2fsprogs/e2fsprogs.inc | 2 +-
meta/recipes-devtools/file/file_5.38.bb | 2 +-
meta/recipes-devtools/glide/glide_0.13.3.bb | 2 +-
.../gnu-config/gnu-config_git.bb | 2 +-
meta/recipes-devtools/go/go-dep_0.5.4.bb | 2 +-
.../libcomps/libcomps_0.1.15.bb | 2 +-
meta/recipes-devtools/libdnf/libdnf_0.28.1.bb | 2 +-
.../librepo/librepo_1.11.2.bb | 2 +-
meta/recipes-devtools/llvm/llvm_git.bb | 2 +-
meta/recipes-devtools/mtd/mtd-utils_git.bb | 2 +-
meta/recipes-devtools/ninja/ninja_1.10.0.bb | 2 +-
.../patchelf/patchelf_0.10.bb | 2 +-
meta/recipes-devtools/rpm/rpm_4.14.2.1.bb | 2 +-
.../squashfs-tools/squashfs-tools_git.bb | 2 +-
.../systemd-bootchart_233.bb | 2 +-
.../tcf-agent/tcf-agent_git.bb | 2 +-
meta/recipes-devtools/unfs3/unfs3_git.bb | 2 +-
.../go-examples/go-helloworld_0.1.bb | 2 +-
.../iputils/iputils_s20190709.bb | 2 +-
.../recipes-extended/libaio/libaio_0.3.111.bb | 2 +-
meta/recipes-extended/libnsl/libnsl2_git.bb | 2 +-
.../recipes-extended/libnss-nis/libnss-nis.bb | 2 +-
.../libsolv/libsolv_0.7.10.bb | 2 +-
meta/recipes-extended/ltp/ltp_20200120.bb | 2 +-
meta/recipes-extended/procps/procps_3.3.16.bb | 2 +-
meta/recipes-extended/psmisc/psmisc_23.3.bb | 2 +-
.../rpcsvc-proto/rpcsvc-proto.bb | 2 +-
.../stress-ng/stress-ng_0.11.17.bb | 2 +-
meta/recipes-extended/sysklogd/sysklogd.inc | 2 +-
meta/recipes-extended/xinetd/xinetd_2.3.15.bb | 2 +-
.../libfakekey/libfakekey_git.bb | 2 +-
.../libmatchbox/libmatchbox_1.12.bb | 2 +-
.../libva/libva-utils_2.6.0.bb | 2 +-
.../matchbox-wm/matchbox-wm_1.2.2.bb | 2 +-
meta/recipes-graphics/mx/mx-1.0_1.4.7.bb | 2 +-
meta/recipes-graphics/piglit/piglit_git.bb | 2 +-
.../virglrenderer/virglrenderer_0.8.2.bb | 2 +-
meta/recipes-graphics/vulkan/assimp_5.0.1.bb | 2 +-
.../vulkan/vulkan-demos_git.bb | 6 +-
.../vulkan/vulkan-headers_1.1.126.0.bb | 2 +-
.../vulkan/vulkan-loader_1.1.126.0.bb | 2 +-
.../vulkan/vulkan-tools_1.1.126.0.bb | 2 +-
.../xinput-calibrator_git.bb | 2 +-
.../xorg-driver/xf86-video-intel_git.bb | 2 +-
meta/recipes-kernel/blktrace/blktrace_git.bb | 2 +-
meta/recipes-kernel/cryptodev/cryptodev.inc | 2 +-
meta/recipes-kernel/dtc/dtc.inc | 2 +-
.../kern-tools/kern-tools-native_git.bb | 2 +-
meta/recipes-kernel/kmod/kmod.inc | 2 +-
meta/recipes-kernel/powertop/powertop_2.10.bb | 2 +-
.../systemtap/systemtap_git.inc | 2 +-
.../gstreamer/gst-examples_1.16.0.bb | 2 +-
meta/recipes-multimedia/x264/x264_git.bb | 2 +-
meta/recipes-sato/l3afpad/l3afpad_git.bb | 2 +-
.../matchbox-config-gtk_0.2.bb | 2 +-
.../matchbox-desktop/matchbox-desktop_2.2.bb | 2 +-
.../matchbox-panel-2/matchbox-panel-2_2.11.bb | 2 +-
.../matchbox-terminal_0.2.bb | 2 +-
.../matchbox-theme-sato_0.2.bb | 2 +-
meta/recipes-sato/puzzles/puzzles_git.bb | 2 +-
.../sato-screenshot/sato-screenshot_0.3.bb | 2 +-
.../settings-daemon/settings-daemon_0.0.2.bb | 2 +-
.../bmap-tools/bmap-tools_3.5.bb | 2 +-
.../ca-certificates_20211016.bb | 2 +-
.../dos2unix/dos2unix_7.4.1.bb | 2 +-
.../gnome-desktop-testing_2018.1.bb | 2 +-
.../libjitterentropy_2.2.0.bb | 2 +-
meta/recipes-support/lz4/lz4_1.9.2.bb | 2 +-
.../p11-kit/p11-kit_0.23.22.bb | 2 +-
.../ptest-runner/ptest-runner_2.4.0.bb | 2 +-
.../rng-tools/rng-tools_6.9.bb | 2 +-
.../shared-mime-info/shared-mime-info_git.bb | 2 +-
meta/recipes-support/vim/vim.inc | 2 +-
scripts/contrib/convert-srcuri.py | 77 +++++++++++++++++++
scripts/lib/recipetool/create.py | 3 +
112 files changed, 195 insertions(+), 115 deletions(-)
create mode 100755 scripts/contrib/convert-srcuri.py
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [OE-core][dunfell 0/3] Patch review
@ 2021-07-20 21:57 Steve Sakoman
0 siblings, 0 replies; 10+ messages in thread
From: Steve Sakoman @ 2021-07-20 21:57 UTC (permalink / raw)
To: openembedded-core
Please review this final set of patches for dunfell 3.1.10 release and have
comments back by end of day Thursday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/2370
The following changes since commit 9b83aefa9c4a21d9dc1eea4a6b00af379466a288:
busybox: add tmpdir option into mktemp applet (2021-07-14 12:27:38 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Bruce Ashfield (3):
linux-yocto/5.4: update to v5.4.131
linux-yocto/5.4: update to v5.4.132
kernel-devsrc: fix 32bit ARM devsrc builds
meta/recipes-kernel/linux/kernel-devsrc.bb | 2 +-
.../linux/linux-yocto-rt_5.4.bb | 6 ++---
.../linux/linux-yocto-tiny_5.4.bb | 8 +++----
meta/recipes-kernel/linux/linux-yocto_5.4.bb | 22 +++++++++----------
4 files changed, 19 insertions(+), 19 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-09-29 2:06 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-21 0:19 [OE-core][dunfell 0/3] Patch review Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 1/3] Revert "cml1.bbclass: Return sorted list of cfg files" Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 2/3] boost: fix do_fetch failure Steve Sakoman
2021-05-21 0:19 ` [OE-core][dunfell 3/3] sstate: Handle manifest 'corruption' issue Steve Sakoman
2021-07-20 21:57 [OE-core][dunfell 0/3] Patch review Steve Sakoman
2021-11-04 14:06 Steve Sakoman
2022-03-08 14:13 Steve Sakoman
2022-03-10 14:04 Steve Sakoman
2022-07-13 19:46 Steve Sakoman
2022-09-29 2:05 Steve Sakoman
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.