Openembedded Core Discussions
 help / color / mirror / Atom feed
From: bruce.ashfield@gmail.com
To: richard.purdie@linuxfoundation.org
Cc: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/13] kernel-yocto: consolidated pull request
Date: Thu,  4 Aug 2022 18:57:37 -0400	[thread overview]
Message-ID: <cover.1659653543.git.bruce.ashfield@gmail.com> (raw)

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

As I mentioned earlier today, I've built and booted the 5.19 kernel
on all architectures, have run core-iamge-kernel-dev, core-image-sato
and validated musl.

At this point, we need wider coverage to scare out the remaining
gremlins.

I'm also sending update to 5.10 and 5.15 in the pull request, since
these are the retbleed stable updates, and I didn't want to sit on
them any longer. These are of course independenct of the 5.19 work.

I found one issue with vboxguestdrivers in meta-oe agains the new
kernel/headers, and I've sent a patch to that mailing list. I also
had to fix lttng-modules (as usual) and have sent a patch to that
mailing list as well.

devsrc needed a few tweaks as well, and they are included in the
series.

Note: I've mixed in the poky / meta-yocto patches as part of this
pull request, just for ease of sending it for wider testing and to
see if I missed any references to 5.10 or have left any else
dangling.

Cheers,

Bruce

The following changes since commit 25248acfdf92465b360ca464725b679ac5200d8d:

  initscripts: run umountnfs as a KILL script (2022-07-23 13:55:26 +0100)

are available in the Git repository at:

  git://git.yoctoproject.org/poky-contrib zedd/kernel
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (13):
  linux-yocto/5.15: update to v5.15.58
  linux-yocto/5.10: update to v5.10.134
  linux-yocto-rt/5.15: update to -rt48 (and fix -stable merge)
  linux-libc-headers: update to v5.19
  linux-yocto: introduce v5.19 reference kernel recipes
  meta/conf: update preferred linux-yocto version to v5.19
  kernel-devsrc: support arm v5.19+ on target build
  kernel-devsrc: support powerpc on v5.19+
  lttng-modules: fix build against mips and v5.19 kernel
  linux-yocto: drop v5.10 reference kernel recipes
  poky: update preferred version to v5.19
  poky: change preferred kernel version to 5.15 in poky-alt
  yocto-bsp: drop v5.10 bbappend and create 5.19 placeholder

 .../include/poky-distro-alt-test-config.inc   |   2 +-
 meta-poky/conf/distro/poky-tiny.conf          |   2 +-
 meta-poky/conf/distro/poky.conf               |   4 +-
 .../linux/linux-yocto_5.10.bbappend           |  23 ----
 .../linux/linux-yocto_5.19.bbappend           |  23 ++++
 meta/conf/distro/include/tcmode-default.inc   |   2 +-
 meta/conf/machine/include/x86/x86-base.inc    |   2 +-
 meta/conf/machine/qemuarmv5.conf              |   2 +-
 ...ers_5.16.bb => linux-libc-headers_5.19.bb} |   4 +-
 meta/recipes-kernel/linux/kernel-devsrc.bb    |  17 +++
 .../linux/linux-yocto-rt_5.15.bb              |   6 +-
 ...octo-rt_5.10.bb => linux-yocto-rt_5.19.bb} |  10 +-
 .../linux/linux-yocto-tiny_5.15.bb            |   6 +-
 ...-tiny_5.10.bb => linux-yocto-tiny_5.19.bb} |  14 +--
 meta/recipes-kernel/linux/linux-yocto_5.15.bb |  26 ++---
 ...inux-yocto_5.10.bb => linux-yocto_5.19.bb} |  66 ++++++-----
 ...tracepoints-condtional-on-CONFIG_COM.patch | 103 ++++++++++++++++++
 .../lttng/lttng-modules_2.13.4.bb             |   1 +
 18 files changed, 222 insertions(+), 91 deletions(-)
 delete mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_5.10.bbappend
 create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_5.19.bbappend
 rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers_5.16.bb => linux-libc-headers_5.19.bb} (81%)
 rename meta/recipes-kernel/linux/{linux-yocto-rt_5.10.bb => linux-yocto-rt_5.19.bb} (87%)
 rename meta/recipes-kernel/linux/{linux-yocto-tiny_5.10.bb => linux-yocto-tiny_5.19.bb} (59%)
 rename meta/recipes-kernel/linux/{linux-yocto_5.10.bb => linux-yocto_5.19.bb} (47%)
 create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0001-compaction-make-tracepoints-condtional-on-CONFIG_COM.patch

-- 
2.19.1



             reply	other threads:[~2022-08-04 22:57 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-04 22:57 bruce.ashfield [this message]
2022-08-04 22:57 ` [PATCH 01/13] linux-yocto/5.15: update to v5.15.58 bruce.ashfield
2022-08-04 22:57 ` [PATCH 02/13] linux-yocto/5.10: update to v5.10.134 bruce.ashfield
2022-08-04 22:57 ` [PATCH 03/13] linux-yocto-rt/5.15: update to -rt48 (and fix -stable merge) bruce.ashfield
2022-08-04 22:57 ` [PATCH 04/13] linux-libc-headers: update to v5.19 bruce.ashfield
2022-08-04 22:57 ` [PATCH 05/13] linux-yocto: introduce v5.19 reference kernel recipes bruce.ashfield
2022-08-04 22:57 ` [PATCH 06/13] meta/conf: update preferred linux-yocto version to v5.19 bruce.ashfield
2022-08-04 22:57 ` [PATCH 07/13] kernel-devsrc: support arm v5.19+ on target build bruce.ashfield
2022-08-04 22:57 ` [PATCH 08/13] kernel-devsrc: support powerpc on v5.19+ bruce.ashfield
2022-08-04 22:57 ` [PATCH 09/13] lttng-modules: fix build against mips and v5.19 kernel bruce.ashfield
2022-08-04 22:57 ` [PATCH 10/13] linux-yocto: drop v5.10 reference kernel recipes bruce.ashfield
2022-08-04 22:57 ` [PATCH 11/13] poky: update preferred version to v5.19 bruce.ashfield
2022-08-04 22:57 ` [PATCH 12/13] poky: change preferred kernel version to 5.15 in poky-alt bruce.ashfield
2022-08-04 22:57 ` [PATCH 13/13] yocto-bsp: drop v5.10 bbappend and create 5.19 placeholder bruce.ashfield
2022-08-08  7:38 ` [PATCH 00/13] kernel-yocto: consolidated pull request Richard Purdie
2022-08-08 13:01   ` Bruce Ashfield
2022-08-08 13:08     ` Richard Purdie
2022-08-08 13:12       ` Bruce Ashfield
2022-08-08 13:20         ` [OE-core] " Alexander Kanavin
2022-08-08 18:34       ` Alexander Kanavin
2022-08-08 16:14   ` Khem Raj
2022-08-08 17:10     ` Bruce Ashfield
     [not found]     ` <17096DCB97B08A15.24862@lists.openembedded.org>
2022-08-08 17:21       ` Bruce Ashfield
2022-08-08 17:27         ` Khem Raj
2022-08-08 18:07     ` Bruce Ashfield
2022-08-08 18:16       ` Khem Raj
2022-08-09  3:44   ` Bruce Ashfield
2022-08-09 20:00     ` Richard Purdie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1659653543.git.bruce.ashfield@gmail.com \
    --to=bruce.ashfield@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=richard.purdie@linuxfoundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox