LetoThe2nd changed the topic of #yocto to: Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Community: https://www.yoctoproject.org/community | IRC logs: http://irc.yoctoproject.org/irc/ | Having difficulty on the list, with someone on the list or on IRC, contact Yocto Project Community Manager Letothe2nd | CoC: https://www.yoctoproject.org/community/code-of-conduct
Vonter has quit [Ping timeout: 260 seconds]
Vonter has joined #yocto
_whitelogger has joined #yocto
SandeepRaju has joined #yocto
jclsn has quit [Ping timeout: 272 seconds]
jclsn has joined #yocto
alperak has quit [Quit: Connection closed for inactivity]
nerdboy has quit [Ping timeout: 252 seconds]
frgo_ has quit [Read error: Connection reset by peer]
frgo has joined #yocto
nerdboy has joined #yocto
nerdboy has quit [Changing host]
nerdboy has joined #yocto
vthor has quit [Ping timeout: 260 seconds]
tammranil has quit [Remote host closed the connection]
vthor has joined #yocto
vthor has quit [Changing host]
vthor has joined #yocto
tammranil has joined #yocto
SandeepRaju has quit [Quit: Client closed]
arisut has left #yocto [Leaving]
mckoan|away is now known as mckoan
thomas_34 has joined #yocto
zeemate has joined #yocto
rfuentess has joined #yocto
leaf_it_out has quit [Quit: leaf_it_out]
pilonsi has joined #yocto
pilonsi_ has quit [Ping timeout: 276 seconds]
florian has joined #yocto
pilonsi has quit [Ping timeout: 260 seconds]
pilonsi has joined #yocto
MarcWeDLM has joined #yocto
pilonsi_ has joined #yocto
pilonsi has quit [Ping timeout: 260 seconds]
wmills_ has quit [Remote host closed the connection]
pilonsi_ has quit [Ping timeout: 260 seconds]
pilonsi has joined #yocto
savolla has joined #yocto
alperak has joined #yocto
leon-anavi has joined #yocto
leaf_it_out has joined #yocto
florian has quit [Ping timeout: 248 seconds]
vthor_ has joined #yocto
vthor has quit [Ping timeout: 272 seconds]
florian has joined #yocto
pilonsi has quit [Ping timeout: 245 seconds]
florian has quit [Ping timeout: 260 seconds]
jclsn has quit [Quit: WeeChat 4.6.3]
florian has joined #yocto
savolla has quit [Read error: Connection reset by peer]
savolla has joined #yocto
florian_kc has joined #yocto
dmoseley_ has joined #yocto
dmoseley has quit [Ping timeout: 268 seconds]
frgo_ has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
frgo has joined #yocto
frgo_ has quit [Read error: Connection reset by peer]
jclsn has joined #yocto
jclsn has quit [Quit: WeeChat 4.6.3]
jclsn has joined #yocto
vthor_ has quit [Excess Flood]
vthor_ has joined #yocto
jclsn has quit [Quit: WeeChat 4.6.3]
jclsn has joined #yocto
wmills_ has joined #yocto
kanavin has quit [Remote host closed the connection]
kanavin has joined #yocto
tlwoerner has quit [Ping timeout: 252 seconds]
tlwoerner has joined #yocto
ablu has quit [Ping timeout: 260 seconds]
ablu has joined #yocto
<patersonc> Hi khem: A few weeks ago I was talking to you about an issue I was seeing with meta-oe and yocto-layer-check. I submitted some patches to the ML for review but haven't had any replies on the ML yet. Is there another step to the process I've missed?
<RP> qschulz: FWIW my toolchain selection email contains an interesting variable assignment challenge. I'm curious if I'm missing something obvious/better
Guest16 has joined #yocto
<Guest16> I was trying to add systemd to core-image-base and I got this warning -> WARNING: systemd-1_257.5-r0 do_install: Using /home/root as root user's home directory is not fully supported by systemd.
<Guest16> I don't understand exactly what happened.
<rburton> Guest16: the default home for root is /home/root. your distro can set HOME_ROOT=/root, or you can do as the documentation says instead and that happens for you: https://docs.yoctoproject.org/dev-manual/init-manager.html#using-systemd
<Guest16> rburton thank you.
Guest16 has quit [Quit: Client closed]
Tyaku has quit [Ping timeout: 260 seconds]
Tyaku has joined #yocto
<qschulz> RP: will try to remember to have a look at it, probably not before next week though :/
<qschulz> rburton: jonmason: https://git.trustedfirmware.org SSL certificate expired :)
mckoan is now known as mckoan|away
jclsn has quit [Quit: WeeChat 4.6.3]
<zeemate> hello, Im still struggeling with a recipe for a project in a subdir https://pastebin.com/h3HbmEcn
<zeemate> whatever I do, if I point S to S/to/subdir or let oe_runmake pick the right Makefile, the headers and libraries are not found while it's getting build
<rburton> zeemate: sounds like the makefiles are just broken
<zeemate> the Makefile breaks already because it cannot find a proper nl lib
<zeemate> rburton, but if I evoke it on my debian system, it works
<zeemate> and even if I edit the Makefile to choose one certain libnl version, (which is installed in recipe_sysroot/usr/lib) it complains about lacking header files
<rburton> yeah, terrible makefile
<zeemate> :)
bjdooks_ has joined #yocto
<rburton> you need to forcibly pass CFLAGS and LDFLAGS but also not overwrite the assignments to CFLAGS that the makefile does. something CFLAGS="${CFLAGS} -DCONFIG_LIBNL30" in the oe_runmake call might work
<rburton> people shouldn't write makefiles by hand, its a lot harder than it appears
bjdooks_ has quit [Client Quit]
lexano has quit [Remote host closed the connection]
<rburton> zeemate: oh and inherit pkgconfig
<rburton> | NOTE: make -j32 --shuffle -C /work/ross/build/tmp/work/cortexa57-poky-linux/openwifi/1.0/git/user_space/sdrctl_src
<rburton> | /bin/sh: 1: pkg-config: not found
<rburton> that's the first error to fix
ptsneves has joined #yocto
thomas_34 has quit [Ping timeout: 272 seconds]
lexano has joined #yocto
<rburton> zeemate: is it a bad sign that the install target cannot work?
<rburton> in the six years since it was implemented, nobody has used it
<rburton> or at least, cared enough to fix it
<rburton> zeemate: this works https://www.irccloud.com/pastebin/ZwIMF3QK/
<zeemate> rburton: Im not sure if nobody stumbled over that Makefile, if I build it within a regular shell on a debian/arch/redhat it works
<rburton> nobody installs
<rburton> the install rule tries to install a file that doesn't exist
<zeemate> ok, I never tried to install
savolla has quit [Ping timeout: 245 seconds]
<zeemate> it works, thanks a lot :)
savolla has joined #yocto
jmd has joined #yocto
goliath has joined #yocto
savolla has quit [Ping timeout: 252 seconds]
savolla has joined #yocto
MarcWeDLM has quit [Quit: Client closed]
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
<qschulz> tlwoerner: I said "True/False" and then implemented "0/1" instead :D?
<tlwoerner> qschulz: :-)
<mischief> @_@
<mischief> 0: clang-native-20.1.6-r0 do_compile - 10h33m35s (pid 293202) 42% |#############################################################
ptsneves has quit [Ping timeout: 252 seconds]
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
rfuentess has quit [Remote host closed the connection]
mansandersson868 has quit [Quit: The Lounge - https://thelounge.chat]
mansandersson868 has joined #yocto
<rburton> mischief: impressive
sizzop has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep` has joined #yocto
chep` is now known as chep
florian_kc has quit [Ping timeout: 268 seconds]
chep has quit [Read error: Connection reset by peer]
chep has joined #yocto
<mischief> at this rate it may actually take a whole day to finish
<mischief> i wonder what pulled it in
<rburton> mesa
<mischief> for core-image-minimal on master?
<rburton> qemu-native pulls it in...
<mischief> m(
Tyaku has quit [Quit: Lost terminal]
<rburton> if you read the status reports, you'll see this has been the top item for a month
<rburton> you can tweak the qemu config to stop it doing that
<mischief> sorry, i'm unfamiliar. do you have a link?
<rburton> for the status reports or the qemu tweaks?
<mischief> the status reports
<mischief> thanks, i was only subscribed to openembedded-core.. guess i should sign up for this
<RP> mischief: there is a separate list if you just want the status report iirc
<RP> ah, ross said that :)
<mischief> what do i need to do to get clang/mesa out of qemu? remove opengl from DISTRO_FEATURES?
<rburton> mischief: i hit it with a very hard hammer and did PACKAGECONFIG:remove:pn-qemu-system-native = "epoxy virglrenderer" in local.conf
<mischief> lgtm, ship it
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
frgo has quit [Ping timeout: 260 seconds]
frgo has joined #yocto
frgo has quit [Read error: Connection reset by peer]
frgo_ has joined #yocto
<RP> rburton: I'm now pondering what the very hard hammer is made from...
<Crofton> adamantium
<mischief> your solution may have been better, DISTRO_FEATURES:remove = "opengl" is now going to rebuild the whole world
<mischief> see you in another day ;)
jmd has left #yocto [ERC 5.4 (IRC client for GNU Emacs 28.2)]
leon-anavi has quit [Quit: Leaving]
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
zeemate has quit [Ping timeout: 268 seconds]
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
<alperak> I have to fetch and use https://github.com/orangepi-xunlong/firmware and there is no LICENSE file or things related to license. What should I do?
dankm has quit [Remote host closed the connection]
dankm has joined #yocto
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
florian_kc has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep has joined #yocto
goliath has quit [Quit: SIGSEGV]
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
chep` has joined #yocto
chep has quit [Ping timeout: 244 seconds]
chep` is now known as chep
walter has quit [Remote host closed the connection]
jmd has joined #yocto
<mischief> Linux qemuriscv64 6.12.31-yocto-standard #1 SMP PREEMPT Mon Jun 2 20:15:37 UTC 2025 riscv64 GNU/Linux
<mischief> seems to work :)
jan_ has joined #yocto
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
chep has joined #yocto
jmd has quit [Remote host closed the connection]
<rburton> alperak: ask the repo owners what the license is
jpuhlman has quit [Ping timeout: 268 seconds]
chep has quit [Read error: Connection reset by peer]
jpuhlman has joined #yocto
chep has joined #yocto
tlwoerner_ has joined #yocto
tlwoerner has quit [Remote host closed the connection]
vthor_ has quit [Excess Flood]
chep has quit [Quit: ZNC 1.9.1 - https://znc.in]
vthor_ has joined #yocto
chep has joined #yocto
sizzop has quit [Remote host closed the connection]
zeemate has joined #yocto
alperak has quit [Quit: Connection closed for inactivity]
<RP> mischief: nice! :)
<mischief> yes, if i pull in meta-riscv and use the kernel recipe i contributed for the milk-v megrez, i *think* the machine could self host
<mischief> runqemu with tcg works fine, but i was not able to make it play nice with kvm
<mischief> (the machine has riscv H extension, and it does work)
<RP> mischief: Nice to get it that far, I'd imagine the kvm piece isn't as mature yet
<RP> mischief: I'm curious why the sdk pieces break...
<mischief> it seems like it's just a path issue
<mischief> RP: there is just no kvm support defined for the QB_* variables in the machine config
<mischief> i tried to hack it but no luck and a bit out of time today, have to vacate my old apartment by eod :S
<RP> mischief: I guess nobody has got to trying kvm on riscv out with YP yet!
<RP> mischief: the apartment issue sounds more urgent, hope it all goes smoothly!
<RP> mischief: we should probably have open bugs for the issues you don't resolve
<mischief> mhalstead set me up with an account on bz, can take a look at doing that soon hopefully
<jan_> Hi, hope you are doing good. Is anyone using nix for development? How do you run qemu or develop?
jan_ has quit [Quit: Konversation terminated!]
savolla has quit [Quit: WeeChat 4.6.3]
frgo_ has quit [Read error: Connection reset by peer]
frgo has joined #yocto