<mcfrisk>
sigh, initramfs and .wic image names and links changed. kind of annoying to not be backwards compatible with those
dmoseley has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
alessioigor has quit [Client Quit]
alessioigor has joined #yocto
amitk has joined #yocto
rob_w has joined #yocto
davidinux has joined #yocto
alessioigor has quit [Quit: alessioigor]
adrianf has joined #yocto
alessioigor has joined #yocto
davidinux has quit [Ping timeout: 246 seconds]
mckoan|away is now known as mckoan
<mckoan>
good morningù
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
rber|res has joined #yocto
RobertBerger has joined #yocto
RobertBerger has quit [Client Quit]
manuel1985 has joined #yocto
paulbarker has joined #yocto
dgriego has quit [Ping timeout: 264 seconds]
alessioigor has quit [Quit: alessioigor]
dgriego has joined #yocto
alessioigor has joined #yocto
ptsneves has joined #yocto
Kubu_work has joined #yocto
ptsneves has quit [Ping timeout: 245 seconds]
gsalazar has joined #yocto
Thorn_ has joined #yocto
Thorn has quit [Ping timeout: 260 seconds]
camus has quit [Ping timeout: 246 seconds]
ptsneves has joined #yocto
ajfriesen84 has joined #yocto
amsobr has joined #yocto
jpanisbl has joined #yocto
camus has joined #yocto
dgriego has quit [Ping timeout: 245 seconds]
dgriego has joined #yocto
jpanisbl has quit [Ping timeout: 245 seconds]
jpanisbl has joined #yocto
Guest43 has quit [Quit: Client closed]
alejandrohs has quit [Ping timeout: 250 seconds]
alejandrohs has joined #yocto
Bardon has joined #yocto
Bardon_ has quit [Ping timeout: 250 seconds]
florian has joined #yocto
chris_99 has joined #yocto
rob_w has quit [Remote host closed the connection]
<chris_99>
Hi, i'm just wondering if someone could point me in the right direction, i'm using arm-trustedfirmware-a, and with the meta-arm layer, and would like to set a particular commit version, but it seems like it doesn't use SRCREV?
<rburton>
if you want to use a different version then set PV and SRCREV_tfa as appropriate, but you;ll want to ensure the rest of the SRCREVs are appropriate
<chris_99>
thanks
florian has quit [Read error: Connection reset by peer]
<rburton>
it uses SRCREV_tfa because you can build TF-A with mbedtls, then it has two git fetches, so you need to tell it what one
jpanisbl has quit [Ping timeout: 245 seconds]
<chris_99>
ah, makes sense thanks
<rburton>
i'm the co-maintainer of meta-arm (along with jonmason) so we're here to help, and are curious what bsp this is, etc :)
tgamblin has quit [Remote host closed the connection]
tgamblin has joined #yocto
wooosaiiii has quit [Quit: wooosaiiii]
wooosaiiii has joined #yocto
amitk has quit [Ping timeout: 245 seconds]
arkanoid has joined #yocto
amitk has joined #yocto
arkanoid has quit [Ping timeout: 245 seconds]
chris_99 has quit [Quit: Connection closed for inactivity]
xmn has joined #yocto
Thorn_ has quit [Quit: Some folks are wise, and some otherwise.]
<rber|res>
I am on poky master and the cve-check.bbclass do_fetch fails. Is this a known issue?
<rber|res>
cve-update-nvd2-native-1.0-r0 do_fetch to be precise
<rburton>
fails how?
<rburton>
(works for me)
adrianf has quit [Remote host closed the connection]
<rber|res>
@rburton: it's trying currently - please wait to get the log
Minvera has joined #yocto
xmn has quit [Read error: Connection reset by peer]
chep has quit [Read error: Connection reset by peer]
xmn has joined #yocto
Guest51 has joined #yocto
chep has joined #yocto
Guest51 has quit [Client Quit]
<rber|res>
@rburton: it worked now, after failing a couple of times to download the db. Thanks
<rburton>
you might have hit a rate limit that our code doesn't handle well
vladest has quit [Ping timeout: 245 seconds]
vladest has joined #yocto
Xagen has joined #yocto
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Xagen has joined #yocto
Xagen has quit [Client Quit]
jpanisbl has quit [Ping timeout: 246 seconds]
Xagen has joined #yocto
amitk has quit [Ping timeout: 250 seconds]
sakoman has joined #yocto
DvorkinDmitry has joined #yocto
<DvorkinDmitry>
i have MYVAR[key1]='...' MYVAR[key2]='...' in python() . How can I export MYVAR into BASH function and access to it?
<rburton>
the short answer is you can't: variables scoped to a python() block are out of scope when the block closes, as with normal python
<rburton>
bash functions have to deal with bash syntax, so if you've a complicated data structure: don't use bash
<rburton>
also remember it's not bash, it's sh
<DvorkinDmitry>
i know, but i'm weak in python. Right now I'm using d.appendVar() to export MYVAR to the SH. the only problem is I can't find a way to export the hashed array althrough sh supports it
jpanisbl has joined #yocto
<rburton>
_bash_ supports arrays. sh doesn't.
<rburton>
so this is academic
<DvorkinDmitry>
thank you
<rburton>
don't assume bash in shell functions, they can run in sh