<kroon>
JPEW, with respect to podman and sharing DL_DIR, I found "--userns=keep-id", which seems to fix things..
frieder has quit [Remote host closed the connection]
zeddii has quit [Ping timeout: 240 seconds]
zeddii has joined #yocto
manuel1985 has joined #yocto
<ptsneves>
selff ${D}/.ssh/known_hosts will not install in any user's HOME directory. Actually Yocto does not know of any user at all besides root(by default). Then in the FILES you used ~ which is a placeholder for "relative to the user" which again has no meaning in the context of yocto. Is the known_hosts supposed to be for any user or do you have a
<ptsneves>
specific user in mind?
frieder has joined #yocto
<selff>
im using root user
<ptsneves>
Try putting it here ${sysconfdir}/ssh/ssh_known_hosts
<ptsneves>
this will set the known hosts for all users in the board
<ptsneves>
think if this is what you want
<selff>
im trying to create the known host in /root/.ssh/. won't this create it in etc you said?
<ptsneves>
no. That will create it in /root/.ssh
<ptsneves>
if you want to do that install to ${D}/root/.ssh and in FILES_${PN} += "/root/.ssh/"
<qschulz>
oberonc: we need more info than just "does not seem to work" if you want to be helped :)
<qschulz>
oberonc: do you have a custom do_compile task
<oberonc>
amm .. yes, and it is .. empty :-)
<oberonc>
ups
xmn has quit [Quit: ZZZzzz…]
<qschulz>
autootols class will set it for you, just remove it :)
<LetoThe2nd>
oberonc: usually one does not need a custom compile task, but rather extra parameters to the configure stage. and there's a variable to just drop it in.
<oberonc>
something to do with passing OPENSSL I believe
<neverpanic>
oberonc: Do you have a dependency on pkg-config? If not, you should. This looks like an autoconf macro that wasn't expanded because pkg-config's autoconf macro definitions were not available.
<oberonc>
not in the bb file
<neverpanic>
Try DEPENDS += pkgconfig (or pkg-config, not sure whether yocto uses the dash or doesn't)
<neverpanic>
(oviously add the quotes, too)
<oberonc>
trying as we speak
<kanavin>
RP: yeah, you mean that most things succeeded?
<oberonc>
it's "pkgconfig" apparently
<RP>
kanavin: yes :)
<qschulz>
inherit pkgconfig
<kanavin>
RP: it's the fruits of the previous week where I went over everything and resolved particularly the failing ones
<kanavin>
so the next round only consists of 'new' updates
<kanavin>
if no one works on the fails, they tend to accumulate in the stats
<oberonc>
how do I pass parameters to autotools (configure stage) ? I was to disable gtk (no need for graphic support)
<qschulz>
oberonc: look into PACKAGECONFIG options
GillesM has joined #yocto
<qschulz>
or just look into other recipes that are inheriting autotools and see how it's done
GillesM has quit [Client Quit]
ThomasRoos has quit [Remote host closed the connection]
<manuel1985>
Is the Yocto Project Summit 2022.05 already sold out? I wasn't aware virtual conferences can sell out. Am a bit disappointed, I meant go register.
<qschulz>
manuel1985: there's an issue with registration, we're working on it
<manuel1985>
qschulz: Ok, glad to hear.
<RP>
kanavin: right, was just happy to see it paying off!
starblue has quit [Ping timeout: 276 seconds]
florian_kc has joined #yocto
starblue has joined #yocto
Guest1715 has joined #yocto
Guest1715 has left #yocto [#yocto]
<qschulz>
manuel1985: ndec said on the mailing list the problem should be fixed by now, can you check?
<ndec>
manuel1985: yes, please try again, and let me know if you still have problems.
<oberonc>
I cant seem to find any example on how to use PACKAGECONFIG
<oberonc>
all the results in google are related to QEMU
<qschulz>
what's in-between square brackets matters only to PACKAGECONFIG, so you can virtually name it any way you'd like
<qschulz>
it's just an option
<qschulz>
that you can enable in PACKAGECONFIG
<qschulz>
(PACKAGECONFIG is for selecting options, PACKAGECONFIG[something] is for defining a something config option that can then be selected via PACKAGECONFIG
<qschulz>
also, first is enable, second is disable, so starting with --without-gnome looks wrong at first glance
<oberonc>
this is only for internal use so I dont eed all the oprtions
<oberonc>
*need
<oberonc>
the first option in PACKAGECONFIG is the default ?
nemik has quit [Ping timeout: 248 seconds]
<qschulz>
oberonc: there's no "default"
<qschulz>
either the option is selected or it's not
<qschulz>
it's explained in the docs, if it's not clear we could always rephrase
<qschulz>
or add more examples
<oberonc>
yeah, I should definitely rtfm :-)
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
<rburton>
please do rtfm and say if there is any part that isn't clear
<oberonc>
sigh
<RP>
kanavin: I wasn't able to reproduce the exact failure but I found an issue so I think I'm going to fix that and see if it breaks again. Hopefully that solves the issue. I've sent patches out now
pgowda_ has joined #yocto
dtometzki has joined #yocto
<RP>
kanavin: glad you're getting out on the bike. I've been struggling a bit atm for 'reasons' :/
ardo has quit [Read error: Connection reset by peer]
ardo has joined #yocto
adrian_ has quit [Ping timeout: 272 seconds]
ardo has quit [Read error: Connection reset by peer]
<ernstp>
hmm the json stuff en cve-check seems a bit buggy generally...
<mrybczyn>
ernstp do you have a testcase?
<ernstp>
mrybczyn: no, just running with INHERIT += "cve-check" and default settings
<mrybczyn>
ernstp OE-core only or you include other layers too?
<ernstp>
I had meta-freescale also but I don't think that matters...
<ernstp>
I'm digging deeper, i've got a patch in progress!
<mrybczyn>
ernstp we might also have a patch
<ernstp>
the problem is when you have MANIFEST=1 and JSON=0, there are parts in the manifest code that tries to do json but depend on the total json summary...
<mrybczyn>
ernstp ok thanks let me have a look, I was testing this configuration
dtometzki has quit [Read error: Connection reset by peer]
<seninha>
Hi, I generated an openembedded linux image with yocto, and, while booting it after GRUB, it is stuck at the "EFI stub: Loaded initrd from command line option" screen.
nemik has quit [Ping timeout: 276 seconds]
<seninha>
I'm testing the image on an intel soc, where the initialization fails. However, testing on my desktop computer, the initialization goes fine.
<mrybczyn>
ernstp thanks let me review it in detail
nemik has joined #yocto
<ernstp>
bb.plain("CVE report summary created at: %s" % link_name) should be bb.plain("CVE report summary created at: %s" % link_path) also
dtometzki has joined #yocto
<ernstp>
mrybczyn: tested with MANIFEST=1 JSON=0, and MANIFEST=1 JSON=1
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
<ernstp>
or out_path to be consistent with the .txt report
nemik has quit [Ping timeout: 276 seconds]
nemik has joined #yocto
ilunev has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
<mrybczyn>
ernstp will propose a slightly different patch, the CVE_CHECK_SUMMARY_INDEX_PATH is actually for JSON only. we need to retest all configurations
<LocutusOfBorg>
hello, I tried BBMASK feature for sumo branch, it works really nicely, except for the fact that its using BBFILES and works only for bb and bbappend files
<LocutusOfBorg>
I'm thinking to use the same variable (and parse it) also for BBINCLUDED variable, removing "useless" .conf files from the build
<LocutusOfBorg>
I can craft a patch, do you think it can be suitable for mainline inclusion?
<LocutusOfBorg>
I see a layer such as meta-compulab, doing lots of rm -rf meta-freescale/conf/machine/foo.conf to let their version be used by yocto
<LocutusOfBorg>
I think providing a "clean" yocto way to mask such files will be a benefit for the community, WDYT?
sakoman has joined #yocto
vm1 has joined #yocto
<mrybczyn>
ernstp thank you very much for investigating this issue
mrybczyn has quit [Quit: Client closed]
goliath has quit [Quit: SIGSEGV]
adrian_ has joined #yocto
selff has quit [Quit: Client closed]
F_Adrian has quit [Ping timeout: 248 seconds]
mihai has joined #yocto
thomas__ has quit [Ping timeout: 240 seconds]
<LetoThe2nd>
LocutusOfBorg: what would be such a useless configuration file? as opposed to to recipes, they are essentially pulled in tree-like. or do you just want to hack around syntax changes between releases?
<ernstp>
mrybczyn ok i'll wait a bit and see what you come up with then
<jclsn[m]>
I am getting a "remote 'g' packet is too long" error when remote debugging with gdb. Similar to this
<jclsn[m]>
It is about QEMU, but could this be related?
GNUmoon2 has quit [Remote host closed the connection]
GNUmoon2 has joined #yocto
<Saur[m]>
LocutusOfBorg: Rather than deleting configuration files in other layers, a higher layer (such as meta-compulab in this case) can just provide its own configuration file to suppress what a lower layer is doing. The same cannot be done for, e.g., bbappend files.
nemik has quit [Ping timeout: 260 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
sakoman has quit [Quit: Leaving.]
sakoman has joined #yocto
vm1 has quit [Ping timeout: 252 seconds]
<manuel1985>
Hi all. I want to educate myself and some of my people in a few technologies such as libusb, gstreamer, object oriented python and such. Are there any online trainings you can recommend? It's okay if it costs money.
adrian__ has joined #yocto
adrian_ has quit [Ping timeout: 260 seconds]
<seninha>
Hi, where can I set kernel config in yocto?
manuel1985 has quit [Remote host closed the connection]
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
frieder has quit [Remote host closed the connection]
<rburton>
khem: the python3-cbor2 upgrade is broken, can you quickly revert before it gets fixed properly?
<rburton>
i'm hoping it's not exposed a bug in our packaging classes but i fear it has
mckoan is now known as mckoan|away
Schlumpf has quit [Quit: Client closed]
<LocutusOfBorg>
Saur[m], well, it doesn't cope with the fact that e.g. imx7 machines are inheriting from arm-v7 or whatever and 99% of that stuff is the same
<LocutusOfBorg>
so, better delete a couple of files rather than copy-pasting everything?
<LocutusOfBorg>
I think .inc files are the culprit here
florian has quit [Quit: Ex-Chat]
tlhonmey has joined #yocto
kroon has quit [Read error: Connection reset by peer]
<khem>
rburton: yeah thanks, I have reverted
kroon has joined #yocto
<rburton>
khem: the upgrade needs bumps in oe-core, which i have working now
florian_kc has quit [Ping timeout: 240 seconds]
<khem>
I see. how did you notice the breakage ?
<khem>
I wonder if this is something I can add to CI as well
<rburton>
we tried using cbor2-native in a build
<rburton>
the build fails, so the sysroot is empty
<khem>
hmm
<rburton>
running the cbor2 ptest should have found it
<khem>
yeah running ptest is another story build itself takes 12 hrs
<rburton>
one good answer would be to have a buildhistory repo, and every build on a branch shows you the buildhistory-diff between that and current master, so you can read that and spot eg a recipe deleting itself
<rburton>
when i did oe-core build review i'd look at buildhistory for every run to make sure it was what is expected
<rburton>
need to get the same in meta-arm's CI somehow too
adrian__ has quit [Ping timeout: 240 seconds]
oberonc has quit [Quit: Client closed]
GNUmoon2 has quit [Remote host closed the connection]
GNUmoon2 has joined #yocto
rfuentess has quit [Remote host closed the connection]
Andrew68 has joined #yocto
pgowda_ has quit [Quit: Connection closed for inactivity]
<seninha>
So, I rebuilt the yocto linux image with some debug configs (CONFIG_EARLY_PRINTK=y, CONFIG_DEBUG_KERNEL=y, CONFIG_DEBUG_INFO=y) and, after loading the thing from grub, it is still stuck with the message "EFI stub: Loaded initrd from command line option" and it does not advance any further.
prabhakarlad has quit [Quit: Client closed]
Andrew68 has quit [Quit: Client closed]
<kergoth>
Is there a yocto dunfell release with all of the git safe directory fixes in yet? Or did that go in after 3.1.16?
<kergoth>
Hmm, seems like no, will end up in 3.1.17
tlhonmey has quit [Quit: Client closed]
GillesM has joined #yocto
florian_kc has joined #yocto
GillesM has quit [Client Quit]
ljh has joined #yocto
davidinux has quit [Ping timeout: 248 seconds]
<rburton>
kanavin: ah, bah, i checked the list
<seninha>
[kernel config]: specified values did not make it into the kernel's final configuration: ... CONFIG_DEBUG_LL
<seninha>
why couldn't I set this config into the kernel?
<rburton>
normally because it depends on something else being set
<seninha>
oh
<rburton>
our config linting is more comprehensive than the plain kernel
<seninha>
I need to get debugging on the early process of kernel loading. I'm stuck on a "EFI stub: Loaded initrd from command line option" screen.
<seninha>
Its literally a black screen with only this message.
davidinux has joined #yocto
ecdhe has joined #yocto
seninha has quit [Ping timeout: 260 seconds]
adrian__ has joined #yocto
mvlad has quit [Read error: Connection reset by peer]
gsalazar has quit [Remote host closed the connection]
gsalazar has joined #yocto
sakoman has quit [Quit: Leaving.]
goliath has quit [Quit: SIGSEGV]
paulg has quit [Ping timeout: 240 seconds]
leon-anavi has quit [Quit: Leaving]
paulg has joined #yocto
seninha has joined #yocto
seninha has quit [Remote host closed the connection]
seninha has joined #yocto
tlhonmey has joined #yocto
sakoman has joined #yocto
nemik has quit [Ping timeout: 276 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 272 seconds]
nemik has joined #yocto
paulg has quit [Ping timeout: 252 seconds]
dgriego_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
florian_kc has quit [Ping timeout: 260 seconds]
florian_kc has joined #yocto
paulg has joined #yocto
adrian__ has quit [Ping timeout: 248 seconds]
jwillikers has joined #yocto
chep` has joined #yocto
jwillikers has quit [Remote host closed the connection]
chep has quit [Read error: Connection reset by peer]
chep` is now known as chep
nate02 has joined #yocto
<nate02>
hi
<nate02>
I'm running into an error while trying to set up a new build from scratch it's failing on qemu-native with "ERROR: gcc cannot build an executable (is your linker broken?)"