diff mbox series

[v14,03/11] sstate.bbclass: override tar with tar-native

Message ID 20231015145749.69995-3-p.lobacz@welotec.com
State New
Headers show
Series [v14,01/11] package.bbclass: override tar with tar-native | expand

Commit Message

Piotr Łobacz Oct. 15, 2023, 2:57 p.m. UTC
Due to the bugs https://savannah.gnu.org/bugs/?61934 and
https://savannah.gnu.org/bugs/?59184, which are fixed in
tar version 1.35, we need to force yocto to use it instead
of the one provided by the host machine.

sstate_create_package and sstate_unpack_package functions,
will use the tar provided by tar recipe, which is already
in proper version.

Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
---
 meta/classes-global/sstate.bbclass | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Comments

Richard Purdie Oct. 15, 2023, 6:26 p.m. UTC | #1
On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> Due to the bugs https://savannah.gnu.org/bugs/?61934 and
> https://savannah.gnu.org/bugs/?59184, which are fixed in
> tar version 1.35, we need to force yocto to use it instead
> of the one provided by the host machine.
> 
> sstate_create_package and sstate_unpack_package functions,
> will use the tar provided by tar recipe, which is already
> in proper version.
> 
> Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> ---
>  meta/classes-global/sstate.bbclass | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/meta/classes-global/sstate.bbclass b/meta/classes-global/sstate.bbclass
> index 2676f18e0a..5ae6f515f2 100644
> --- a/meta/classes-global/sstate.bbclass
> +++ b/meta/classes-global/sstate.bbclass
> @@ -152,7 +152,9 @@ python () {
>      else:
>          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
>  
> -    if bb.data.inherits_class('native', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross', d):
> +    is_native = bb.data.inherits_class('native', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross', d)
> +
> +    if is_native:
>          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
>          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC} ${SSTATE_SWSPEC}")
>          d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
> @@ -164,6 +166,8 @@ python () {
>          d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
>          d.setVarFlag(task, 'network', '1')
>          d.setVarFlag(task + "_setscene", 'network', '1')
> +        if not is_native:
> +            d.appendVarFlag(task, 'deptask', ' tar-replacement-native:do_populate_sysroot')
>  }
>  
>  def sstate_init(task, d):

I don't think this dependency is enough to ensure that the setscene
task for one of these tasks has tar-native present when the sstate
package is extracted from sstate?

Cheers,

Richard
Piotr Łobacz Oct. 16, 2023, 5:45 a.m. UTC | #2
Dnia niedziela, 15 października 2023 20:26:49 CEST Richard Purdie pisze:
> On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> > Due to the bugs
> > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsavanna
> > h.gnu.org%2Fbugs%2F%3F61934&data=05%7C01%7Cp.lobacz%40welotec.com%7C20843c
> > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C63
> > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luM
> > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=U8%2Fmm02MR5ps5btR
> > JnE1EnySNk4NJV498kRX66jjeeQ%3D&reserved=0 and
> > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsavanna
> > h.gnu.org%2Fbugs%2F%3F59184&data=05%7C01%7Cp.lobacz%40welotec.com%7C20843c
> > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C63
> > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luM
> > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J3cwWWAQ6BHP1aGVeP
> > 1yRIGnGyG1fqVvPaVJY6kjKWc%3D&reserved=0, which are fixed in tar version
> > 1.35, we need to force yocto to use it instead
> > of the one provided by the host machine.
> > 
> > sstate_create_package and sstate_unpack_package functions,
> > will use the tar provided by tar recipe, which is already
> > in proper version.
> > 
> > Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> > ---
> > 
> >  meta/classes-global/sstate.bbclass | 6 +++++-
> >  1 file changed, 5 insertions(+), 1 deletion(-)
> > 
> > diff --git a/meta/classes-global/sstate.bbclass
> > b/meta/classes-global/sstate.bbclass index 2676f18e0a..5ae6f515f2 100644
> > --- a/meta/classes-global/sstate.bbclass
> > +++ b/meta/classes-global/sstate.bbclass
> > @@ -152,7 +152,9 @@ python () {
> > 
> >      else:
> >          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
> > 
> > -    if bb.data.inherits_class('native', d) or
> > bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross',
> > d): +    is_native = bb.data.inherits_class('native', d) or
> > bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross',
> > d) +
> > 
> > +    if is_native:
> >          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
> >          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC}
> >          ${SSTATE_SWSPEC}")
> >          d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
> > 
> > @@ -164,6 +166,8 @@ python () {
> > 
> >          d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
> >          d.setVarFlag(task, 'network', '1')
> >          d.setVarFlag(task + "_setscene", 'network', '1')
> > 
> > +        if not is_native:
> > +            d.appendVarFlag(task, 'deptask', '
> > tar-replacement-native:do_populate_sysroot')> 
> >  }
> 
> >  def sstate_init(task, d):
> I don't think this dependency is enough to ensure that the setscene
> task for one of these tasks has tar-native present when the sstate
> package is extracted from sstate?
> 
> Cheers,
> 
> Richard

Hi Richard, proposals are welcome :-)

BR
Piotr
Piotr Łobacz Nov. 10, 2023, 10:12 a.m. UTC | #3
Dnia poniedziałek, 16 października 2023 07:45:41 CET Piotr Łobacz via 
lists.openembedded.org pisze:
> Dnia niedziela, 15 października 2023 20:26:49 CEST Richard Purdie pisze:
> > On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> > > Due to the bugs
> > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsavann
> > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08dbce0
> > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C638330319545808351%7C
> > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haW
> > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1zW%2Bq
> > > 0YOn8g9wgVvdUA%3D&reserved=0
> > > h.gnu.org%2Fbugs%2F%3F61934&data=05%7C01%7Cp.lobacz%40welotec.com%7C208
> > > 43c
> > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7
> > > C63
> > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2
> > > luM
> > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=U8%2Fmm02MR5ps5
> > > btR JnE1EnySNk4NJV498kRX66jjeeQ%3D&reserved=0 and
> > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsavann
> > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08dbce0
> > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C638330319545808351%7C
> > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haW
> > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1zW%2Bq
> > > 0YOn8g9wgVvdUA%3D&reserved=0
> > > h.gnu.org%2Fbugs%2F%3F59184&data=05%7C01%7Cp.lobacz%40welotec.com%7C208
> > > 43c
> > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7
> > > C63
> > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2
> > > luM
> > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J3cwWWAQ6BHP1aG
> > > VeP 1yRIGnGyG1fqVvPaVJY6kjKWc%3D&reserved=0, which are fixed in tar
> > > version 1.35, we need to force yocto to use it instead
> > > of the one provided by the host machine.
> > > 
> > > sstate_create_package and sstate_unpack_package functions,
> > > will use the tar provided by tar recipe, which is already
> > > in proper version.
> > > 
> > > Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> > > ---
> > > 
> > >  meta/classes-global/sstate.bbclass | 6 +++++-
> > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > > 
> > > diff --git a/meta/classes-global/sstate.bbclass
> > > b/meta/classes-global/sstate.bbclass index 2676f18e0a..5ae6f515f2 100644
> > > --- a/meta/classes-global/sstate.bbclass
> > > +++ b/meta/classes-global/sstate.bbclass
> > > @@ -152,7 +152,9 @@ python () {
> > > 
> > >      else:
> > >          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
> > > 
> > > -    if bb.data.inherits_class('native', d) or
> > > bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross',
> > > d): +    is_native = bb.data.inherits_class('native', d) or
> > > bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross',
> > > d) +
> > > 
> > > +    if is_native:
> > >          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
> > >          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC}
> > >          ${SSTATE_SWSPEC}")
> > >          d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
> > > 
> > > @@ -164,6 +166,8 @@ python () {
> > > 
> > >          d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
> > >          d.setVarFlag(task, 'network', '1')
> > >          d.setVarFlag(task + "_setscene", 'network', '1')
> > > 
> > > +        if not is_native:
> > > +            d.appendVarFlag(task, 'deptask', '
> > > tar-replacement-native:do_populate_sysroot')>
> > > 
> > >  }
> > 
> > >  def sstate_init(task, d):
> > I don't think this dependency is enough to ensure that the setscene
> > task for one of these tasks has tar-native present when the sstate
> > package is extracted from sstate?
> > 
> > Cheers,
> > 
> > Richard
> 
> Hi Richard, proposals are welcome :-)
> 
> BR
> Piotr
BTW. Richard was it tested already by you?

BR
Piotr
Richard Purdie Nov. 10, 2023, 12:01 p.m. UTC | #4
On Fri, 2023-11-10 at 10:12 +0000, Piotr Łobacz wrote:
> Dnia poniedziałek, 16 października 2023 07:45:41 CET Piotr Łobacz via 
> lists.openembedded.org pisze:
> > Dnia niedziela, 15 października 2023 20:26:49 CEST Richard Purdie pisze:
> > > On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> > > > Due to the bugs
> > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsavann
> > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08dbce0
> > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C638330319545808351%7C
> > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haW
> > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1zW%2Bq
> > > > 0YOn8g9wgVvdUA%3D&reserved=0
> > > > h.gnu.org%2Fbugs%2F%3F61934&data=05%7C01%7Cp.lobacz%40welotec.com%7C208
> > > > 43c
> > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7
> > > > C63
> > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2
> > > > luM
> > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=U8%2Fmm02MR5ps5
> > > > btR JnE1EnySNk4NJV498kRX66jjeeQ%3D&reserved=0 and
> > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsavann
> > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08dbce0
> > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C638330319545808351%7C
> > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haW
> > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1zW%2Bq
> > > > 0YOn8g9wgVvdUA%3D&reserved=0
> > > > h.gnu.org%2Fbugs%2F%3F59184&data=05%7C01%7Cp.lobacz%40welotec.com%7C208
> > > > 43c
> > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7
> > > > C63
> > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2
> > > > luM
> > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J3cwWWAQ6BHP1aG
> > > > VeP 1yRIGnGyG1fqVvPaVJY6kjKWc%3D&reserved=0, which are fixed in tar
> > > > version 1.35, we need to force yocto to use it instead
> > > > of the one provided by the host machine.
> > > > 
> > > > sstate_create_package and sstate_unpack_package functions,
> > > > will use the tar provided by tar recipe, which is already
> > > > in proper version.
> > > > 
> > > > Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> > > > ---
> > > > 
> > > >  meta/classes-global/sstate.bbclass | 6 +++++-
> > > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > > > 
> > > > diff --git a/meta/classes-global/sstate.bbclass
> > > > b/meta/classes-global/sstate.bbclass index 2676f18e0a..5ae6f515f2 100644
> > > > --- a/meta/classes-global/sstate.bbclass
> > > > +++ b/meta/classes-global/sstate.bbclass
> > > > @@ -152,7 +152,9 @@ python () {
> > > > 
> > > >      else:
> > > >          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
> > > > 
> > > > -    if bb.data.inherits_class('native', d) or
> > > > bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross',
> > > > d): +    is_native = bb.data.inherits_class('native', d) or
> > > > bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross',
> > > > d) +
> > > > 
> > > > +    if is_native:
> > > >          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
> > > >          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC}
> > > >          ${SSTATE_SWSPEC}")
> > > >          d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
> > > > 
> > > > @@ -164,6 +166,8 @@ python () {
> > > > 
> > > >          d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
> > > >          d.setVarFlag(task, 'network', '1')
> > > >          d.setVarFlag(task + "_setscene", 'network', '1')
> > > > 
> > > > +        if not is_native:
> > > > +            d.appendVarFlag(task, 'deptask', '
> > > > tar-replacement-native:do_populate_sysroot')>
> > > > 
> > > >  }
> > > 
> > > >  def sstate_init(task, d):
> > > I don't think this dependency is enough to ensure that the setscene
> > > task for one of these tasks has tar-native present when the sstate
> > > package is extracted from sstate?
> > > 
> > > Cheers,
> > > 
> > > Richard
> > 
> > Hi Richard, proposals are welcome :-)
> > 
> > BR
> > Piotr
> BTW. Richard was it tested already by you?

