ndec changed the topic of #yocto to: "Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Join us or Speak at Yocto Project Summit (2022.05) May 17 - 19, more: https://yoctoproject.org/summit | Join the community: https://www.yoctoproject.org/community | IRC logs available at https://www.yoctoproject.org/irc/ | Having difficulty on the list or with someone on the list, contact YP community mgr ndec"
zeddii has joined #yocto
goliath has quit [Quit: SIGSEGV]
camus has quit [Remote host closed the connection]
camus has joined #yocto
chep has quit [Quit: ZNC 1.8.2 - https://znc.in]
chep has joined #yocto
<vmeson> glembo[m]: sounds like you should use a DISTRO_FEATURE but without knowing more, that's only a guess.
camus has quit [Remote host closed the connection]
camus has joined #yocto
sakoman has quit [Quit: Leaving.]
camus1 has joined #yocto
nemik has quit [Ping timeout: 260 seconds]
nemik has joined #yocto
camus has quit [Ping timeout: 252 seconds]
camus1 is now known as camus
nemik has quit [Ping timeout: 256 seconds]
nemik has joined #yocto
camus has quit [Remote host closed the connection]
camus has joined #yocto
starblue has quit [Ping timeout: 252 seconds]
starblue has joined #yocto
nemik has quit [Ping timeout: 246 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
chep` has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep` is now known as chep
sakoman has joined #yocto
dgriego has joined #yocto
dgriego has quit [Client Quit]
dgriego has joined #yocto
dgriego has quit [Client Quit]
dgriego has joined #yocto
xmn has joined #yocto
dgriego has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
GNUmoon2 has quit [Remote host closed the connection]
GNUmoon2 has joined #yocto
dgriego has joined #yocto
dgriego has quit [Ping timeout: 246 seconds]
jmiehe1 has joined #yocto
jmiehe has quit [Ping timeout: 248 seconds]
jmiehe1 is now known as jmiehe
prabhakarlad has joined #yocto
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
seninha has quit [Quit: Leaving]
sakoman has quit [Quit: Leaving.]
thomas__ has joined #yocto
davidinux has joined #yocto
Dracos-Carazza has quit [*.net *.split]
neverpanic has quit [*.net *.split]
ldts has quit [*.net *.split]
kergoth has quit [*.net *.split]
neverpanic has joined #yocto
Dracos-Carazza has joined #yocto
ldts has joined #yocto
kergoth has joined #yocto
eggman has quit [*.net *.split]
astlep has quit [*.net *.split]
The_Pacifist has quit [*.net *.split]
MrFrank has quit [*.net *.split]
dl9pf has quit [*.net *.split]
darknighte has quit [*.net *.split]
mkorpershoek has quit [*.net *.split]
jpnurmi has quit [*.net *.split]
dl9pf has joined #yocto
The_Pacifist has joined #yocto
MrFrank has joined #yocto
eggman has joined #yocto
mkorpershoek has joined #yocto
darknighte has joined #yocto
astlep has joined #yocto
jpnurmi has joined #yocto
kroon has quit [Quit: Leaving]
ThomasRoos has joined #yocto
kroon has joined #yocto
goliath has joined #yocto
Vonter has quit [Read error: Connection reset by peer]
mvlad has joined #yocto
adrian__ has joined #yocto
Vonter has joined #yocto
goliath has quit [Quit: SIGSEGV]
frieder has joined #yocto
ptsneves has joined #yocto
adrian_ has joined #yocto
adrian__ has quit [Ping timeout: 240 seconds]
tomzy_0 has joined #yocto
<RP> glembo[m]: A conf file as you mention or a inc file are both good ways to do that
tomzy_0 has quit [Quit: Client closed]
rfuentess has joined #yocto
mixfix41 has joined #yocto
goliath has joined #yocto
selff has joined #yocto
<selff> hi everyone
nemik has quit [Ping timeout: 248 seconds]
seninha has joined #yocto
gsalazar has joined #yocto
Schlumpf has joined #yocto
nemik has joined #yocto
dacav has joined #yocto
selff has quit [Quit: Client closed]
selff has joined #yocto
<selff> i'm trying to create ssh folder and known_hosts file in recipe. based on the following path: "~/.ssh/known_hosts". i am getting error like :
<selff> ERROR: known-hosts-1.0-r0 do_package: QA Issue: known-hosts: Files/directories were installed but not shipped in any package:
<selff>   /.ssh
<selff>   /.ssh/known_hosts
<selff> Please set FILES such that these items are packaged. alternative if they are unneeded, avoid installing them or delete them within do_install.
<selff> known-hosts: 2 installed and not shipped files. [installed-vs-shipped]
<selff> why do I need to package?
<ptsneves> *feeling bad that golang coredumps do not naturally expose Go features in gdb :(*
<ptsneves> selff for any file you want to include in a package you need to add it in the correct FILES_
<selff> i did as you said, but i still get the error. am i doing wrong?  https://pastebin.com/Gegg16Mq
<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/"
<selff> i did as you said but i get permission error while building. https://pastebin.com/c0GQLVCe
<selff> ERROR: install: cannot create regular file '/etc/ssh/known_hosts': Permission denied
<ptsneves> you did not do as i wrote :) you missed the ${D} in the install
<ptsneves> what you did is instruct yocto to install on your host machine :)
ilunev has joined #yocto
oberonc has joined #yocto
florian has joined #yocto
mckoan|away is now known as mckoan
<mckoan> good morning
<selff> morning
<LetoThe2nd> yo dudX
<oberonc> noon
<LetoThe2nd> only one day until the YPS starts, folks!
<qschulz> o/
vladest has quit [Remote host closed the connection]
vladest has joined #yocto
<LetoThe2nd> qschulz: \o
<paulbarker> LetoThe2nd: Looks like I've missed the ability to register for YPS but I'll hopefully be able to join the social calls on Tues & Thurs
<LetoThe2nd> paulbarker: missed?
<paulbarker> It says "Join the waitlist" instead of going to the registration forms
<oberonc> I am writing a bb recipe for compiling networkmanager-l2tp
<LetoThe2nd> paulbarker: kay.... let me know how it goes. we will find a way.
<oberonc> the package is available from github (https://github.com/nm-l2tp/NetworkManager-l2tp)
<oberonc> to compile this package I need to use autotools
<oberonc> there is only autogen.sh inside
<oberonc> how do I compile it ?
<qschulz> oberonc: inherit autotools?
<LetoThe2nd> oberonc: usually by adding "inherit autotools" to your recipe. if it is well behaved, magic will be applied appropriately.
<oberonc> is there an example on how to use it ?
<oberonc> I might need to pass some parameters
<oberonc> just inheriting autotools doesn't seem to work
<oberonc> "run.do_compile.1613497: 152: Syntax error: "}" unexpected"
<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.
<LetoThe2nd> qschulz: you take?
<RP> kanavin: AUH stats weren't bad!
<qschulz> LetoThe2nd: please go ahead, fighting cameras on Linux right now :
<LetoThe2nd> qschulz: similar thing here, fighting presentation preparations!
<qschulz> oberonc: your SRC_URI is wrong
<qschulz> it should be git:// instead of https://
<qschulz> and you need an SRCREV
<oberonc> the error doesnt seem to be related to fetching the source code .. no ?
<qschulz> oberonc: look into your WORKDIR/git and I'm almost certain it's an html file you've downloaded
<oberonc> I downloaded the file and placed it in files folder
<oberonc> so updated bb file is:
<oberonc> the error now is during configure:
<qschulz> oberonc: why?
<qschulz> why can you not replace https:// with git:// in the SRC_URI?
<oberonc> to simplify things, it is an internal-use-only anyways
<oberonc> I did change to git:// didnt work
<qschulz> oberonc: it's worse
<qschulz> because your metadata will now contain source code
<qschulz> drastically increasing the size of the layer
<qschulz> and you'll have to keep in sync the version in the filename and the version you downloaded
<oberonc> doesnt matter , the end result image will be the same
<qschulz> whereas if you use git, you literrally often have only one variable to change: SRCREV
leon-anavi has joined #yocto
<oberonc> again, I'm passed that issue, now I have a problem configuring
<oberonc> this is the error:
<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
<oberonc> first link had what I needed .. thanks
<manuel1985> qschulz, ndec: Registration seems to work again. Can't complete it, though, because I don't have our company credit card.
<kanavin> RP: I was tracking your progress with the dbus issue over the weekend, if you need additional help, let me know
<Habbie> are there public recordings of the yocto summit beginners track?
<ndec> manuel1985: ok!
<kanavin> RP: otherwise, I've completed a pretty awesome ride with my club mates, nice to be fit again after some uneven years https://www.strava.com/activities/7146676827
<oberonc> amm .. what is the correct syntax?:
<oberonc> PACKAGECONFIG[${PN}] = "--without-gnome"
<qschulz> oberonc: look at the enchant example
<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
nemik has joined #yocto
<oberonc> how do you select an option ?
<qschulz> PACKAGECONFIG = "something" PACKAGECONFIG[something] = "selected,unselected,"
<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]
ardo has joined #yocto
<oberonc> I get this error when I do bitbake:
<oberonc> bb file:https://pastebin.com/s2qnewS6
<oberonc> is it because it doesnt have the executable gdbus-codegen ?
<rburton> yes
<oberonc> I cant find in the configure options an option to disable dbus support
<oberonc> hmm
<rburton> DEPENDS+=glib-2.0-native
<oberonc> I think nm-l2tp-pppd-service-dbus.h is auto generated from the xml file, no ?
<oberonc> the source doesnt contain src/nm-l2tp-pppd-service-dbus.h
Wouter0100 has quit [Read error: Connection reset by peer]
Wouter0100 has joined #yocto
Guest3571 has joined #yocto
Guest3571 has quit [Quit: Textual IRC Client: www.textualapp.com]
Guest7339 has joined #yocto
F_Adrian has joined #yocto
seninha has quit [Quit: Leaving]
ardo has quit [Read error: Connection reset by peer]
ardo has joined #yocto
Guest4487 has joined #yocto
Guest7339 has quit [Ping timeout: 260 seconds]
Guest4487 has quit [Client Quit]
seninha has joined #yocto
Polo has joined #yocto
Polo has quit [Client Quit]
<ernstp> cve-check broken on both master and dunfell with CVE_CHECK_CREATE_MANIFEST = 1? Do you run with that set to 0?
<rburton> apparently so
<rburton> please file a bug, and bonus points for sending a patch to oe-selftest which breaks
<ernstp> rburton: i can send a patch to fix the bug, but i've never looked at oe-selftest...
<rburton> a patch to fix the bug is great
<rburton> oe-selftest is fairly trivial, actually
<rburton> it's... suboptimal
mrybczyn has joined #yocto
F_Adrian has quit [Ping timeout: 240 seconds]
xmn has joined #yocto
F_Adrian has joined #yocto
dgriego has joined #yocto
dgriego_ has joined #yocto
dgriego has quit [Ping timeout: 248 seconds]
<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?
alimon has quit [Ping timeout: 248 seconds]
alimon has joined #yocto
nemik has quit [Ping timeout: 272 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 240 seconds]
adrian__ has quit [Ping timeout: 252 seconds]
nemik has joined #yocto
Guest8793 has joined #yocto
Guest8793 is now known as Polo
Polo is now known as Gambino
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
Gambino has left #yocto [Textual IRC Client: www.textualapp.com]
adrian__ has joined #yocto
goliath has joined #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]
<kanavin> rburton, always check akanavin/package-version-updates (and package-version-updates-later for wip stuff ;)
<kanavin> (see my response to setuptools patch)
ptsneves has quit [Ping timeout: 252 seconds]
<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> CONFIG_DEBUG_LL is not available for the default architecture x86. https://www.kernelconfig.io/config_debug_ll
<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?)"
florian_kc has quit [Ping timeout: 260 seconds]
tlhonmey has quit [Quit: Client closed]