* [OE-core][dunfell 00/22] Pull request (cover letter only)
@ 2020-07-02 1:41 Steve Sakoman
2020-07-02 18:07 ` Bruce Ashfield
0 siblings, 1 reply; 6+ messages in thread
From: Steve Sakoman @ 2020-07-02 1:41 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 1a98936830ba468d63e2e49d766add9e9cb75998:
gstreamer1.0-plugins-bad: add support for vdpau (2020-06-23 04:33:47 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-next
Alexander Kanavin (1):
linux-firmware: upgrade 20200519 -> 20200619
Andrej Valek (1):
oeqa/runtime/cases/ptest: Make output content path absolute
Armin Kuster (2):
curl: Security fixes for CVE-2020-{8169/8177}
wpa-supplicant: Security fix CVE-2020-12695
Changqing Li (1):
mime.bbclass: fix post install scriptlet error
Chen Qi (1):
systemd-serialgetty: do not use BindsTo
Konrad Weihmann (2):
runqemu: add QB_ROOTFS_EXTRA_OPT parameter
testimage: enable ovmf support
Lee Chee Yang (2):
dbus: fix CVE-2020-12049
perl: fix CVE-2020-10543 & CVE-2020-10878
Lili Li (1):
kernel.bbclass: Fix Module.symvers support
Ming Liu (1):
u-boot: introduce UBOOT_INITIAL_ENV
Nicolas Dechesne (1):
checklayer: parse LAYERDEPENDS with bb.utils.explode_dep_versions2()
Pierre-Jean Texier (1):
ell: upgrade 0.31 -> 0.32
Richard Purdie (7):
pseudo: Fix attr errors due to incorrect library resolution issues
oeqa/selftest/runcmd: Add better debug for thread count mismatch
failures
oeqa/utils/command: Improve stdin handling in runCmd
scripts/install-buildtools: Update to 3.2 M1 buildtools
scripts/install-buildtools: Handle new format checksum files
oeqa/selftest: Clean up separate builddir in success case when
non-threaded
populate_sdk_ext: Fix to use python3, not python
Steve Sakoman (1):
u-boot: move redundant-yyloc-global patch to u-boot-common.inc
meta/classes/kernel.bbclass | 2 +-
meta/classes/mime.bbclass | 13 +-
meta/classes/populate_sdk_ext.bbclass | 2 +-
meta/classes/qemuboot.bbclass | 5 +
meta/classes/testimage.bbclass | 6 +-
meta/lib/oeqa/core/target/qemu.py | 6 +-
meta/lib/oeqa/core/utils/concurrencytest.py | 23 +--
meta/lib/oeqa/runtime/cases/ptest.py | 4 +
meta/lib/oeqa/selftest/cases/runcmd.py | 9 +-
meta/lib/oeqa/selftest/context.py | 36 ++++-
meta/lib/oeqa/utils/commands.py | 4 +-
meta/lib/oeqa/utils/qemurunner.py | 5 +-
.../remove-redundant-yyloc-global.patch | 0
meta/recipes-bsp/u-boot/u-boot-common.inc | 1 +
.../u-boot/u-boot-tools_2020.01.bb | 2 -
meta/recipes-bsp/u-boot/u-boot.inc | 55 ++++---
...allow-event-subscriptions-with-URLs-.patch | 151 +++++++++++++++++
...nt-message-generation-using-a-long-U.patch | 62 +++++++
...HTTP-initiation-failures-for-events-.patch | 50 ++++++
.../wpa-supplicant/wpa-supplicant_2.9.bb | 5 +-
.../dbus/dbus/CVE-2020-12049.patch | 78 +++++++++
meta/recipes-core/dbus/dbus_1.12.16.bb | 1 +
.../ell/{ell_0.31.bb => ell_0.32.bb} | 3 +-
.../systemd-serialgetty/serial-getty@.service | 3 +-
.../perl/files/CVE-2020-10543.patch | 36 +++++
.../perl/files/CVE-2020-10878_1.patch | 152 ++++++++++++++++++
.../perl/files/CVE-2020-10878_2.patch | 36 +++++
meta/recipes-devtools/perl/perl_5.30.1.bb | 3 +
.../pseudo/files/xattr_version.patch | 54 +++++++
meta/recipes-devtools/pseudo/pseudo_git.bb | 1 +
...20200519.bb => linux-firmware_20200619.bb} | 4 +-
.../curl/curl/CVE-2020-8169.patch | 140 ++++++++++++++++
.../curl/curl/CVE-2020-8177.patch | 67 ++++++++
meta/recipes-support/curl/curl_7.69.1.bb | 2 +
scripts/install-buildtools | 10 +-
scripts/lib/checklayer/__init__.py | 7 +-
scripts/runqemu | 11 +-
37 files changed, 979 insertions(+), 70 deletions(-)
rename meta/recipes-bsp/u-boot/{u-boot-tools => files}/remove-redundant-yyloc-global.patch (100%)
create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-WPS-UPnP-Do-not-allow-event-subscriptions-with-URLs-.patch
create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0002-WPS-UPnP-Fix-event-message-generation-using-a-long-U.patch
create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch
create mode 100644 meta/recipes-core/dbus/dbus/CVE-2020-12049.patch
rename meta/recipes-core/ell/{ell_0.31.bb => ell_0.32.bb} (83%)
create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10543.patch
create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_1.patch
create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_2.patch
create mode 100644 meta/recipes-devtools/pseudo/files/xattr_version.patch
rename meta/recipes-kernel/linux-firmware/{linux-firmware_20200519.bb => linux-firmware_20200619.bb} (99%)
create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8169.patch
create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8177.patch
--
2.17.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core][dunfell 00/22] Pull request (cover letter only)
2020-07-02 1:41 [OE-core][dunfell 00/22] Pull request (cover letter only) Steve Sakoman
@ 2020-07-02 18:07 ` Bruce Ashfield
2020-07-02 18:16 ` Steve Sakoman
0 siblings, 1 reply; 6+ messages in thread
From: Bruce Ashfield @ 2020-07-02 18:07 UTC (permalink / raw)
To: Steve Sakoman; +Cc: Patches and discussions about the oe-core layer
On Wed, Jul 1, 2020 at 9:41 PM Steve Sakoman <steve@sakoman.com> wrote:
>
> The following changes since commit 1a98936830ba468d63e2e49d766add9e9cb75998:
>
> gstreamer1.0-plugins-bad: add support for vdpau (2020-06-23 04:33:47 -1000)
>
> are available in the Git repository at:
>
> git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next
> http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-next
>
> Alexander Kanavin (1):
> linux-firmware: upgrade 20200519 -> 20200619
>
> Andrej Valek (1):
> oeqa/runtime/cases/ptest: Make output content path absolute
>
> Armin Kuster (2):
> curl: Security fixes for CVE-2020-{8169/8177}
> wpa-supplicant: Security fix CVE-2020-12695
>
> Changqing Li (1):
> mime.bbclass: fix post install scriptlet error
>
> Chen Qi (1):
> systemd-serialgetty: do not use BindsTo
>
> Konrad Weihmann (2):
> runqemu: add QB_ROOTFS_EXTRA_OPT parameter
> testimage: enable ovmf support
>
> Lee Chee Yang (2):
> dbus: fix CVE-2020-12049
> perl: fix CVE-2020-10543 & CVE-2020-10878
>
> Lili Li (1):
> kernel.bbclass: Fix Module.symvers support
I wouldn't recommend this going back to dunfell. It is papering over
an issue, and is for a new kernel than we ever used in dunfell.
Bruce
>
> Ming Liu (1):
> u-boot: introduce UBOOT_INITIAL_ENV
>
> Nicolas Dechesne (1):
> checklayer: parse LAYERDEPENDS with bb.utils.explode_dep_versions2()
>
> Pierre-Jean Texier (1):
> ell: upgrade 0.31 -> 0.32
>
> Richard Purdie (7):
> pseudo: Fix attr errors due to incorrect library resolution issues
> oeqa/selftest/runcmd: Add better debug for thread count mismatch
> failures
> oeqa/utils/command: Improve stdin handling in runCmd
> scripts/install-buildtools: Update to 3.2 M1 buildtools
> scripts/install-buildtools: Handle new format checksum files
> oeqa/selftest: Clean up separate builddir in success case when
> non-threaded
> populate_sdk_ext: Fix to use python3, not python
>
> Steve Sakoman (1):
> u-boot: move redundant-yyloc-global patch to u-boot-common.inc
>
> meta/classes/kernel.bbclass | 2 +-
> meta/classes/mime.bbclass | 13 +-
> meta/classes/populate_sdk_ext.bbclass | 2 +-
> meta/classes/qemuboot.bbclass | 5 +
> meta/classes/testimage.bbclass | 6 +-
> meta/lib/oeqa/core/target/qemu.py | 6 +-
> meta/lib/oeqa/core/utils/concurrencytest.py | 23 +--
> meta/lib/oeqa/runtime/cases/ptest.py | 4 +
> meta/lib/oeqa/selftest/cases/runcmd.py | 9 +-
> meta/lib/oeqa/selftest/context.py | 36 ++++-
> meta/lib/oeqa/utils/commands.py | 4 +-
> meta/lib/oeqa/utils/qemurunner.py | 5 +-
> .../remove-redundant-yyloc-global.patch | 0
> meta/recipes-bsp/u-boot/u-boot-common.inc | 1 +
> .../u-boot/u-boot-tools_2020.01.bb | 2 -
> meta/recipes-bsp/u-boot/u-boot.inc | 55 ++++---
> ...allow-event-subscriptions-with-URLs-.patch | 151 +++++++++++++++++
> ...nt-message-generation-using-a-long-U.patch | 62 +++++++
> ...HTTP-initiation-failures-for-events-.patch | 50 ++++++
> .../wpa-supplicant/wpa-supplicant_2.9.bb | 5 +-
> .../dbus/dbus/CVE-2020-12049.patch | 78 +++++++++
> meta/recipes-core/dbus/dbus_1.12.16.bb | 1 +
> .../ell/{ell_0.31.bb => ell_0.32.bb} | 3 +-
> .../systemd-serialgetty/serial-getty@.service | 3 +-
> .../perl/files/CVE-2020-10543.patch | 36 +++++
> .../perl/files/CVE-2020-10878_1.patch | 152 ++++++++++++++++++
> .../perl/files/CVE-2020-10878_2.patch | 36 +++++
> meta/recipes-devtools/perl/perl_5.30.1.bb | 3 +
> .../pseudo/files/xattr_version.patch | 54 +++++++
> meta/recipes-devtools/pseudo/pseudo_git.bb | 1 +
> ...20200519.bb => linux-firmware_20200619.bb} | 4 +-
> .../curl/curl/CVE-2020-8169.patch | 140 ++++++++++++++++
> .../curl/curl/CVE-2020-8177.patch | 67 ++++++++
> meta/recipes-support/curl/curl_7.69.1.bb | 2 +
> scripts/install-buildtools | 10 +-
> scripts/lib/checklayer/__init__.py | 7 +-
> scripts/runqemu | 11 +-
> 37 files changed, 979 insertions(+), 70 deletions(-)
> rename meta/recipes-bsp/u-boot/{u-boot-tools => files}/remove-redundant-yyloc-global.patch (100%)
> create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-WPS-UPnP-Do-not-allow-event-subscriptions-with-URLs-.patch
> create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0002-WPS-UPnP-Fix-event-message-generation-using-a-long-U.patch
> create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch
> create mode 100644 meta/recipes-core/dbus/dbus/CVE-2020-12049.patch
> rename meta/recipes-core/ell/{ell_0.31.bb => ell_0.32.bb} (83%)
> create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10543.patch
> create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_1.patch
> create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_2.patch
> create mode 100644 meta/recipes-devtools/pseudo/files/xattr_version.patch
> rename meta/recipes-kernel/linux-firmware/{linux-firmware_20200519.bb => linux-firmware_20200619.bb} (99%)
> create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8169.patch
> create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8177.patch
>
> --
> 2.17.1
>
>
--
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core][dunfell 00/22] Pull request (cover letter only)
2020-07-02 18:07 ` Bruce Ashfield
@ 2020-07-02 18:16 ` Steve Sakoman
2020-07-02 18:19 ` Bruce Ashfield
[not found] ` <161E0270090CD0C2.18513@lists.openembedded.org>
0 siblings, 2 replies; 6+ messages in thread
From: Steve Sakoman @ 2020-07-02 18:16 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: Patches and discussions about the oe-core layer
On Thu, Jul 2, 2020 at 8:08 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
>
> On Wed, Jul 1, 2020 at 9:41 PM Steve Sakoman <steve@sakoman.com> wrote:
> >
> > The following changes since commit 1a98936830ba468d63e2e49d766add9e9cb75998:
> >
> > gstreamer1.0-plugins-bad: add support for vdpau (2020-06-23 04:33:47 -1000)
> >
> > are available in the Git repository at:
> >
> > git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next
> > http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-next
> >
> > Alexander Kanavin (1):
> > linux-firmware: upgrade 20200519 -> 20200619
> >
> > Andrej Valek (1):
> > oeqa/runtime/cases/ptest: Make output content path absolute
> >
> > Armin Kuster (2):
> > curl: Security fixes for CVE-2020-{8169/8177}
> > wpa-supplicant: Security fix CVE-2020-12695
> >
> > Changqing Li (1):
> > mime.bbclass: fix post install scriptlet error
> >
> > Chen Qi (1):
> > systemd-serialgetty: do not use BindsTo
> >
> > Konrad Weihmann (2):
> > runqemu: add QB_ROOTFS_EXTRA_OPT parameter
> > testimage: enable ovmf support
> >
> > Lee Chee Yang (2):
> > dbus: fix CVE-2020-12049
> > perl: fix CVE-2020-10543 & CVE-2020-10878
> >
> > Lili Li (1):
> > kernel.bbclass: Fix Module.symvers support
>
> I wouldn't recommend this going back to dunfell. It is papering over
> an issue, and is for a new kernel than we ever used in dunfell.
Your comment is a few hours too late! Richard did the pull earlier today.
Do you recommend that I revert this patch?
Steve
> > Ming Liu (1):
> > u-boot: introduce UBOOT_INITIAL_ENV
> >
> > Nicolas Dechesne (1):
> > checklayer: parse LAYERDEPENDS with bb.utils.explode_dep_versions2()
> >
> > Pierre-Jean Texier (1):
> > ell: upgrade 0.31 -> 0.32
> >
> > Richard Purdie (7):
> > pseudo: Fix attr errors due to incorrect library resolution issues
> > oeqa/selftest/runcmd: Add better debug for thread count mismatch
> > failures
> > oeqa/utils/command: Improve stdin handling in runCmd
> > scripts/install-buildtools: Update to 3.2 M1 buildtools
> > scripts/install-buildtools: Handle new format checksum files
> > oeqa/selftest: Clean up separate builddir in success case when
> > non-threaded
> > populate_sdk_ext: Fix to use python3, not python
> >
> > Steve Sakoman (1):
> > u-boot: move redundant-yyloc-global patch to u-boot-common.inc
> >
> > meta/classes/kernel.bbclass | 2 +-
> > meta/classes/mime.bbclass | 13 +-
> > meta/classes/populate_sdk_ext.bbclass | 2 +-
> > meta/classes/qemuboot.bbclass | 5 +
> > meta/classes/testimage.bbclass | 6 +-
> > meta/lib/oeqa/core/target/qemu.py | 6 +-
> > meta/lib/oeqa/core/utils/concurrencytest.py | 23 +--
> > meta/lib/oeqa/runtime/cases/ptest.py | 4 +
> > meta/lib/oeqa/selftest/cases/runcmd.py | 9 +-
> > meta/lib/oeqa/selftest/context.py | 36 ++++-
> > meta/lib/oeqa/utils/commands.py | 4 +-
> > meta/lib/oeqa/utils/qemurunner.py | 5 +-
> > .../remove-redundant-yyloc-global.patch | 0
> > meta/recipes-bsp/u-boot/u-boot-common.inc | 1 +
> > .../u-boot/u-boot-tools_2020.01.bb | 2 -
> > meta/recipes-bsp/u-boot/u-boot.inc | 55 ++++---
> > ...allow-event-subscriptions-with-URLs-.patch | 151 +++++++++++++++++
> > ...nt-message-generation-using-a-long-U.patch | 62 +++++++
> > ...HTTP-initiation-failures-for-events-.patch | 50 ++++++
> > .../wpa-supplicant/wpa-supplicant_2.9.bb | 5 +-
> > .../dbus/dbus/CVE-2020-12049.patch | 78 +++++++++
> > meta/recipes-core/dbus/dbus_1.12.16.bb | 1 +
> > .../ell/{ell_0.31.bb => ell_0.32.bb} | 3 +-
> > .../systemd-serialgetty/serial-getty@.service | 3 +-
> > .../perl/files/CVE-2020-10543.patch | 36 +++++
> > .../perl/files/CVE-2020-10878_1.patch | 152 ++++++++++++++++++
> > .../perl/files/CVE-2020-10878_2.patch | 36 +++++
> > meta/recipes-devtools/perl/perl_5.30.1.bb | 3 +
> > .../pseudo/files/xattr_version.patch | 54 +++++++
> > meta/recipes-devtools/pseudo/pseudo_git.bb | 1 +
> > ...20200519.bb => linux-firmware_20200619.bb} | 4 +-
> > .../curl/curl/CVE-2020-8169.patch | 140 ++++++++++++++++
> > .../curl/curl/CVE-2020-8177.patch | 67 ++++++++
> > meta/recipes-support/curl/curl_7.69.1.bb | 2 +
> > scripts/install-buildtools | 10 +-
> > scripts/lib/checklayer/__init__.py | 7 +-
> > scripts/runqemu | 11 +-
> > 37 files changed, 979 insertions(+), 70 deletions(-)
> > rename meta/recipes-bsp/u-boot/{u-boot-tools => files}/remove-redundant-yyloc-global.patch (100%)
> > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-WPS-UPnP-Do-not-allow-event-subscriptions-with-URLs-.patch
> > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0002-WPS-UPnP-Fix-event-message-generation-using-a-long-U.patch
> > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch
> > create mode 100644 meta/recipes-core/dbus/dbus/CVE-2020-12049.patch
> > rename meta/recipes-core/ell/{ell_0.31.bb => ell_0.32.bb} (83%)
> > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10543.patch
> > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_1.patch
> > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_2.patch
> > create mode 100644 meta/recipes-devtools/pseudo/files/xattr_version.patch
> > rename meta/recipes-kernel/linux-firmware/{linux-firmware_20200519.bb => linux-firmware_20200619.bb} (99%)
> > create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8169.patch
> > create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8177.patch
> >
> > --
> > 2.17.1
> >
> >
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core][dunfell 00/22] Pull request (cover letter only)
2020-07-02 18:16 ` Steve Sakoman
@ 2020-07-02 18:19 ` Bruce Ashfield
[not found] ` <161E0270090CD0C2.18513@lists.openembedded.org>
1 sibling, 0 replies; 6+ messages in thread
From: Bruce Ashfield @ 2020-07-02 18:19 UTC (permalink / raw)
To: Steve Sakoman; +Cc: Patches and discussions about the oe-core layer
On Thu, Jul 2, 2020 at 2:16 PM Steve Sakoman <steve@sakoman.com> wrote:
>
> On Thu, Jul 2, 2020 at 8:08 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
> >
> > On Wed, Jul 1, 2020 at 9:41 PM Steve Sakoman <steve@sakoman.com> wrote:
> > >
> > > The following changes since commit 1a98936830ba468d63e2e49d766add9e9cb75998:
> > >
> > > gstreamer1.0-plugins-bad: add support for vdpau (2020-06-23 04:33:47 -1000)
> > >
> > > are available in the Git repository at:
> > >
> > > git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next
> > > http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-next
> > >
> > > Alexander Kanavin (1):
> > > linux-firmware: upgrade 20200519 -> 20200619
> > >
> > > Andrej Valek (1):
> > > oeqa/runtime/cases/ptest: Make output content path absolute
> > >
> > > Armin Kuster (2):
> > > curl: Security fixes for CVE-2020-{8169/8177}
> > > wpa-supplicant: Security fix CVE-2020-12695
> > >
> > > Changqing Li (1):
> > > mime.bbclass: fix post install scriptlet error
> > >
> > > Chen Qi (1):
> > > systemd-serialgetty: do not use BindsTo
> > >
> > > Konrad Weihmann (2):
> > > runqemu: add QB_ROOTFS_EXTRA_OPT parameter
> > > testimage: enable ovmf support
> > >
> > > Lee Chee Yang (2):
> > > dbus: fix CVE-2020-12049
> > > perl: fix CVE-2020-10543 & CVE-2020-10878
> > >
> > > Lili Li (1):
> > > kernel.bbclass: Fix Module.symvers support
> >
> > I wouldn't recommend this going back to dunfell. It is papering over
> > an issue, and is for a new kernel than we ever used in dunfell.
>
> Your comment is a few hours too late! Richard did the pull earlier today.
>
> Do you recommend that I revert this patch?
It can stay for now. I'm looking at the best approach, we should
either do a 2nd copy task or move the copy until after the modules
build .. in the former solution the test is ok, since we'll pickup
the file later. In the latter, it needs to be reverted.
I just have to confirm that nothing in the module build step actually
needs the parts of the shared workdir.
Bruce
>
> Steve
>
> > > Ming Liu (1):
> > > u-boot: introduce UBOOT_INITIAL_ENV
> > >
> > > Nicolas Dechesne (1):
> > > checklayer: parse LAYERDEPENDS with bb.utils.explode_dep_versions2()
> > >
> > > Pierre-Jean Texier (1):
> > > ell: upgrade 0.31 -> 0.32
> > >
> > > Richard Purdie (7):
> > > pseudo: Fix attr errors due to incorrect library resolution issues
> > > oeqa/selftest/runcmd: Add better debug for thread count mismatch
> > > failures
> > > oeqa/utils/command: Improve stdin handling in runCmd
> > > scripts/install-buildtools: Update to 3.2 M1 buildtools
> > > scripts/install-buildtools: Handle new format checksum files
> > > oeqa/selftest: Clean up separate builddir in success case when
> > > non-threaded
> > > populate_sdk_ext: Fix to use python3, not python
> > >
> > > Steve Sakoman (1):
> > > u-boot: move redundant-yyloc-global patch to u-boot-common.inc
> > >
> > > meta/classes/kernel.bbclass | 2 +-
> > > meta/classes/mime.bbclass | 13 +-
> > > meta/classes/populate_sdk_ext.bbclass | 2 +-
> > > meta/classes/qemuboot.bbclass | 5 +
> > > meta/classes/testimage.bbclass | 6 +-
> > > meta/lib/oeqa/core/target/qemu.py | 6 +-
> > > meta/lib/oeqa/core/utils/concurrencytest.py | 23 +--
> > > meta/lib/oeqa/runtime/cases/ptest.py | 4 +
> > > meta/lib/oeqa/selftest/cases/runcmd.py | 9 +-
> > > meta/lib/oeqa/selftest/context.py | 36 ++++-
> > > meta/lib/oeqa/utils/commands.py | 4 +-
> > > meta/lib/oeqa/utils/qemurunner.py | 5 +-
> > > .../remove-redundant-yyloc-global.patch | 0
> > > meta/recipes-bsp/u-boot/u-boot-common.inc | 1 +
> > > .../u-boot/u-boot-tools_2020.01.bb | 2 -
> > > meta/recipes-bsp/u-boot/u-boot.inc | 55 ++++---
> > > ...allow-event-subscriptions-with-URLs-.patch | 151 +++++++++++++++++
> > > ...nt-message-generation-using-a-long-U.patch | 62 +++++++
> > > ...HTTP-initiation-failures-for-events-.patch | 50 ++++++
> > > .../wpa-supplicant/wpa-supplicant_2.9.bb | 5 +-
> > > .../dbus/dbus/CVE-2020-12049.patch | 78 +++++++++
> > > meta/recipes-core/dbus/dbus_1.12.16.bb | 1 +
> > > .../ell/{ell_0.31.bb => ell_0.32.bb} | 3 +-
> > > .../systemd-serialgetty/serial-getty@.service | 3 +-
> > > .../perl/files/CVE-2020-10543.patch | 36 +++++
> > > .../perl/files/CVE-2020-10878_1.patch | 152 ++++++++++++++++++
> > > .../perl/files/CVE-2020-10878_2.patch | 36 +++++
> > > meta/recipes-devtools/perl/perl_5.30.1.bb | 3 +
> > > .../pseudo/files/xattr_version.patch | 54 +++++++
> > > meta/recipes-devtools/pseudo/pseudo_git.bb | 1 +
> > > ...20200519.bb => linux-firmware_20200619.bb} | 4 +-
> > > .../curl/curl/CVE-2020-8169.patch | 140 ++++++++++++++++
> > > .../curl/curl/CVE-2020-8177.patch | 67 ++++++++
> > > meta/recipes-support/curl/curl_7.69.1.bb | 2 +
> > > scripts/install-buildtools | 10 +-
> > > scripts/lib/checklayer/__init__.py | 7 +-
> > > scripts/runqemu | 11 +-
> > > 37 files changed, 979 insertions(+), 70 deletions(-)
> > > rename meta/recipes-bsp/u-boot/{u-boot-tools => files}/remove-redundant-yyloc-global.patch (100%)
> > > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-WPS-UPnP-Do-not-allow-event-subscriptions-with-URLs-.patch
> > > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0002-WPS-UPnP-Fix-event-message-generation-using-a-long-U.patch
> > > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch
> > > create mode 100644 meta/recipes-core/dbus/dbus/CVE-2020-12049.patch
> > > rename meta/recipes-core/ell/{ell_0.31.bb => ell_0.32.bb} (83%)
> > > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10543.patch
> > > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_1.patch
> > > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_2.patch
> > > create mode 100644 meta/recipes-devtools/pseudo/files/xattr_version.patch
> > > rename meta/recipes-kernel/linux-firmware/{linux-firmware_20200519.bb => linux-firmware_20200619.bb} (99%)
> > > create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8169.patch
> > > create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8177.patch
> > >
> > > --
> > > 2.17.1
> > >
> > >
> >
> >
> >
> > --
> > - Thou shalt not follow the NULL pointer, for chaos and madness await
> > thee at its end
> > - "Use the force Harry" - Gandalf, Star Trek II
--
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core][dunfell 00/22] Pull request (cover letter only)
[not found] ` <161E0270090CD0C2.18513@lists.openembedded.org>
@ 2020-07-02 18:24 ` Bruce Ashfield
0 siblings, 0 replies; 6+ messages in thread
From: Bruce Ashfield @ 2020-07-02 18:24 UTC (permalink / raw)
To: Bruce Ashfield
Cc: Steve Sakoman, Patches and discussions about the oe-core layer
On Thu, Jul 2, 2020 at 2:20 PM Bruce Ashfield via
lists.openembedded.org
<bruce.ashfield=gmail.com@lists.openembedded.org> wrote:
>
> On Thu, Jul 2, 2020 at 2:16 PM Steve Sakoman <steve@sakoman.com> wrote:
> >
> > On Thu, Jul 2, 2020 at 8:08 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
> > >
> > > On Wed, Jul 1, 2020 at 9:41 PM Steve Sakoman <steve@sakoman.com> wrote:
> > > >
> > > > The following changes since commit 1a98936830ba468d63e2e49d766add9e9cb75998:
> > > >
> > > > gstreamer1.0-plugins-bad: add support for vdpau (2020-06-23 04:33:47 -1000)
> > > >
> > > > are available in the Git repository at:
> > > >
> > > > git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next
> > > > http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-next
> > > >
> > > > Alexander Kanavin (1):
> > > > linux-firmware: upgrade 20200519 -> 20200619
> > > >
> > > > Andrej Valek (1):
> > > > oeqa/runtime/cases/ptest: Make output content path absolute
> > > >
> > > > Armin Kuster (2):
> > > > curl: Security fixes for CVE-2020-{8169/8177}
> > > > wpa-supplicant: Security fix CVE-2020-12695
> > > >
> > > > Changqing Li (1):
> > > > mime.bbclass: fix post install scriptlet error
> > > >
> > > > Chen Qi (1):
> > > > systemd-serialgetty: do not use BindsTo
> > > >
> > > > Konrad Weihmann (2):
> > > > runqemu: add QB_ROOTFS_EXTRA_OPT parameter
> > > > testimage: enable ovmf support
> > > >
> > > > Lee Chee Yang (2):
> > > > dbus: fix CVE-2020-12049
> > > > perl: fix CVE-2020-10543 & CVE-2020-10878
> > > >
> > > > Lili Li (1):
> > > > kernel.bbclass: Fix Module.symvers support
> > >
> > > I wouldn't recommend this going back to dunfell. It is papering over
> > > an issue, and is for a new kernel than we ever used in dunfell.
> >
> > Your comment is a few hours too late! Richard did the pull earlier today.
> >
> > Do you recommend that I revert this patch?
>
> It can stay for now. I'm looking at the best approach, we should
> either do a 2nd copy task or move the copy until after the modules
> build .. in the former solution the test is ok, since we'll pickup
> the file later. In the latter, it needs to be reverted.
>
> I just have to confirm that nothing in the module build step actually
> needs the parts of the shared workdir.
I've confirmed that the module build will do a 2nd copy of the
Module.symvers, so we are ok in the end.
Chalk this one up to "keep an eye out for changes for newer kernels
than existed in the dunfell timeframe", and I'll try and watch for
these more closely in the future.
Bruce
>
> Bruce
>
> >
> > Steve
> >
> > > > Ming Liu (1):
> > > > u-boot: introduce UBOOT_INITIAL_ENV
> > > >
> > > > Nicolas Dechesne (1):
> > > > checklayer: parse LAYERDEPENDS with bb.utils.explode_dep_versions2()
> > > >
> > > > Pierre-Jean Texier (1):
> > > > ell: upgrade 0.31 -> 0.32
> > > >
> > > > Richard Purdie (7):
> > > > pseudo: Fix attr errors due to incorrect library resolution issues
> > > > oeqa/selftest/runcmd: Add better debug for thread count mismatch
> > > > failures
> > > > oeqa/utils/command: Improve stdin handling in runCmd
> > > > scripts/install-buildtools: Update to 3.2 M1 buildtools
> > > > scripts/install-buildtools: Handle new format checksum files
> > > > oeqa/selftest: Clean up separate builddir in success case when
> > > > non-threaded
> > > > populate_sdk_ext: Fix to use python3, not python
> > > >
> > > > Steve Sakoman (1):
> > > > u-boot: move redundant-yyloc-global patch to u-boot-common.inc
> > > >
> > > > meta/classes/kernel.bbclass | 2 +-
> > > > meta/classes/mime.bbclass | 13 +-
> > > > meta/classes/populate_sdk_ext.bbclass | 2 +-
> > > > meta/classes/qemuboot.bbclass | 5 +
> > > > meta/classes/testimage.bbclass | 6 +-
> > > > meta/lib/oeqa/core/target/qemu.py | 6 +-
> > > > meta/lib/oeqa/core/utils/concurrencytest.py | 23 +--
> > > > meta/lib/oeqa/runtime/cases/ptest.py | 4 +
> > > > meta/lib/oeqa/selftest/cases/runcmd.py | 9 +-
> > > > meta/lib/oeqa/selftest/context.py | 36 ++++-
> > > > meta/lib/oeqa/utils/commands.py | 4 +-
> > > > meta/lib/oeqa/utils/qemurunner.py | 5 +-
> > > > .../remove-redundant-yyloc-global.patch | 0
> > > > meta/recipes-bsp/u-boot/u-boot-common.inc | 1 +
> > > > .../u-boot/u-boot-tools_2020.01.bb | 2 -
> > > > meta/recipes-bsp/u-boot/u-boot.inc | 55 ++++---
> > > > ...allow-event-subscriptions-with-URLs-.patch | 151 +++++++++++++++++
> > > > ...nt-message-generation-using-a-long-U.patch | 62 +++++++
> > > > ...HTTP-initiation-failures-for-events-.patch | 50 ++++++
> > > > .../wpa-supplicant/wpa-supplicant_2.9.bb | 5 +-
> > > > .../dbus/dbus/CVE-2020-12049.patch | 78 +++++++++
> > > > meta/recipes-core/dbus/dbus_1.12.16.bb | 1 +
> > > > .../ell/{ell_0.31.bb => ell_0.32.bb} | 3 +-
> > > > .../systemd-serialgetty/serial-getty@.service | 3 +-
> > > > .../perl/files/CVE-2020-10543.patch | 36 +++++
> > > > .../perl/files/CVE-2020-10878_1.patch | 152 ++++++++++++++++++
> > > > .../perl/files/CVE-2020-10878_2.patch | 36 +++++
> > > > meta/recipes-devtools/perl/perl_5.30.1.bb | 3 +
> > > > .../pseudo/files/xattr_version.patch | 54 +++++++
> > > > meta/recipes-devtools/pseudo/pseudo_git.bb | 1 +
> > > > ...20200519.bb => linux-firmware_20200619.bb} | 4 +-
> > > > .../curl/curl/CVE-2020-8169.patch | 140 ++++++++++++++++
> > > > .../curl/curl/CVE-2020-8177.patch | 67 ++++++++
> > > > meta/recipes-support/curl/curl_7.69.1.bb | 2 +
> > > > scripts/install-buildtools | 10 +-
> > > > scripts/lib/checklayer/__init__.py | 7 +-
> > > > scripts/runqemu | 11 +-
> > > > 37 files changed, 979 insertions(+), 70 deletions(-)
> > > > rename meta/recipes-bsp/u-boot/{u-boot-tools => files}/remove-redundant-yyloc-global.patch (100%)
> > > > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-WPS-UPnP-Do-not-allow-event-subscriptions-with-URLs-.patch
> > > > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0002-WPS-UPnP-Fix-event-message-generation-using-a-long-U.patch
> > > > create mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch
> > > > create mode 100644 meta/recipes-core/dbus/dbus/CVE-2020-12049.patch
> > > > rename meta/recipes-core/ell/{ell_0.31.bb => ell_0.32.bb} (83%)
> > > > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10543.patch
> > > > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_1.patch
> > > > create mode 100644 meta/recipes-devtools/perl/files/CVE-2020-10878_2.patch
> > > > create mode 100644 meta/recipes-devtools/pseudo/files/xattr_version.patch
> > > > rename meta/recipes-kernel/linux-firmware/{linux-firmware_20200519.bb => linux-firmware_20200619.bb} (99%)
> > > > create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8169.patch
> > > > create mode 100644 meta/recipes-support/curl/curl/CVE-2020-8177.patch
> > > >
> > > > --
> > > > 2.17.1
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > - Thou shalt not follow the NULL pointer, for chaos and madness await
> > > thee at its end
> > > - "Use the force Harry" - Gandalf, Star Trek II
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>
--
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II
^ permalink raw reply [flat|nested] 6+ messages in thread
* [OE-core][dunfell 00/22] Pull request (cover letter only)
@ 2020-09-02 14:47 Steve Sakoman
0 siblings, 0 replies; 6+ messages in thread
From: Steve Sakoman @ 2020-09-02 14:47 UTC (permalink / raw)
To: openembedded-core
The following changes since commit bec0a45393d968251059f5075add2cf633aecd1a:
runqemu: Check gtk or sdl option is passed together with gl or gl-es options. (2020-08-19 04:11:14 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-next
Alexander Kanavin (2):
linux-firmware: upgrade 20200619 -> 20200721
linux-firmware: update 20200721 -> 20200817
Armin Kuster (1):
bind: update to 9.11.22 ESV
Bruce Ashfield (3):
linux-yocto/5.4: update to v5.4.59
linux-yocto/5.4: update to v5.4.60
linux-yocto/5.4: update to v5.4.61
Changqing Li (1):
gpgme: fix multilib header conflict
Guillaume Champagne (1):
weston: add missing packageconfigs
Joshua Watt (1):
oeqa: runtime_tests: Extra GPG debugging
Mark Hatle (2):
package_tar.bbclass: Sync to the other package_* classes
package.bbclass: Sort shlib2 output for hash equivalency
Martin Jansa (1):
perf: backport a fix for confusing non-fatal error
Ming Liu (4):
conf/machine: set UBOOT_MACHINE for qemumips and qemumips64
multilib.conf: add u-boot to NON_MULTILIB_RECIPES
libubootenv: uprev to v0.3
libubootenv: inherit uboot-config
Peter A. Bigot (1):
bluez5: fix builds that require ell support
Rasmus Villemoes (1):
kernel.bbclass: run do_symlink_kernsrc before do_patch
Richard Purdie (1):
runqemu: Show an error for conflicting graphics options
TeohJayShen (2):
oeqa/manual/bsp-hw.json : remove shutdown_system test
oeqa/manual/bsp-hw.json : remove
X_server_can_start_up_with_runlevel_5_boot test
Vijai Kumar K (1):
image_types_wic: Add ASSUME_PROVIDED to WICVARS
meta/classes/image_types_wic.bbclass | 3 +-
meta/classes/kernel.bbclass | 2 +-
meta/classes/nopackages.bbclass | 1 +
meta/classes/package.bbclass | 2 +-
meta/classes/package_tar.bbclass | 6 +--
meta/conf/machine/qemumips.conf | 2 +
meta/conf/machine/qemumips64.conf | 2 +
meta/conf/multilib.conf | 2 +-
meta/lib/oeqa/manual/bsp-hw.json | 44 -------------------
meta/lib/oeqa/selftest/cases/runtime_test.py | 2 +-
...{libubootenv_0.2.bb => libubootenv_0.3.bb} | 9 ++--
.../bind/{bind_9.11.21.bb => bind_9.11.22.bb} | 2 +-
meta/recipes-connectivity/bluez5/bluez5.inc | 4 +-
meta/recipes-graphics/wayland/weston_8.0.0.bb | 20 ++++++++-
...20200619.bb => linux-firmware_20200817.bb} | 4 +-
.../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 +++++-----
meta/recipes-kernel/perf/perf.bb | 4 ++
meta/recipes-support/gpgme/gpgme_1.13.1.bb | 6 ++-
scripts/runqemu | 4 ++
21 files changed, 73 insertions(+), 82 deletions(-)
rename meta/recipes-bsp/u-boot/{libubootenv_0.2.bb => libubootenv_0.3.bb} (78%)
rename meta/recipes-connectivity/bind/{bind_9.11.21.bb => bind_9.11.22.bb} (98%)
rename meta/recipes-kernel/linux-firmware/{linux-firmware_20200619.bb => linux-firmware_20200817.bb} (99%)
--
2.17.1
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-09-02 14:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-02 1:41 [OE-core][dunfell 00/22] Pull request (cover letter only) Steve Sakoman
2020-07-02 18:07 ` Bruce Ashfield
2020-07-02 18:16 ` Steve Sakoman
2020-07-02 18:19 ` Bruce Ashfield
[not found] ` <161E0270090CD0C2.18513@lists.openembedded.org>
2020-07-02 18:24 ` Bruce Ashfield
-- strict thread matches above, loose matches on Subject: below --
2020-09-02 14:47 Steve Sakoman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox