<rber|res>
Is there a way to force a package to a specific package feed? I use different MACHINES for 2 builds and after comparing the sigdiffs I see that a couple of packages are MACHINE dependent and hence have different sigdiffs. I would like to make them the same to avoid rebuilding the same stuff.
kpo has quit [Ping timeout: 260 seconds]
vvmeson has joined #yocto
vmeson has quit [Ping timeout: 260 seconds]
kpo has joined #yocto
florian_kc has quit [Ping timeout: 246 seconds]
vvmeson is now known as vmeson
GNUmoon has quit [Remote host closed the connection]
mrpelotaz0 has quit [Read error: Connection reset by peer]
mrpelotazo has joined #yocto
BWhitten has joined #yocto
DvorkinDmitry has joined #yocto
florian_kc has joined #yocto
<DvorkinDmitry>
I'm doing MACHINEOVERRIDES =. "mymachine:othermachine" in mymachine.conf. If in my .bbappend file I do do_install:append:mymachine() - it doen't work, while do_install:append:othermachine() is working
<DvorkinDmitry>
what do I do wrong?
BWhitten has quit [Ping timeout: 264 seconds]
<zelgomer>
DvorkinDmitry: if you expect to get both, try do_install:mymachine:append() and do_install:othermachine:append(). i think that what you wrote results in a do_install:append that is evaluated for mymachine, and then do_install:append is overwritten for othermachine
<zelgomer>
i was just asking a similar question in here recently. i think it's confusing
<DvorkinDmitry>
zelgomer, sorry, I've been debugging the problem periodically and can't why the only one do_install works. If I understand you correctly, do_install:append:... is equal to do_install:append, it just drops :... becase append should be at the end of the expression, right?
<zelgomer>
it doesn't drop :..., the issue (i think, someone could correct me) is that the second :append:y clobbers the first :append:x, versus :x:append and :y:append are both evaluated at the end and so they're additive