<JaMa>
RP: we need the .pc to pop the patches from WORKDIR, but now I'm thinking about removing ${S}/patches in the QuiltTree.Clean (where we were already removing the series file), that feels like better place anyway
kleist[m] has quit [Quit: You have been kicked for being idle]
<JaMa>
will send patch after the weekend, now some family business to take care of
kleist[m] has joined #yocto
GNUmoon has quit [Ping timeout: 240 seconds]
GNUmoon has joined #yocto
jpuhlman has quit [Ping timeout: 240 seconds]
jpuhlman has joined #yocto
nemik has quit [Ping timeout: 246 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 258 seconds]
<RP>
JaMa: family should come first, it can wait for next week
nemik has joined #yocto
Net147 has quit [Quit: Quit]
Net147 has joined #yocto
Net147 has joined #yocto
Net147 has quit [Changing host]
Net147 has quit [Quit: Quit]
Net147 has joined #yocto
Net147 has quit [Changing host]
Net147 has joined #yocto
florian__ has joined #yocto
nemik has quit [Ping timeout: 255 seconds]
nemik has joined #yocto
Patrick2 has joined #yocto
nemik has quit [Ping timeout: 255 seconds]
nemik has joined #yocto
<Patrick2>
Hi, its me again. Iam the guy who is facing issues with the original U-Boot SPL with Yocto and meta-ti . I already know that some debian image is booting, the "U-Boot SPL 2018.09-00001-ge10814359b (Sep 10 2018 - 19:52:59 -0500)" is in there. I tried to build several branches from ti-U-Boot none of them booted. So the main question here is, does
<Patrick2>
someone know if an Altera USB Blaster will work as a JTAG debugger?
<Patrick2>
Obciously iam not able to find the sources of this 2018.09 build, i think it must be patched somehow
zwelch has quit [Read error: Connection reset by peer]
<Patrick2>
I just found https://elinux.org/BeagleBoardJTAG#TinCanTools_Flyswatter . So now i know which ones definetly work with my BB. I would still be interested in suggestions which of these are known to be very versatile. I am planning other projects with Broadcom processors
gsalazar has quit [Ping timeout: 240 seconds]
Patrick2 has quit [Ping timeout: 246 seconds]
florian__ has quit [Ping timeout: 258 seconds]
florian__ has joined #yocto
goliath has quit [Quit: SIGSEGV]
Net147 has quit [Read error: Connection reset by peer]
Net147 has joined #yocto
Net147 has joined #yocto
Net147 has quit [Changing host]
goliath has joined #yocto
florian__ has quit [Ping timeout: 258 seconds]
goliath has quit [Quit: SIGSEGV]
florian__ has joined #yocto
nemik has quit [Ping timeout: 258 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 255 seconds]
nemik has joined #yocto
goliath has joined #yocto
seninha has joined #yocto
sakoman has joined #yocto
vladest1 has joined #yocto
vladest has quit [Ping timeout: 240 seconds]
vladest1 is now known as vladest
nemik has quit [Ping timeout: 246 seconds]
nemik has joined #yocto
goliath has quit [Quit: SIGSEGV]
nemik has quit [Ping timeout: 255 seconds]
nemik has joined #yocto
goliath has joined #yocto
starblue has quit [Ping timeout: 246 seconds]
nemik has quit [Ping timeout: 258 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 255 seconds]
nemik has joined #yocto
xantoz has quit [Ping timeout: 246 seconds]
nemik has quit [Ping timeout: 258 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
ardo has quit [Read error: Connection reset by peer]
ardo has joined #yocto
florian__ has quit [Ping timeout: 240 seconds]
florian__ has joined #yocto
camus has quit [Remote host closed the connection]
camus has joined #yocto
starblue has joined #yocto
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
<derRichard>
RP: well, name_to_handle_at() will give you a opaque file handle object for a file. it is reboot consistent. the handle is a building block for user space file servers such as nfs.
<derRichard>
the inode alone will be resued a lot. that why we have file handles, usually they are inode plus inode-generation
<derRichard>
the downside of these filehandles is that they are not plain integers
xmn has quit [Quit: ZZZzzz…]
seninha has quit [Ping timeout: 255 seconds]
<RP>
derRichard: 128 byte strings per file which would be "fun" with the database
<RP>
derRichard: it is probably worth exploring although our inode reuse issues don't seem as prevalent now
<derRichard>
RP: sure. but maybe we can store the fhandle together with the inode and use it only when we want to make sure whether a inode has changed or not
<RP>
derRichard: I didn't know the fhandles existed so yes, worthy of further thought
* RP
wishes there was a maintainer with time to do that :/
<derRichard>
no need to worry. i'm also a maintainer with way to little time ;-\
<derRichard>
in the next weeks i'll try to figure why i see so many pseudo aborts in m ci/cd pipeline. something is wonky there
<RP>
derRichard: you're seeing a lot of aborts? :/ Docker?
<RP>
derRichard: going from memory, overlayfs has a habit of changing the inode numbers under us so the pseudo database gets corrupted as the numbering changes
<RP>
derRichard: we probably could have some way of having pseudo sync it's state with the inodes on disk when it loads, or at least check them but that has been a time issue
florian__ has quit [Ping timeout: 240 seconds]
<derRichard>
sounds plausible. since overlayfs implements exportfs, name_to_handle_at() will help here too :-D