All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ti][master/kirkstone][PATCH v6 0/3] Kernel and u-boot LTS
@ 2023-03-30 21:33 Ryan Eatmon
  2023-03-30 21:33 ` [meta-ti][master/kirkstone][PATCH v6 1/3] linux-ti-*: Add filtering for which dtb/dtbo to include Ryan Eatmon
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Ryan Eatmon @ 2023-03-30 21:33 UTC (permalink / raw)
  To: Praneeth Bajjuri, Denys Dmytriyenko, meta-ti

We are preparing for LTS migration to the 6.1 kernel and 2023.04 u-boot
versions.  This series creates the recipes for them as well doing a
little cleanup of how we handle specifying the DTB/DTBO files in the
machine confs.

Ryan Eatmon (3):
  linux-ti-*: Add filtering for which dtb/dtbo to include
  linux-ti-staging: Add 6.1 kernel in prep for LTS migration
  u-boot-ti-staging: Add 2023.04 in prep for LTS migration

v6: - Change to u-boot 2023.04
    - Remove uneeded line from new kernel recipe based on feedback
v5: Add KERNEL_DEVICETREE_DTBMERGE to the prefix logic.
v4: Rebase on top of recent dunfell sync.
v3: Set DEFAULT_PREFERENCE for new rt and systest recipes.
v2: - Do not use the prefix for mainline or next kernels.
    - Add rt and systest variations for the kernel.

 meta-ti-bsp/conf/machine/am57xx-evm.conf      | 22 ++++++-----
 meta-ti-bsp/conf/machine/am62axx-evm.conf     | 20 +++-------
 meta-ti-bsp/conf/machine/am62xx-evm.conf      | 10 +----
 meta-ti-bsp/conf/machine/am62xx-lp-evm.conf   |  9 +++--
 meta-ti-bsp/conf/machine/beagle-x15.conf      |  8 +++-
 meta-ti-bsp/conf/machine/beaglebone.conf      | 13 +++++--
 meta-ti-bsp/conf/machine/dra7xx-evm.conf      | 14 +++----
 meta-ti-bsp/conf/machine/include/am64xx.inc   |  5 +--
 meta-ti-bsp/conf/machine/include/am65xx.inc   | 12 +-----
 meta-ti-bsp/conf/machine/include/ti33x.inc    | 15 ++++++--
 meta-ti-bsp/conf/machine/include/ti43x.inc    | 10 +++--
 meta-ti-bsp/conf/machine/j7200-evm.conf       |  4 +-
 meta-ti-bsp/conf/machine/j721e-evm.conf       | 29 +++-----------
 meta-ti-bsp/conf/machine/j721s2-evm.conf      | 32 +++-------------
 meta-ti-bsp/conf/machine/j784s4-evm.conf      | 33 +++-------------
 meta-ti-bsp/conf/machine/omapl138-lcdk.conf   |  7 +++-
 .../u-boot/u-boot-ti-staging_2023.04.bb       | 11 ++++++
 .../linux/linux-ti-mainline_git.bb            | 23 -----------
 .../recipes-kernel/linux/linux-ti-next_git.bb | 15 --------
 .../linux/linux-ti-staging-6.1/defconfig      |  2 +
 .../linux/linux-ti-staging-6.1/k3/defconfig   |  2 +
 .../linux-ti-staging-6.1/omapl138/defconfig   |  1 +
 .../linux/linux-ti-staging-rt-6.1/defconfig   |  2 +
 .../linux-ti-staging-rt-6.1/k3/defconfig      |  2 +
 .../omapl138/defconfig                        |  1 +
 .../linux/linux-ti-staging-rt_6.1.bb          | 12 ++++++
 .../linux-ti-staging-systest-6.1/defconfig    |  2 +
 .../linux-ti-staging-systest-6.1/k3/defconfig |  2 +
 .../omapl138/defconfig                        |  1 +
 .../linux/linux-ti-staging-systest_6.1.bb     |  7 ++++
 .../linux/linux-ti-staging_5.10.bb            |  1 +
 .../linux/linux-ti-staging_6.1.bb             | 38 +++++++++++++++++++
 .../linux/ti-kernel-devicetree-prefix.inc     | 22 +++++++++++
 33 files changed, 198 insertions(+), 189 deletions(-)
 create mode 100644 meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2023.04.bb
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.1/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.1/k3/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.1/omapl138/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt-6.1/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt-6.1/k3/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt-6.1/omapl138/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt_6.1.bb
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-systest-6.1/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-systest-6.1/k3/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-systest-6.1/omapl138/defconfig
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-systest_6.1.bb
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging_6.1.bb
 create mode 100644 meta-ti-bsp/recipes-kernel/linux/ti-kernel-devicetree-prefix.inc

-- 
2.17.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-03-31  0:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-30 21:33 [meta-ti][master/kirkstone][PATCH v6 0/3] Kernel and u-boot LTS Ryan Eatmon
2023-03-30 21:33 ` [meta-ti][master/kirkstone][PATCH v6 1/3] linux-ti-*: Add filtering for which dtb/dtbo to include Ryan Eatmon
2023-03-31  0:19   ` Denys Dmytriyenko
2023-03-30 21:33 ` [meta-ti][master/kirkstone][PATCH v6 2/3] linux-ti-staging: Add 6.1 kernel in prep for LTS migration Ryan Eatmon
2023-03-31  0:19   ` Denys Dmytriyenko
2023-03-30 21:33 ` [meta-ti][master/kirkstone][PATCH v6 3/3] u-boot-ti-staging: Add 2023.04 " Ryan Eatmon
2023-03-31  0:20   ` Denys Dmytriyenko

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.