All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meta-ti-extras: ti-unpack: Drop update_data call
@ 2023-01-27 18:02 Randolph Sapp
  2023-01-27 18:12 ` Ryan Eatmon
  0 siblings, 1 reply; 5+ messages in thread
From: Randolph Sapp @ 2023-01-27 18:02 UTC (permalink / raw)
  To: denys, reatmon, afd; +Cc: meta-ti, Randolph Sapp

Bitbake made it's data store dynamic many releases ago and finally
removed the update_data command altogether in commit
584989ed2b5af4e8799571dece0cf94f995ef14e. This drops our references as
well.

Signed-off-by: Randolph Sapp <rs@ti.com>
---
 meta-ti-extras/recipes-ti/includes/ti-unpack.inc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta-ti-extras/recipes-ti/includes/ti-unpack.inc b/meta-ti-extras/recipes-ti/includes/ti-unpack.inc
index 46bfb957..13068843 100644
--- a/meta-ti-extras/recipes-ti/includes/ti-unpack.inc
+++ b/meta-ti-extras/recipes-ti/includes/ti-unpack.inc
@@ -24,7 +24,6 @@ python ti_bin_do_unpack() {
         bb.fatal("TI installer requires 32bit glibc libraries for proper operation\nrun 'yum install glibc.i686' on Fedora or 'apt-get install libc6:i386' on Ubuntu/Debian")
 
     localdata = bb.data.createCopy(d)
-    bb.data.update_data(localdata)
 
     binfile  = localdata.getVar('BINFILE')
     binfile  = bb.data.expand(binfile, localdata)
-- 
2.34.1



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

* Re: [PATCH] meta-ti-extras: ti-unpack: Drop update_data call
  2023-01-27 18:02 [PATCH] meta-ti-extras: ti-unpack: Drop update_data call Randolph Sapp
@ 2023-01-27 18:12 ` Ryan Eatmon
  2023-01-27 21:44   ` Sapp, Randolph
  0 siblings, 1 reply; 5+ messages in thread
From: Ryan Eatmon @ 2023-01-27 18:12 UTC (permalink / raw)
  To: Randolph Sapp, denys, afd; +Cc: meta-ti


This change was already made on the master branch back in November to 
address this issue.  Are you seeing this on other branches?  I do not 
believe that this patch needs to be applied to dunfell or kirkstone 
unless you are seeing an issue.

On 1/27/2023 12:02, Randolph Sapp wrote:
> Bitbake made it's data store dynamic many releases ago and finally
> removed the update_data command altogether in commit
> 584989ed2b5af4e8799571dece0cf94f995ef14e. This drops our references as
> well.
> 
> Signed-off-by: Randolph Sapp <rs@ti.com>
> ---
>   meta-ti-extras/recipes-ti/includes/ti-unpack.inc | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/meta-ti-extras/recipes-ti/includes/ti-unpack.inc b/meta-ti-extras/recipes-ti/includes/ti-unpack.inc
> index 46bfb957..13068843 100644
> --- a/meta-ti-extras/recipes-ti/includes/ti-unpack.inc
> +++ b/meta-ti-extras/recipes-ti/includes/ti-unpack.inc
> @@ -24,7 +24,6 @@ python ti_bin_do_unpack() {
>           bb.fatal("TI installer requires 32bit glibc libraries for proper operation\nrun 'yum install glibc.i686' on Fedora or 'apt-get install libc6:i386' on Ubuntu/Debian")
>   
>       localdata = bb.data.createCopy(d)
> -    bb.data.update_data(localdata)
>   
>       binfile  = localdata.getVar('BINFILE')
>       binfile  = bb.data.expand(binfile, localdata)

-- 
Ryan Eatmon                reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc.  -  LCPD  -  MGTS


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

* Re: [PATCH] meta-ti-extras: ti-unpack: Drop update_data call
  2023-01-27 18:12 ` Ryan Eatmon
@ 2023-01-27 21:44   ` Sapp, Randolph
  2023-01-27 21:48     ` Ryan Eatmon
  0 siblings, 1 reply; 5+ messages in thread
From: Sapp, Randolph @ 2023-01-27 21:44 UTC (permalink / raw)
  To: Ryan Eatmon; +Cc: denys, afd, meta-ti

On Fri, Jan 27 2023 at 12:12:55 PM -0600, Ryan Eatmon <reatmon@ti.com> 
wrote:
> This change was already made on the master branch back in November to 
> address this issue.  Are you seeing this on other branches?  I do not 
> believe that this patch needs to be applied to dunfell or kirkstone 
> unless you are seeing an issue.

I saw this issue under kirkstone with the latest version of my GPU 
patch for meta-ti and meta-arago.




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

* Re: [PATCH] meta-ti-extras: ti-unpack: Drop update_data call
  2023-01-27 21:44   ` Sapp, Randolph
@ 2023-01-27 21:48     ` Ryan Eatmon
  2023-01-27 23:07       ` Sapp, Randolph
  0 siblings, 1 reply; 5+ messages in thread
From: Ryan Eatmon @ 2023-01-27 21:48 UTC (permalink / raw)
  To: Sapp, Randolph; +Cc: denys, afd, meta-ti



On 1/27/2023 15:44, Sapp, Randolph wrote:
> On Fri, Jan 27 2023 at 12:12:55 PM -0600, Ryan Eatmon <reatmon@ti.com> 
> wrote:
>> This change was already made on the master branch back in November to 
>> address this issue.  Are you seeing this on other branches?  I do not 
>> believe that this patch needs to be applied to dunfell or kirkstone 
>> unless you are seeing an issue.
> 
> I saw this issue under kirkstone with the latest version of my GPU patch 
> for meta-ti and meta-arago.

They must have back ported it.

-- 
Ryan Eatmon                reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc.  -  LCPD  -  MGTS


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

* Re: [PATCH] meta-ti-extras: ti-unpack: Drop update_data call
  2023-01-27 21:48     ` Ryan Eatmon
@ 2023-01-27 23:07       ` Sapp, Randolph
  0 siblings, 0 replies; 5+ messages in thread
From: Sapp, Randolph @ 2023-01-27 23:07 UTC (permalink / raw)
  To: Ryan Eatmon; +Cc: denys, afd, meta-ti

On Fri, Jan 27 2023 at 03:48:58 PM -0600, Ryan Eatmon <reatmon@ti.com> 
wrote:
> On 1/27/2023 15:44, Sapp, Randolph wrote:
>> On Fri, Jan 27 2023 at 12:12:55 PM -0600, Ryan Eatmon 
>> <reatmon@ti.com> \x7fwrote:
>>> This change was already made on the master branch back in November 
>>> to \x7f\x7faddress this issue.  Are you seeing this on other branches?  I 
>>> do not \x7f\x7fbelieve that this patch needs to be applied to dunfell or 
>>> kirkstone \x7f\x7funless you are seeing an issue.
>> 
>> I saw this issue under kirkstone with the latest version of my GPU 
>> patch \x7ffor meta-ti and meta-arago.
> 
> They must have back ported it.

Whoops, I was tracking bitbake main. Kirkstone doesn't appear to have 
that commit yet. Still, there should be no reason to call update_data 
as it is a deprecated function and a NOOP. Entirely up to you whether 
you want to take this, I don't care.




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

end of thread, other threads:[~2023-01-27 23:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-27 18:02 [PATCH] meta-ti-extras: ti-unpack: Drop update_data call Randolph Sapp
2023-01-27 18:12 ` Ryan Eatmon
2023-01-27 21:44   ` Sapp, Randolph
2023-01-27 21:48     ` Ryan Eatmon
2023-01-27 23:07       ` Sapp, Randolph

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.