Re: [yocto] Fwd: Basehash value changed issue

2018-07-03 Thread Richard Purdie
On Mon, 2018-07-02 at 17:37 +0530, techi eth wrote:
> I have not got success of building my first image so it happen's to
> me always. I also tried deleting tmp,cache folder & re-build again
> but problem persist.
> Is it something to do with timestamps ?
> 
> I do see below patch & applied changes but problem persist.
> http://cgit.openembedded.org/openembedded-core/commit/?id=4af13a4855c
> 74cea9cf6c168fd73165d7094bf93

do_rootfs[vardepsexclude] = "TIME DATE DATETIME"

The above means stop the do_rootfs *function* depending on those
values. It is not a task wide exclusion, its limited to that function
only. I suspect there is some other function in your build depending on
these values and you need:

[vardepsexclude] = "TIME DATE DATETIME"

but which function is including these is something you'll need to
figure out.

Running bitbake-dumpsig on the do_rootfs sigdata file should be able to
tell you that.

Cheers,

Richard
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Fwd: Basehash value changed issue

2018-07-03 Thread techi eth
i don't see any time usage in recipe however if this variable need's to
exclude than could you please share me hint or reference of recipe to do
the same.
I tried below in recipe but no success.
PR[vardepsxeclude]="DATETIME DATE TIME"


On Mon, Jul 2, 2018 at 4:51 PM, Mike Looijmans 
wrote:

> The simplest (and probably preferred) way to fix would be to get rid of
> TIME usage from that recipe. Parsing the recipe twice should yield the same
> result and your trouble would be over.
>
>
> On 02-07-18 07:27, techi eth wrote:
>
>> Hi,
>>
>> Can anybody give me hint over below issue.
>>
>> Thanks
>>
>>
>>
> Kind regards,
>
> Mike Looijmans
> System Expert
>
> TOPIC Products
> Materiaalweg 4, NL-5681 RJ Best
> Postbus 440, NL-5680 AK Best
> Telefoon: +31 (0) 499 33 69 79
> E-mail: mike.looijm...@topicproducts.com
> Website: www.topicproducts.com
>
> Please consider the environment before printing this e-mail
>
>
>
> -- Forwarded message --
>
>> From: *techi eth* mailto:techi...@gmail.com>>
>> Date: Thu, Jun 21, 2018 at 6:30 PM
>> Subject: Basehash value changed issue
>> To: yocto@yoctoproject.org 
>>
>>
>> Hi,
>>
>> I am facing issue with basehash value changed while building image on one
>> of my test board (Ref of beagle bone) on morty branch.
>>
>> Error :
>> gateway.bb.do_rootfs, the basehash value changed from
>> e685a429b8df6dcff60063f087d425ee to 3f98a102f48ea8722835ad0d65bfbc1f.
>> The metadata is not deterministic and this needs to be fixed
>>
>> When i run bitbake-diffsigs -t gateway do_rootfs
>> I found below O/P.
>> basehash changed from 8e6b9498c9704590bd016491efcbf9f9 to
>> 3f98a102f48ea8722835ad0d65bfbc1f
>> Variable TIME value changed from '112854' to '115745'
>>
>> After googling I found that TIME need's to be added in vardepsexclude
>> list.
>> I added below in conf/distro/machine.conf but error persist.
>> do_rootfs[vardepsexclude] = "TIME DATE DATETIME"
>>
>> Please suggest me where & what has to be added to come out of issue.
>>
>>
>>
>>
> --
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Fwd: Basehash value changed issue

2018-07-02 Thread Mike Looijmans
The simplest (and probably preferred) way to fix would be to get rid of TIME 
usage from that recipe. Parsing the recipe twice should yield the same result 
and your trouble would be over.



On 02-07-18 07:27, techi eth wrote:

Hi,

Can anybody give me hint over below issue.

Thanks




Kind regards,

Mike Looijmans
System Expert

TOPIC Products
Materiaalweg 4, NL-5681 RJ Best
Postbus 440, NL-5680 AK Best
Telefoon: +31 (0) 499 33 69 79
E-mail: mike.looijm...@topicproducts.com
Website: www.topicproducts.com

Please consider the environment before printing this e-mail



-- Forwarded message --

From: *techi eth* mailto:techi...@gmail.com>>
Date: Thu, Jun 21, 2018 at 6:30 PM
Subject: Basehash value changed issue
To: yocto@yoctoproject.org 


Hi,

I am facing issue with basehash value changed while building image on one of 
my test board (Ref of beagle bone) on morty branch.


Error :
gateway.bb.do_rootfs, the basehash value changed from 
e685a429b8df6dcff60063f087d425ee to 3f98a102f48ea8722835ad0d65bfbc1f. The 
metadata is not deterministic and this needs to be fixed


When i run bitbake-diffsigs -t gateway do_rootfs
I found below O/P.
basehash changed from 8e6b9498c9704590bd016491efcbf9f9 to 
3f98a102f48ea8722835ad0d65bfbc1f

Variable TIME value changed from '112854' to '115745'

