All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denis@denix.org>
To: afd@ti.com
Cc: Ryan Eatmon <reatmon@ti.com>, meta-ti@lists.yoctoproject.org
Subject: Re: [meta-ti][scarthgap/master][PATCH 1/3] meta-ti: Remove bsp-ti-6_1 and bsp-bb_org-6_1 support
Date: Fri, 27 Jun 2025 17:36:51 -0400	[thread overview]
Message-ID: <20250627213651.GP18383@denix.org> (raw)
In-Reply-To: <184D00FC97255535.20968@lists.yoctoproject.org>

BTW, I was going to test these changes, but looks like it is very 
Scarthgap-specific, due to all the UNPACKDIR/WORKDIR/S, new FIT
image framework and new QA tests, and related fixes, so it won't
apply at all.


On Fri, Jun 27, 2025 at 04:41:49PM -0400, Denys Dmytriyenko wrote:
> On Fri, Jun 27, 2025 at 02:24:52PM -0500, Andrew Davis via lists.yoctoproject.org wrote:
> > Remove support for the v6.1 TI and Beagle BSPs. This was originally
> > split into meta-ti-bsp and meta-beagle changes, but there are some
> > hidden interdependencies that made that more painful than needed.
> > Remove v6.1 support from both BSP layers here.
> > 
> > This includes packages specific to those BSPs:
> >  - TI and BB.org v6.1 Linux kernel
> >  - TI and BB.org 2023.04 U-Boot
> >  - Rogue GPU driver 23.3 and Mesa 22.3.5
> > 
> > Signed-off-by: Andrew Davis <afd@ti.com>
> > ---
> 
> [snip]
> 
> > diff --git a/meta-beagle/conf/machine/beaglebone-ai64.conf b/meta-beagle/conf/machine/beaglebone-ai64.conf
> > index c7d72590..3da6e878 100644
> > --- a/meta-beagle/conf/machine/beaglebone-ai64.conf
> > +++ b/meta-beagle/conf/machine/beaglebone-ai64.conf
> > @@ -12,12 +12,6 @@ IMAGE_SR2_HS_SE_FILES = ""
> >  
> >  UBOOT_MACHINE = "j721e_beagleboneai64_a72_defconfig"
> >  
> > -UBOOT_MACHINE:bsp-ti-6_1 = "j721e_evm_a72_config"
> > -UBOOT_CONFIG_FRAGMENTS:bsp-ti-6_1 = "j721e_beagleboneai64_a72.config"
> > -
> > -UBOOT_MACHINE:bsp-bb_org-6_1 = "j721e_evm_a72_config"
> > -UBOOT_CONFIG_FRAGMENTS:bsp-bb_org-6_1 = "j721e_beagleboneai64_a72.config"
> > -
> >  SPL_BINARY = "tispl.bin_unsigned"
> >  
> >  KERNEL_DEVICETREE_PREFIX = " \
> > @@ -32,23 +26,4 @@ ti/k3-j721e-evm-quad-port-eth-exp.dtbo \
> >  ti/k3-j721e-sk.dtb \
> >  "
> >  
> > -KERNEL_DEVICETREE:append:bsp-bb_org-6_1 = " \
> > -ti/k3-j721e-beagleboneai64-dsi-rpi-7inch-panel.dtbo \
> > -ti/k3-j721e-common-proc-board-infotainment.dtbo \
> > -ti/k3-j721e-evm-csi2-ov5640.dtbo \
> > -ti/k3-j721e-evm-fusion.dtbo \
> > -ti/k3-j721e-evm-pcie0-ep.dtbo \
> > -ti/k3-j721e-evm-virt-mac-client.dtbo \
> > -ti/k3-j721e-sk-csi2-ov5640.dtbo \
> > -ti/k3-j721e-sk-csi2-rpi-imx219.dtbo \
> > -ti/k3-j721e-sk-fusion.dtbo \
> > -ti/k3-j721e-sk-rpi-hdr-ehrpwm.dtbo \
> > -"
> > -
> >  MACHINE_GUI_CLASS = "bigscreen"
> > -
> > -# TI has moved a driver out of its kernel tree and into an out of tree module.
> > -# We need to not include that for older kernels since the module is still in
> > -# the kernel.
> > -TI_VXE_VXD_DRIVER:bsp-bb_org-6_6 = ""
> > -TI_VXE_VXD_DRIVER:bsp-bb_org-6_1 = ""
> 
> Looks like 6.6 override here got removed by accident along with 6.1
> 
> 
> [snip]
> 
> 
> > diff --git a/meta-ti-bsp/conf/machine/include/j721e.inc b/meta-ti-bsp/conf/machine/include/j721e.inc
> > index 30aa2a69..5833c322 100644
> > --- a/meta-ti-bsp/conf/machine/include/j721e.inc
> > +++ b/meta-ti-bsp/conf/machine/include/j721e.inc
> > @@ -38,6 +38,5 @@ OPTEEMACHINE = "k3-j721e"
> >  
> >  TI_VXE_VXD_DRIVER = "ti-vxe-vxd-driver"
> >  TI_VXE_VXD_DRIVER:bsp-ti-6_6 = ""
> > -TI_VXE_VXD_DRIVER:bsp-ti-6_1 = ""
> 
> Here, the change is limited to 6.1 only, keeping 6.6
> 
> -- 
> Denys


      parent reply	other threads:[~2025-06-27 21:37 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-27 19:24 [meta-ti][scarthgap/master][PATCH 1/3] meta-ti: Remove bsp-ti-6_1 and bsp-bb_org-6_1 support Andrew Davis
2025-06-27 19:24 ` [meta-ti][scarthgap/master][PATCH 2/3] meta-beagle: Remove selectable DT_VENDOR_PREFIX Andrew Davis
2025-06-27 20:43   ` Denys Dmytriyenko
2025-06-27 19:24 ` [meta-ti][scarthgap/master][PATCH 3/3] meta-beagle: beagle-bsp.inc: Fix versions in comments Andrew Davis
2025-06-27 20:44   ` Denys Dmytriyenko
2025-06-27 20:41 ` [meta-ti][scarthgap/master][PATCH 1/3] meta-ti: Remove bsp-ti-6_1 and bsp-bb_org-6_1 support Denys Dmytriyenko
     [not found] ` <184D00FC97255535.20968@lists.yoctoproject.org>
2025-06-27 21:36   ` Denys Dmytriyenko [this message]

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=20250627213651.GP18383@denix.org \
    --to=denis@denix.org \
    --cc=afd@ti.com \
    --cc=meta-ti@lists.yoctoproject.org \
    --cc=reatmon@ti.com \
    /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 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.