No, sadly I can tell from the patches alone that there are issues there
:(

Cheers,

Richard
Piotr Łobacz Nov. 10, 2023, 7:23 p.m. UTC | #5
Dnia piątek, 10 listopada 2023 13:01:46 CET Richard Purdie pisze:
> On Fri, 2023-11-10 at 10:12 +0000, Piotr Łobacz wrote:
> > Dnia poniedziałek, 16 października 2023 07:45:41 CET Piotr Łobacz via
> > 
> > lists.openembedded.org pisze:
> > > Dnia niedziela, 15 października 2023 20:26:49 CEST Richard Purdie pisze:
> > > > On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> > > > > Due to the bugs
> > > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsa
> > > > > vann%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C6cb785a640ac49183830
> > > > > 08dbe1e4d185%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383521451
> > > > > 16769023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
> > > > > iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=NNKAagYPr3Lzk5
> > > > > 18gY3ceRLgWpKnHODZQylBweyOyAI%3D&reserved=0
> > > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08
> > > > > dbce0
> > > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383303195458083
> > > > > 51%7C
> > > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6I
> > > > > k1haW
> > > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1z
> > > > > W%2Bq 0YOn8g9wgVvdUA%3D&reserved=0
> > > > > h.gnu.org%2Fbugs%2F%3F61934&data=05%7C01%7Cp.lobacz%40welotec.com%7C
> > > > > 208
> > > > > 43c
> > > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C
> > > > > 0%7
> > > > > C63
> > > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjo
> > > > > iV2
> > > > > luM
> > > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=U8%2Fmm02MR5
> > > > > ps5
> > > > > btR JnE1EnySNk4NJV498kRX66jjeeQ%3D&reserved=0 and
> > > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsa
> > > > > vann%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C6cb785a640ac49183830
> > > > > 08dbe1e4d185%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383521451
> > > > > 16769023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
> > > > > iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=NNKAagYPr3Lzk5
> > > > > 18gY3ceRLgWpKnHODZQylBweyOyAI%3D&reserved=0
> > > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08
> > > > > dbce0
> > > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383303195458083
> > > > > 51%7C
> > > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6I
> > > > > k1haW
> > > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1z
> > > > > W%2Bq 0YOn8g9wgVvdUA%3D&reserved=0
> > > > > h.gnu.org%2Fbugs%2F%3F59184&data=05%7C01%7Cp.lobacz%40welotec.com%7C
> > > > > 208
> > > > > 43c
> > > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C
> > > > > 0%7
> > > > > C63
> > > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjo
> > > > > iV2
> > > > > luM
> > > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J3cwWWAQ6BHP
> > > > > 1aG
> > > > > VeP 1yRIGnGyG1fqVvPaVJY6kjKWc%3D&reserved=0, which are fixed in tar
> > > > > version 1.35, we need to force yocto to use it instead
> > > > > of the one provided by the host machine.
> > > > > 
> > > > > sstate_create_package and sstate_unpack_package functions,
> > > > > will use the tar provided by tar recipe, which is already
> > > > > in proper version.
> > > > > 
> > > > > Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> > > > > ---
> > > > > 
> > > > >  meta/classes-global/sstate.bbclass | 6 +++++-
> > > > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > > > > 
> > > > > diff --git a/meta/classes-global/sstate.bbclass
> > > > > b/meta/classes-global/sstate.bbclass index 2676f18e0a..5ae6f515f2
> > > > > 100644
> > > > > --- a/meta/classes-global/sstate.bbclass
> > > > > +++ b/meta/classes-global/sstate.bbclass
> > > > > @@ -152,7 +152,9 @@ python () {
> > > > > 
> > > > >      else:
> > > > >          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
> > > > > 
> > > > > -    if bb.data.inherits_class('native', d) or
> > > > > bb.data.inherits_class('crosssdk', d) or
> > > > > bb.data.inherits_class('cross',
> > > > > d): +    is_native = bb.data.inherits_class('native', d) or
> > > > > bb.data.inherits_class('crosssdk', d) or
> > > > > bb.data.inherits_class('cross',
> > > > > d) +
> > > > > 
> > > > > +    if is_native:
> > > > >          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
> > > > >          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC}
> > > > >          ${SSTATE_SWSPEC}")
> > > > >          d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
> > > > > 
> > > > > @@ -164,6 +166,8 @@ python () {
> > > > > 
> > > > >          d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
> > > > >          d.setVarFlag(task, 'network', '1')
> > > > >          d.setVarFlag(task + "_setscene", 'network', '1')
> > > > > 
> > > > > +        if not is_native:
> > > > > +            d.appendVarFlag(task, 'deptask', '
> > > > > tar-replacement-native:do_populate_sysroot')>
> > > > > 
> > > > >  }
> > > > 
> > > > >  def sstate_init(task, d):
> > > > I don't think this dependency is enough to ensure that the setscene
> > > > task for one of these tasks has tar-native present when the sstate
> > > > package is extracted from sstate?
> > > > 
> > > > Cheers,
> > > > 
> > > > Richard
> > > 
> > > Hi Richard, proposals are welcome :-)
> > > 
> > > BR
> > > Piotr
> > 
> > BTW. Richard was it tested already by you?
> 
> No, sadly I can tell from the patches alone that there are issues there
> 
> :(
> 
> Cheers,
> 
> Richard
You mean there are issues with the patches or what?

BR
Piotr
Richard Purdie Nov. 11, 2023, 12:23 a.m. UTC | #6
On Fri, 2023-11-10 at 19:23 +0000, Piotr Łobacz wrote:
> Dnia piątek, 10 listopada 2023 13:01:46 CET Richard Purdie pisze:
> > On Fri, 2023-11-10 at 10:12 +0000, Piotr Łobacz wrote:
> > > Dnia poniedziałek, 16 października 2023 07:45:41 CET Piotr Łobacz via
> > > 
> > > lists.openembedded.org pisze:
> > > > Dnia niedziela, 15 października 2023 20:26:49 CEST Richard Purdie pisze:
> > > > > On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> > > > > > Due to the bugs
> > > > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsa
> > > > > > vann%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C6cb785a640ac49183830
> > > > > > 08dbe1e4d185%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383521451
> > > > > > 16769023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
> > > > > > iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=NNKAagYPr3Lzk5
> > > > > > 18gY3ceRLgWpKnHODZQylBweyOyAI%3D&reserved=0
> > > > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08
> > > > > > dbce0
> > > > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383303195458083
> > > > > > 51%7C
> > > > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6I
> > > > > > k1haW
> > > > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1z
> > > > > > W%2Bq 0YOn8g9wgVvdUA%3D&reserved=0
> > > > > > h.gnu.org%2Fbugs%2F%3F61934&data=05%7C01%7Cp.lobacz%40welotec.com%7C
> > > > > > 208
> > > > > > 43c
> > > > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C
> > > > > > 0%7
> > > > > > C63
> > > > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjo
> > > > > > iV2
> > > > > > luM
> > > > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=U8%2Fmm02MR5
> > > > > > ps5
> > > > > > btR JnE1EnySNk4NJV498kRX66jjeeQ%3D&reserved=0 and
> > > > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsa
> > > > > > vann%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C6cb785a640ac49183830
> > > > > > 08dbe1e4d185%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383521451
> > > > > > 16769023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
> > > > > > iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=NNKAagYPr3Lzk5
> > > > > > 18gY3ceRLgWpKnHODZQylBweyOyAI%3D&reserved=0
> > > > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912a08
> > > > > > dbce0
> > > > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383303195458083
> > > > > > 51%7C
> > > > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6I
> > > > > > k1haW
> > > > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJwc1z
> > > > > > W%2Bq 0YOn8g9wgVvdUA%3D&reserved=0
> > > > > > h.gnu.org%2Fbugs%2F%3F59184&data=05%7C01%7Cp.lobacz%40welotec.com%7C
> > > > > > 208
> > > > > > 43c
> > > > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C
> > > > > > 0%7
> > > > > > C63
> > > > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjo
> > > > > > iV2
> > > > > > luM
> > > > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J3cwWWAQ6BHP
> > > > > > 1aG
> > > > > > VeP 1yRIGnGyG1fqVvPaVJY6kjKWc%3D&reserved=0, which are fixed in tar
> > > > > > version 1.35, we need to force yocto to use it instead
> > > > > > of the one provided by the host machine.
> > > > > > 
> > > > > > sstate_create_package and sstate_unpack_package functions,
> > > > > > will use the tar provided by tar recipe, which is already
> > > > > > in proper version.
> > > > > > 
> > > > > > Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> > > > > > ---
> > > > > > 
> > > > > >  meta/classes-global/sstate.bbclass | 6 +++++-
> > > > > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > > > > > 
> > > > > > diff --git a/meta/classes-global/sstate.bbclass
> > > > > > b/meta/classes-global/sstate.bbclass index 2676f18e0a..5ae6f515f2
> > > > > > 100644
> > > > > > --- a/meta/classes-global/sstate.bbclass
> > > > > > +++ b/meta/classes-global/sstate.bbclass
> > > > > > @@ -152,7 +152,9 @@ python () {
> > > > > > 
> > > > > >      else:
> > > > > >          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
> > > > > > 
> > > > > > -    if bb.data.inherits_class('native', d) or
> > > > > > bb.data.inherits_class('crosssdk', d) or
> > > > > > bb.data.inherits_class('cross',
> > > > > > d): +    is_native = bb.data.inherits_class('native', d) or
> > > > > > bb.data.inherits_class('crosssdk', d) or
> > > > > > bb.data.inherits_class('cross',
> > > > > > d) +
> > > > > > 
> > > > > > +    if is_native:
> > > > > >          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
> > > > > >          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC}
> > > > > >          ${SSTATE_SWSPEC}")
> > > > > >          d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
> > > > > > 
> > > > > > @@ -164,6 +166,8 @@ python () {
> > > > > > 
> > > > > >          d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
> > > > > >          d.setVarFlag(task, 'network', '1')
> > > > > >          d.setVarFlag(task + "_setscene", 'network', '1')
> > > > > > 
> > > > > > +        if not is_native:
> > > > > > +            d.appendVarFlag(task, 'deptask', '
> > > > > > tar-replacement-native:do_populate_sysroot')>
> > > > > > 
> > > > > >  }
> > > > > 
> > > > > >  def sstate_init(task, d):
> > > > > I don't think this dependency is enough to ensure that the setscene
> > > > > task for one of these tasks has tar-native present when the sstate
> > > > > package is extracted from sstate?
> > > > > 
> > > > > Cheers,
> > > > > 
> > > > > Richard
> > > > 
> > > > Hi Richard, proposals are welcome :-)
> > > > 
> > > > BR
> > > > Piotr
> > > 
> > > BTW. Richard was it tested already by you?
> > 
> > No, sadly I can tell from the patches alone that there are issues there
> > 
> > :(
> > 
> > Cheers,
> > 
> > Richard
> You mean there are issues with the patches or what?

I mean that the problem I mentioned above, that the dependency won't
work for setscene tasks will cause breakage. If I can see that just
looking at the patch there is little point in testing it further.

I ended with a question mark as I'm not 100% sure and I was basically
saying "correct me if I'm wrong", but I am fairly certain it won't work
in some corner cases.

Cheers,

Richard
Piotr Łobacz Nov. 11, 2023, 11:16 a.m. UTC | #7
Dnia sobota, 11 listopada 2023 01:23:59 CET Richard Purdie pisze:
> On Fri, 2023-11-10 at 19:23 +0000, Piotr Łobacz wrote:
> > Dnia piątek, 10 listopada 2023 13:01:46 CET Richard Purdie pisze:
> > > On Fri, 2023-11-10 at 10:12 +0000, Piotr Łobacz wrote:
> > > > Dnia poniedziałek, 16 października 2023 07:45:41 CET Piotr Łobacz via
> > > > 
> > > > lists.openembedded.org pisze:
> > > > > Dnia niedziela, 15 października 2023 20:26:49 CEST Richard Purdie 
pisze:
> > > > > > On Sun, 2023-10-15 at 16:57 +0200, Piotr Łobacz wrote:
> > > > > > > Due to the bugs
> > > > > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%
> > > > > > > 2Fsa%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C2a6d6926b1c545c5
> > > > > > > 6aa608dbe24c8149%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C63
> > > > > > > 8352590457133024%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJ
> > > > > > > QIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdat
> > > > > > > a=ETw552e%2B46hM5hanBbOyv417wADVL0HaFFSK%2BPVeJ54%3D&reserved=0
> > > > > > > vann%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C6cb785a640ac491
> > > > > > > 83830
> > > > > > > 08dbe1e4d185%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C63835
> > > > > > > 21451
> > > > > > > 16769023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2
> > > > > > > luMzI
> > > > > > > iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=NNKAagYPr
> > > > > > > 3Lzk5 18gY3ceRLgWpKnHODZQylBweyOyAI%3D&reserved=0
> > > > > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912
> > > > > > > a08
> > > > > > > dbce0
> > > > > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383303195458
> > > > > > > 083
> > > > > > > 51%7C
> > > > > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTi
> > > > > > > I6I
> > > > > > > k1haW
> > > > > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJw
> > > > > > > c1z
> > > > > > > W%2Bq 0YOn8g9wgVvdUA%3D&reserved=0
> > > > > > > h.gnu.org%2Fbugs%2F%3F61934&data=05%7C01%7Cp.lobacz%40welotec.co
> > > > > > > m%7C
> > > > > > > 208
> > > > > > > 43c
> > > > > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C
> > > > > > > 0%7C
> > > > > > > 0%7
> > > > > > > C63
> > > > > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJ
> > > > > > > QIjo
> > > > > > > iV2
> > > > > > > luM
> > > > > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=U8%2Fmm0
> > > > > > > 2MR5
> > > > > > > ps5
> > > > > > > btR JnE1EnySNk4NJV498kRX66jjeeQ%3D&reserved=0 and
> > > > > > > https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%
> > > > > > > 2Fsa%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C2a6d6926b1c545c5
> > > > > > > 6aa608dbe24c8149%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C63
> > > > > > > 8352590457133024%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJ
> > > > > > > QIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdat
> > > > > > > a=ETw552e%2B46hM5hanBbOyv417wADVL0HaFFSK%2BPVeJ54%3D&reserved=0
> > > > > > > vann%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7C6cb785a640ac491
> > > > > > > 83830
> > > > > > > 08dbe1e4d185%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C63835
> > > > > > > 21451
> > > > > > > 16769023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2
> > > > > > > luMzI
> > > > > > > iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=NNKAagYPr
> > > > > > > 3Lzk5 18gY3ceRLgWpKnHODZQylBweyOyAI%3D&reserved=0
> > > > > > > a%2F&data=05%7C01%7Cp.lobacz%40welotec.com%7Cbac3f04a07664b3a912
> > > > > > > a08
> > > > > > > dbce0
> > > > > > > b282c%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C0%7C0%7C6383303195458
> > > > > > > 083
> > > > > > > 51%7C
> > > > > > > Unknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTi
> > > > > > > I6I
> > > > > > > k1haW
> > > > > > > wiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=875wwpxmvY10%2BUdvEbJFTJw
> > > > > > > c1z
> > > > > > > W%2Bq 0YOn8g9wgVvdUA%3D&reserved=0
> > > > > > > h.gnu.org%2Fbugs%2F%3F59184&data=05%7C01%7Cp.lobacz%40welotec.co
> > > > > > > m%7C
> > > > > > > 208
> > > > > > > 43c
> > > > > > > d409ff471ad53b08dbcdac4d55%7C25111a7f1d5a4c51a4ca7f8e44011b39%7C
> > > > > > > 0%7C
> > > > > > > 0%7
> > > > > > > C63
> > > > > > > 8329912144020487%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJ
> > > > > > > QIjo
> > > > > > > iV2
> > > > > > > luM
> > > > > > > zIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J3cwWWAQ
> > > > > > > 6BHP
> > > > > > > 1aG
> > > > > > > VeP 1yRIGnGyG1fqVvPaVJY6kjKWc%3D&reserved=0, which are fixed in
> > > > > > > tar
> > > > > > > version 1.35, we need to force yocto to use it instead
> > > > > > > of the one provided by the host machine.
> > > > > > > 
> > > > > > > sstate_create_package and sstate_unpack_package functions,
> > > > > > > will use the tar provided by tar recipe, which is already
> > > > > > > in proper version.
> > > > > > > 
> > > > > > > Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
> > > > > > > ---
> > > > > > > 
> > > > > > >  meta/classes-global/sstate.bbclass | 6 +++++-
> > > > > > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > > > > > > 
> > > > > > > diff --git a/meta/classes-global/sstate.bbclass
> > > > > > > b/meta/classes-global/sstate.bbclass index
> > > > > > > 2676f18e0a..5ae6f515f2
> > > > > > > 100644
> > > > > > > --- a/meta/classes-global/sstate.bbclass
> > > > > > > +++ b/meta/classes-global/sstate.bbclass
> > > > > > > @@ -152,7 +152,9 @@ python () {
> > > > > > > 
> > > > > > >      else:
> > > > > > >          d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
> > > > > > > 
> > > > > > > -    if bb.data.inherits_class('native', d) or
> > > > > > > bb.data.inherits_class('crosssdk', d) or
> > > > > > > bb.data.inherits_class('cross',
> > > > > > > d): +    is_native = bb.data.inherits_class('native', d) or
> > > > > > > bb.data.inherits_class('crosssdk', d) or
> > > > > > > bb.data.inherits_class('cross',
> > > > > > > d) +
> > > > > > > 
> > > > > > > +    if is_native:
> > > > > > >          d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
> > > > > > >          d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC}
> > > > > > >          ${SSTATE_SWSPEC}")
> > > > > > >          d.setVar('SSTATE_EXTRAPATHWILDCARD',
> > > > > > >          "${NATIVELSBSTRING}/")
> > > > > > > 
> > > > > > > @@ -164,6 +166,8 @@ python () {
> > > > > > > 
> > > > > > >          d.appendVarFlag(task, 'postfuncs', "
> > > > > > >          sstate_task_postfunc")
> > > > > > >          d.setVarFlag(task, 'network', '1')
> > > > > > >          d.setVarFlag(task + "_setscene", 'network', '1')
> > > > > > > 
> > > > > > > +        if not is_native:
> > > > > > > +            d.appendVarFlag(task, 'deptask', '
> > > > > > > tar-replacement-native:do_populate_sysroot')>
> > > > > > > 
> > > > > > >  }
> > > > > > 
> > > > > > >  def sstate_init(task, d):
> > > > > > I don't think this dependency is enough to ensure that the
> > > > > > setscene
> > > > > > task for one of these tasks has tar-native present when the sstate
> > > > > > package is extracted from sstate?
> > > > > > 
> > > > > > Cheers,
> > > > > > 
> > > > > > Richard
> > > > > 
> > > > > Hi Richard, proposals are welcome :-)
> > > > > 
> > > > > BR
> > > > > Piotr
> > > > 
> > > > BTW. Richard was it tested already by you?
> > > 
> > > No, sadly I can tell from the patches alone that there are issues there
> > > 
> > > :(
> > > 
> > > Cheers,
> > > 
> > > Richard
> > 
> > You mean there are issues with the patches or what?
> 
> I mean that the problem I mentioned above, that the dependency won't
> work for setscene tasks will cause breakage. If I can see that just
> looking at the patch there is little point in testing it further.
> 
> I ended with a question mark as I'm not 100% sure and I was basically
> saying "correct me if I'm wrong", but I am fairly certain it won't work
> in some corner cases.
> 
> Cheers,
> 
> Richard

OK so I should add it as well for setscene like in case of network above 
right? I'm sorry Richard that I'm asking to many questions but I do not know 
that code that well as you.

BR
Piotr
diff mbox series

Patch

diff --git a/meta/classes-global/sstate.bbclass b/meta/classes-global/sstate.bbclass
index 2676f18e0a..5ae6f515f2 100644
--- a/meta/classes-global/sstate.bbclass
+++ b/meta/classes-global/sstate.bbclass
@@ -152,7 +152,9 @@  python () {
     else:
         d.setVar('SSTATE_MANMACH', d.expand("${PACKAGE_ARCH}"))
 
-    if bb.data.inherits_class('native', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross', d):
+    is_native = bb.data.inherits_class('native', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross', d)
+
+    if is_native:
         d.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
         d.setVar('BB_HASHFILENAME', "True ${SSTATE_PKGSPEC} ${SSTATE_SWSPEC}")
         d.setVar('SSTATE_EXTRAPATHWILDCARD', "${NATIVELSBSTRING}/")
@@ -164,6 +166,8 @@  python () {
         d.appendVarFlag(task, 'postfuncs', " sstate_task_postfunc")
         d.setVarFlag(task, 'network', '1')
         d.setVarFlag(task + "_setscene", 'network', '1')
+        if not is_native:
+            d.appendVarFlag(task, 'deptask', ' tar-replacement-native:do_populate_sysroot')
 }
 
 def sstate_init(task, d):