After googling I found that TIME need's to be added in vardepsexclude list.
I added below in conf/distro/machine.conf but error persist.
do_rootfs[vardepsexclude] = "TIME DATE DATETIME"

Please suggest me where & what has to be added to come out of issue.





--
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Fwd: Basehash value changed issue

2018-07-02 Thread techi eth
I have not got success of building my first image so it happen's to me
always. I also tried deleting tmp,cache folder & re-build again but problem
persist.
Is it something to do with timestamps ?

I do see below patch & applied changes but problem persist.
http://cgit.openembedded.org/openembedded-core/commit/?id=4af13a4855c74cea9cf6c168fd73165d7094bf93

Thanks

On Mon, Jul 2, 2018 at 5:27 PM, Paulo Neves  wrote:

> Does this happen always or only sometimes? If only sometimes you
> probably made changes to the recipe or dependent recipes while
> building. You cannot do that.
>
> On Mon, Jul 2, 2018 at 7:27 AM, techi eth  wrote:
> > Hi,
> >
> > Can anybody give me hint over below issue.
> >
> > Thanks
> >
> > -- Forwarded message --
> > From: techi eth 
> > Date: Thu, Jun 21, 2018 at 6:30 PM
> > Subject: Basehash value changed issue
> > To: yocto@yoctoproject.org
> >
> >
> > Hi,
> >
> > I am facing issue with basehash value changed while building image on
> one of
> > my test board (Ref of beagle bone) on morty branch.
> >
> > Error :
> > gateway.bb.do_rootfs, the basehash value changed from
> > e685a429b8df6dcff60063f087d425ee to 3f98a102f48ea8722835ad0d65bfbc1f.
> The
> > metadata is not deterministic and this needs to be fixed
> >
> > When i run bitbake-diffsigs -t gateway do_rootfs
> > I found below O/P.
> > basehash changed from 8e6b9498c9704590bd016491efcbf9f9 to
> > 3f98a102f48ea8722835ad0d65bfbc1f
> > Variable TIME value changed from '112854' to '115745'
> >
> > After googling I found that TIME need's to be added in vardepsexclude
> list.
> > I added below in conf/distro/machine.conf but error persist.
> > do_rootfs[vardepsexclude] = "TIME DATE DATETIME"
> >
> > Please suggest me where & what has to be added to come out of issue.
> >
> >
> > --
> > ___
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Fwd: Basehash value changed issue

2018-07-02 Thread Paulo Neves
Does this happen always or only sometimes? If only sometimes you
probably made changes to the recipe or dependent recipes while
building. You cannot do that.

On Mon, Jul 2, 2018 at 7:27 AM, techi eth  wrote:
> Hi,
>
> Can anybody give me hint over below issue.
>
> Thanks
>
> -- Forwarded message --
> From: techi eth 
> Date: Thu, Jun 21, 2018 at 6:30 PM
> Subject: Basehash value changed issue
> To: yocto@yoctoproject.org
>
>
> Hi,
>
> I am facing issue with basehash value changed while building image on one of
> my test board (Ref of beagle bone) on morty branch.
>
> Error :
> gateway.bb.do_rootfs, the basehash value changed from
> e685a429b8df6dcff60063f087d425ee to 3f98a102f48ea8722835ad0d65bfbc1f. The
> metadata is not deterministic and this needs to be fixed
>
> When i run bitbake-diffsigs -t gateway do_rootfs
> I found below O/P.
> basehash changed from 8e6b9498c9704590bd016491efcbf9f9 to
> 3f98a102f48ea8722835ad0d65bfbc1f
> Variable TIME value changed from '112854' to '115745'
>
> After googling I found that TIME need's to be added in vardepsexclude list.
> I added below in conf/distro/machine.conf but error persist.
> do_rootfs[vardepsexclude] = "TIME DATE DATETIME"
>
> Please suggest me where & what has to be added to come out of issue.
>
>
> --
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] Fwd: Basehash value changed issue

2018-07-01 Thread techi eth
Hi,

Can anybody give me hint over below issue.

Thanks

-- Forwarded message --
From: techi eth 
Date: Thu, Jun 21, 2018 at 6:30 PM
Subject: Basehash value changed issue
To: yocto@yoctoproject.org


Hi,

I am facing issue with basehash value changed while building image on one
of my test board (Ref of beagle bone) on morty branch.

Error :
gateway.bb.do_rootfs, the basehash value changed from
e685a429b8df6dcff60063f087d425ee to 3f98a102f48ea8722835ad0d65bfbc1f. The
metadata is not deterministic and this needs to be fixed

When i run bitbake-diffsigs -t gateway do_rootfs
I found below O/P.
basehash changed from 8e6b9498c9704590bd016491efcbf9f9 to
3f98a102f48ea8722835ad0d65bfbc1f
Variable TIME value changed from '112854' to '115745'

After googling I found that TIME need's to be added in vardepsexclude list.
I added below in conf/distro/machine.conf but error persist.
do_rootfs[vardepsexclude] = "TIME DATE DATETIME"

Please suggest me where & what has to be added to come out of issue.
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto