All of lore.kernel.org
 help / color / mirror / Atom feed
* [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline
@ 2021-04-12  3:45 praneeth
  2021-04-12  3:58 ` Denys Dmytriyenko
  0 siblings, 1 reply; 6+ messages in thread
From: praneeth @ 2021-04-12  3:45 UTC (permalink / raw)
  To: Praneeth Bajjuri; +Cc: meta-arago, Denys Dmytriyenko

From: Praneeth Bajjuri <praneeth@ti.com>

commit 400d58becfb5 ("branding: Add branding-core-next to aid in migration")
added support of PREFERRED_VERSION as 2020LTS kernel and uboot for branding core.

Now that migration to 2021LTS (i.e 5.10 kernel and 2021.01 u-boot) is added,
removing the PREFERRED_VERSION so that core brand picks the expected
kernel and uboot baseline.

Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
---
 meta-arago-distro/conf/distro/include/branding-core.inc | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc
index 10853d8b..3d259d2d 100644
--- a/meta-arago-distro/conf/distro/include/branding-core.inc
+++ b/meta-arago-distro/conf/distro/include/branding-core.inc
@@ -12,10 +12,5 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1"
 # Raise priority for sample IPC FW images
 ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15"
 
-PREFERRED_VERSION_linux-ti-staging = "5.4%"
-PREFERRED_VERSION_linux-ti-staging-rt = "5.4%"
-PREFERRED_VERSION_linux-ti-staging-systest = "5.4%"
-PREFERRED_VERSION_u-boot-ti-staging = "2020.01%"
-
 # Remove mmip - DRM allocator, KMS sink, Wayland sink need porting to GST 1.18
 MACHINE_FEATURES_remove = "mmip"
-- 
2.17.1



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

* Re: [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline
  2021-04-12  3:45 [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline praneeth
@ 2021-04-12  3:58 ` Denys Dmytriyenko
  2021-04-13 15:19   ` Suman Anna
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2021-04-12  3:58 UTC (permalink / raw)
  To: praneeth; +Cc: meta-arago, Denys Dmytriyenko

On Sun, Apr 11, 2021 at 10:45:40PM -0500, praneeth@ti.com wrote:
> From: Praneeth Bajjuri <praneeth@ti.com>
> 
> commit 400d58becfb5 ("branding: Add branding-core-next to aid in migration")
> added support of PREFERRED_VERSION as 2020LTS kernel and uboot for branding core.
> 
> Now that migration to 2021LTS (i.e 5.10 kernel and 2021.01 u-boot) is added,
> removing the PREFERRED_VERSION so that core brand picks the expected
> kernel and uboot baseline.

I assume everything has been ported to 5.10, including ipc/rpmsg, SGX/RGX, 
etc. and everything in CoreSDK builds w/o issues in Dunfell?


Probably best to completely remove core-next branding, i.e. reverting:
http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=f90d1bed7e775ac59bf1fcd95e95e9109d0953db
http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=400d58becfb53a62d9cc9ad75ddfcd0933e426f5

Also, revert this in meta-ti:
https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=a0e26c1caf7d36953bd41f6a763101f5a65919e2

And when updating the kernel, don't forget to re-add the minor version:
https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=efa402ee13689e61b4a5758334e71aae302310c3


> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
> ---
>  meta-arago-distro/conf/distro/include/branding-core.inc | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc
> index 10853d8b..3d259d2d 100644
> --- a/meta-arago-distro/conf/distro/include/branding-core.inc
> +++ b/meta-arago-distro/conf/distro/include/branding-core.inc
> @@ -12,10 +12,5 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1"
>  # Raise priority for sample IPC FW images
>  ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15"
>  
> -PREFERRED_VERSION_linux-ti-staging = "5.4%"
> -PREFERRED_VERSION_linux-ti-staging-rt = "5.4%"
> -PREFERRED_VERSION_linux-ti-staging-systest = "5.4%"
> -PREFERRED_VERSION_u-boot-ti-staging = "2020.01%"
> -
>  # Remove mmip - DRM allocator, KMS sink, Wayland sink need porting to GST 1.18
>  MACHINE_FEATURES_remove = "mmip"
> -- 
> 2.17.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964


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

* Re: [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline
  2021-04-12  3:58 ` Denys Dmytriyenko
@ 2021-04-13 15:19   ` Suman Anna
  2021-04-13 15:22     ` Suman Anna
  0 siblings, 1 reply; 6+ messages in thread
From: Suman Anna @ 2021-04-13 15:19 UTC (permalink / raw)
  To: Denys Dmytriyenko, praneeth; +Cc: meta-arago, Denys Dmytriyenko

On 4/11/21 10:58 PM, Denys Dmytriyenko wrote:
> On Sun, Apr 11, 2021 at 10:45:40PM -0500, praneeth@ti.com wrote:
>> From: Praneeth Bajjuri <praneeth@ti.com>
>>
>> commit 400d58becfb5 ("branding: Add branding-core-next to aid in migration")
>> added support of PREFERRED_VERSION as 2020LTS kernel and uboot for branding core.
>>
>> Now that migration to 2021LTS (i.e 5.10 kernel and 2021.01 u-boot) is added,
>> removing the PREFERRED_VERSION so that core brand picks the expected
>> kernel and uboot baseline.
> 
> I assume everything has been ported to 5.10, including ipc/rpmsg, SGX/RGX, 

IPC 3.x stack and K2 MPM and dependent components will break, since I haven't
added the rpmsg-proto and rpmsg-rpc drivers yet (legacy SoCs).

SGX/RGX kernel dts nodes are added, and Gowtham is working through the driver
changes to get them functional.

regards
Suman

> etc. and everything in CoreSDK builds w/o issues in Dunfell?
> 
> 
> Probably best to completely remove core-next branding, i.e. reverting:
> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=f90d1bed7e775ac59bf1fcd95e95e9109d0953db
> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=400d58becfb53a62d9cc9ad75ddfcd0933e426f5
> 
> Also, revert this in meta-ti:
> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=a0e26c1caf7d36953bd41f6a763101f5a65919e2
> 
> And when updating the kernel, don't forget to re-add the minor version:
> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=efa402ee13689e61b4a5758334e71aae302310c3
> 
> 
>> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
>> ---
>>  meta-arago-distro/conf/distro/include/branding-core.inc | 5 -----
>>  1 file changed, 5 deletions(-)
>>
>> diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc
>> index 10853d8b..3d259d2d 100644
>> --- a/meta-arago-distro/conf/distro/include/branding-core.inc
>> +++ b/meta-arago-distro/conf/distro/include/branding-core.inc
>> @@ -12,10 +12,5 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1"
>>  # Raise priority for sample IPC FW images
>>  ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15"
>>  
>> -PREFERRED_VERSION_linux-ti-staging = "5.4%"
>> -PREFERRED_VERSION_linux-ti-staging-rt = "5.4%"
>> -PREFERRED_VERSION_linux-ti-staging-systest = "5.4%"
>> -PREFERRED_VERSION_u-boot-ti-staging = "2020.01%"
>> -
>>  # Remove mmip - DRM allocator, KMS sink, Wayland sink need porting to GST 1.18
>>  MACHINE_FEATURES_remove = "mmip"
>> -- 
>> 2.17.1
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>>
> 



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

* Re: [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline
  2021-04-13 15:19   ` Suman Anna
@ 2021-04-13 15:22     ` Suman Anna
  2021-04-13 15:46       ` Denys Dmytriyenko
  0 siblings, 1 reply; 6+ messages in thread
From: Suman Anna @ 2021-04-13 15:22 UTC (permalink / raw)
  To: Denys Dmytriyenko, praneeth; +Cc: meta-arago, Denys Dmytriyenko

On 4/13/21 10:19 AM, Suman Anna wrote:
> On 4/11/21 10:58 PM, Denys Dmytriyenko wrote:
>> On Sun, Apr 11, 2021 at 10:45:40PM -0500, praneeth@ti.com wrote:
>>> From: Praneeth Bajjuri <praneeth@ti.com>
>>>
>>> commit 400d58becfb5 ("branding: Add branding-core-next to aid in migration")
>>> added support of PREFERRED_VERSION as 2020LTS kernel and uboot for branding core.
>>>
>>> Now that migration to 2021LTS (i.e 5.10 kernel and 2021.01 u-boot) is added,
>>> removing the PREFERRED_VERSION so that core brand picks the expected
>>> kernel and uboot baseline.
>>
>> I assume everything has been ported to 5.10, including ipc/rpmsg, SGX/RGX, 
> 
> IPC 3.x stack and K2 MPM and dependent components will break, since I haven't
> added the rpmsg-proto and rpmsg-rpc drivers yet (legacy SoCs).
> 
> SGX/RGX kernel dts nodes are added, and Gowtham is working through the driver
> changes to get them functional.

Ignore the graphics comment, I see pending meta-ti patches for the same posted
yday.

regards
Suman

> 
> regards
> Suman
> 
>> etc. and everything in CoreSDK builds w/o issues in Dunfell?
>>
>>
>> Probably best to completely remove core-next branding, i.e. reverting:
>> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=f90d1bed7e775ac59bf1fcd95e95e9109d0953db
>> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=400d58becfb53a62d9cc9ad75ddfcd0933e426f5
>>
>> Also, revert this in meta-ti:
>> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=a0e26c1caf7d36953bd41f6a763101f5a65919e2
>>
>> And when updating the kernel, don't forget to re-add the minor version:
>> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=efa402ee13689e61b4a5758334e71aae302310c3
>>
>>
>>> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
>>> ---
>>>  meta-arago-distro/conf/distro/include/branding-core.inc | 5 -----
>>>  1 file changed, 5 deletions(-)
>>>
>>> diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc
>>> index 10853d8b..3d259d2d 100644
>>> --- a/meta-arago-distro/conf/distro/include/branding-core.inc
>>> +++ b/meta-arago-distro/conf/distro/include/branding-core.inc
>>> @@ -12,10 +12,5 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1"
>>>  # Raise priority for sample IPC FW images
>>>  ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15"
>>>  
>>> -PREFERRED_VERSION_linux-ti-staging = "5.4%"
>>> -PREFERRED_VERSION_linux-ti-staging-rt = "5.4%"
>>> -PREFERRED_VERSION_linux-ti-staging-systest = "5.4%"
>>> -PREFERRED_VERSION_u-boot-ti-staging = "2020.01%"
>>> -
>>>  # Remove mmip - DRM allocator, KMS sink, Wayland sink need porting to GST 1.18
>>>  MACHINE_FEATURES_remove = "mmip"
>>> -- 
>>> 2.17.1
>>>
>>> _______________________________________________
>>> meta-arago mailing list
>>> meta-arago@arago-project.org
>>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>>>
>>
> 



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

* Re: [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline
  2021-04-13 15:22     ` Suman Anna
@ 2021-04-13 15:46       ` Denys Dmytriyenko
  2021-04-13 17:42         ` Suman Anna
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2021-04-13 15:46 UTC (permalink / raw)
  To: Suman Anna; +Cc: meta-arago, Denys Dmytriyenko

On Tue, Apr 13, 2021 at 10:22:21AM -0500, Suman Anna wrote:
> On 4/13/21 10:19 AM, Suman Anna wrote:
> > On 4/11/21 10:58 PM, Denys Dmytriyenko wrote:
> >> On Sun, Apr 11, 2021 at 10:45:40PM -0500, praneeth@ti.com wrote:
> >>> From: Praneeth Bajjuri <praneeth@ti.com>
> >>>
> >>> commit 400d58becfb5 ("branding: Add branding-core-next to aid in migration")
> >>> added support of PREFERRED_VERSION as 2020LTS kernel and uboot for branding core.
> >>>
> >>> Now that migration to 2021LTS (i.e 5.10 kernel and 2021.01 u-boot) is added,
> >>> removing the PREFERRED_VERSION so that core brand picks the expected
> >>> kernel and uboot baseline.
> >>
> >> I assume everything has been ported to 5.10, including ipc/rpmsg, SGX/RGX, 
> > 
> > IPC 3.x stack and K2 MPM and dependent components will break, since I haven't
> > added the rpmsg-proto and rpmsg-rpc drivers yet (legacy SoCs).

Any ETA on this?


> > SGX/RGX kernel dts nodes are added, and Gowtham is working through the driver
> > changes to get them functional.
> 
> Ignore the graphics comment, I see pending meta-ti patches for the same posted
> yday.

Yeah, saw those, thanks for the update.


> regards
> Suman
> 
> > 
> > regards
> > Suman
> > 
> >> etc. and everything in CoreSDK builds w/o issues in Dunfell?
> >>
> >>
> >> Probably best to completely remove core-next branding, i.e. reverting:
> >> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=f90d1bed7e775ac59bf1fcd95e95e9109d0953db
> >> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=400d58becfb53a62d9cc9ad75ddfcd0933e426f5
> >>
> >> Also, revert this in meta-ti:
> >> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=a0e26c1caf7d36953bd41f6a763101f5a65919e2
> >>
> >> And when updating the kernel, don't forget to re-add the minor version:
> >> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=efa402ee13689e61b4a5758334e71aae302310c3
> >>
> >>
> >>> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
> >>> ---
> >>>  meta-arago-distro/conf/distro/include/branding-core.inc | 5 -----
> >>>  1 file changed, 5 deletions(-)
> >>>
> >>> diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc
> >>> index 10853d8b..3d259d2d 100644
> >>> --- a/meta-arago-distro/conf/distro/include/branding-core.inc
> >>> +++ b/meta-arago-distro/conf/distro/include/branding-core.inc
> >>> @@ -12,10 +12,5 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1"
> >>>  # Raise priority for sample IPC FW images
> >>>  ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15"
> >>>  
> >>> -PREFERRED_VERSION_linux-ti-staging = "5.4%"
> >>> -PREFERRED_VERSION_linux-ti-staging-rt = "5.4%"
> >>> -PREFERRED_VERSION_linux-ti-staging-systest = "5.4%"
> >>> -PREFERRED_VERSION_u-boot-ti-staging = "2020.01%"
> >>> -
> >>>  # Remove mmip - DRM allocator, KMS sink, Wayland sink need porting to GST 1.18
> >>>  MACHINE_FEATURES_remove = "mmip"
> >>> -- 
> >>> 2.17.1
> >>>
> >>> _______________________________________________
> >>> meta-arago mailing list
> >>> meta-arago@arago-project.org
> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >>>
> >>
> > 
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964


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

* Re: [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline
  2021-04-13 15:46       ` Denys Dmytriyenko
@ 2021-04-13 17:42         ` Suman Anna
  0 siblings, 0 replies; 6+ messages in thread
From: Suman Anna @ 2021-04-13 17:42 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago, Denys Dmytriyenko

Hi Denys,

On 4/13/21 10:46 AM, Denys Dmytriyenko wrote:
> On Tue, Apr 13, 2021 at 10:22:21AM -0500, Suman Anna wrote:
>> On 4/13/21 10:19 AM, Suman Anna wrote:
>>> On 4/11/21 10:58 PM, Denys Dmytriyenko wrote:
>>>> On Sun, Apr 11, 2021 at 10:45:40PM -0500, praneeth@ti.com wrote:
>>>>> From: Praneeth Bajjuri <praneeth@ti.com>
>>>>>
>>>>> commit 400d58becfb5 ("branding: Add branding-core-next to aid in migration")
>>>>> added support of PREFERRED_VERSION as 2020LTS kernel and uboot for branding core.
>>>>>
>>>>> Now that migration to 2021LTS (i.e 5.10 kernel and 2021.01 u-boot) is added,
>>>>> removing the PREFERRED_VERSION so that core brand picks the expected
>>>>> kernel and uboot baseline.
>>>>
>>>> I assume everything has been ported to 5.10, including ipc/rpmsg, SGX/RGX, 
>>>
>>> IPC 3.x stack and K2 MPM and dependent components will break, since I haven't
>>> added the rpmsg-proto and rpmsg-rpc drivers yet (legacy SoCs).
> 
> Any ETA on this?

I will start working on them, so probably couple of days. It's better to get
these out of the way rather than doing the OE revert and re-revert churn.
Will keep you posted.

regards
Suman

> 
> 
>>> SGX/RGX kernel dts nodes are added, and Gowtham is working through the driver
>>> changes to get them functional.
>>
>> Ignore the graphics comment, I see pending meta-ti patches for the same posted
>> yday.
> 
> Yeah, saw those, thanks for the update.
> 
> 
>> regards
>> Suman
>>
>>>
>>> regards
>>> Suman
>>>
>>>> etc. and everything in CoreSDK builds w/o issues in Dunfell?
>>>>
>>>>
>>>> Probably best to completely remove core-next branding, i.e. reverting:
>>>> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=f90d1bed7e775ac59bf1fcd95e95e9109d0953db
>>>> http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=400d58becfb53a62d9cc9ad75ddfcd0933e426f5
>>>>
>>>> Also, revert this in meta-ti:
>>>> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=a0e26c1caf7d36953bd41f6a763101f5a65919e2
>>>>
>>>> And when updating the kernel, don't forget to re-add the minor version:
>>>> https://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/commit/?id=efa402ee13689e61b4a5758334e71aae302310c3
>>>>
>>>>
>>>>> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
>>>>> ---
>>>>>  meta-arago-distro/conf/distro/include/branding-core.inc | 5 -----
>>>>>  1 file changed, 5 deletions(-)
>>>>>
>>>>> diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc
>>>>> index 10853d8b..3d259d2d 100644
>>>>> --- a/meta-arago-distro/conf/distro/include/branding-core.inc
>>>>> +++ b/meta-arago-distro/conf/distro/include/branding-core.inc
>>>>> @@ -12,10 +12,5 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1"
>>>>>  # Raise priority for sample IPC FW images
>>>>>  ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15"
>>>>>  
>>>>> -PREFERRED_VERSION_linux-ti-staging = "5.4%"
>>>>> -PREFERRED_VERSION_linux-ti-staging-rt = "5.4%"
>>>>> -PREFERRED_VERSION_linux-ti-staging-systest = "5.4%"
>>>>> -PREFERRED_VERSION_u-boot-ti-staging = "2020.01%"
>>>>> -
>>>>>  # Remove mmip - DRM allocator, KMS sink, Wayland sink need porting to GST 1.18
>>>>>  MACHINE_FEATURES_remove = "mmip"
>>>>> -- 
>>>>> 2.17.1
>>>>>
>>>>> _______________________________________________
>>>>> meta-arago mailing list
>>>>> meta-arago@arago-project.org
>>>>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>>>>>
>>>>
>>>
>>
> 



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

end of thread, other threads:[~2021-04-13 17:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-12  3:45 [dunfell/master PATCH] branding-core: Remove PREFERRED_VERSION to pick 2021LTS baseline praneeth
2021-04-12  3:58 ` Denys Dmytriyenko
2021-04-13 15:19   ` Suman Anna
2021-04-13 15:22     ` Suman Anna
2021-04-13 15:46       ` Denys Dmytriyenko
2021-04-13 17:42         ` Suman Anna

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.