reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
lexano has quit [Ping timeout: 255 seconds]
<smurray>
mischief: the 2 ways I can think of right off are: 1) have a differently named kernel recipe for image #2 (maybe just a stub recipe that includes the original), and 2) use a multiconfig for image #2 that sets an override (or maybe leverages BB_CURRENT_MC) that can be used to tweak the kernel configuration
<smurray>
mischief: both of those options carry downsides
<smurray>
mischief: life is much easier if you can get away with keeping the differences to different sets of module packages and/or devicetree
jclsn has quit [Ping timeout: 264 seconds]
<smurray>
mischief: thinking about it some more, you would not want to use an override for option 2, as it'd likely trigger rebuilding you wouldn't want. So setting a variable using the BB_CURRENT_MC value would be the way to do it
jclsn has joined #yocto
Jones42_ has joined #yocto
Jones42 has quit [Ping timeout: 264 seconds]
fotte has joined #yocto
<mischief>
smurray: unfortunate. involving multiconfig seems like a pain
jmd has joined #yocto
<mischief>
to date we dont use multiconfig, and we have something like 15 machines, so.. that'd be doubled-ish for mc?
<mischief>
i was looking at setting some kconfigs that would cause potential security or performance concerns like the various DEBUG options or PROC_PAGE_MONITOR as examples.. some may be controllable via device tree as well but then there's the problem of selecting the device tree, and some aren't. so two kernels for two different images seemed like a better route.
<jwinarsk>
Does anyone have 'import pycurl' working? I'm on scarthgap. The module gets listed, but the import fails
fotte has quit [Ping timeout: 252 seconds]
jmd has quit [Remote host closed the connection]
<jwinarsk>
It's for dart package management
jmd has joined #yocto
Articulus has joined #yocto
Minvera has quit [Ping timeout: 252 seconds]
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
amitk has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
enok has joined #yocto
ello has quit [Ping timeout: 258 seconds]
ello has joined #yocto
sakman has quit [Remote host closed the connection]
sakman has joined #yocto
enok has quit [Ping timeout: 244 seconds]
fotte has joined #yocto
Guest92 has joined #yocto
ray-san2 has joined #yocto
jmd has quit [Remote host closed the connection]
goliath has joined #yocto
eminboydak has joined #yocto
ChanServ has quit [shutting down]
ChanServ has joined #yocto
Guest92 has quit [Ping timeout: 256 seconds]
leon-anavi has joined #yocto
florian has joined #yocto
Guest72 has joined #yocto
ray-san2 has quit [Remote host closed the connection]
mckoan|away is now known as mckoan
ray-san has joined #yocto
dlan has quit [Ping timeout: 255 seconds]
florian__ has joined #yocto
dlan has joined #yocto
eminboydak has quit [Quit: Client closed]
xmn has quit [Ping timeout: 252 seconds]
xmn has joined #yocto
pbiel has joined #yocto
alessioigor has joined #yocto
Guest92 has joined #yocto
Guest89 has joined #yocto
<RP>
jonmason: I think we saw a smaller number of issues (1-2?) on qemuarm or qemuarm64. SWAT is unfortunatley behind :(
<Guest89>
Hi everyone! can anyone guess what error I am getting
<Guest89>
mckoan I am building linux within my yocto image
BenBE has joined #yocto
<jclsn>
Is libgpiod not sufficient to get the gpioinfo commands etc?
<jclsn>
ah libgpiod-tools is split into its own package
<mckoan>
Guest89: directly in work-shared? No way
<Guest89>
mckoan I don't really comprehend why do it do in work-shared I am just doing "bitbake image". Do you think it's a problem? Could you suggest how could I solve it
<mckoan>
Guest89: I don't have enough information, sorry
<Guest89>
mckoan I thinbk I am building a kernel module that is why it does it in work-shared
alessioigor has quit [Remote host closed the connection]
frosteyes has quit [Ping timeout: 252 seconds]
frosteyes has joined #yocto
Guest72 has quit [Ping timeout: 256 seconds]
Jones42_ is now known as Jones42
mckoan is now known as mckoan|away
<Jones42>
regarding the TEMPLATECONF: won't overwrite files that are already in build/conf, right?
mbulut has quit [Remote host closed the connection]
mbulut has joined #yocto
amitk has quit [Ping timeout: 260 seconds]
Omax has quit [Ping timeout: 276 seconds]
sakoman has quit [Ping timeout: 244 seconds]
<RP>
Jones42: correct
<Jones42>
thanks!
Omax has joined #yocto
sakoman has joined #yocto
sakoman has quit [Ping timeout: 244 seconds]
sakoman has joined #yocto
eminboydak has joined #yocto
leonanavi has joined #yocto
mvlad has joined #yocto
leon-anavi has quit [Ping timeout: 276 seconds]
lexano has joined #yocto
tgamblin has quit [Remote host closed the connection]
tgamblin has joined #yocto
eminboydak has quit [Ping timeout: 256 seconds]
pbiel has quit [Ping timeout: 260 seconds]
fotte has quit [Quit: Leaving]
dvergata1 is now known as Dvergatal
tgamblin has quit [Read error: Connection reset by peer]
tgamblin has joined #yocto
<Dvergatal>
hi all I have a question I'm switching currently from kirkstone to scarthgap and I have noticed issues with TARGET_VENDOR variable causing issues on scarthgap, meaning that I have it set for our company name and for some packages it throws an error UnrecognizedVendor during compilation of e.g. python3-cryptography
<Dvergatal>
am I missing something?
sgw has quit [Ping timeout: 244 seconds]
sgw has joined #yocto
alessioigor has joined #yocto
<Guest92>
Hi Everyone! is it possible in yocto to build one recipe with one version of gcc and others with other? If yes, how could I add it in individual recipe to do that
Minvera has joined #yocto
<RP>
Dvergatal: it is supposed to work, is there anything "interesting" about what you're setting it to like extra dashes ?
<RP>
guest92: possible and a long time ago that used to happen with the kernel but it isn't easy. You can see how meta-clang uses a different compiler for some recipes for example
Starfoxxes has joined #yocto
<Guest92>
RP do you have any recipe in mind from meta-clang?
<RP>
guest92: it isn't simple since you can't just build a different version of gcc, you need all of the other gcc's runtime libs and so on too. There isn't an easy example of that
<Guest92>
RP did you mean something like musl
<RP>
guest92: I guess if I was trying it now I'd consider a multiconfig where one recipe was built in one multiconfig and the rest in another
Perflosopher has quit [Read error: Connection reset by peer]
Perflosopher0 has joined #yocto
Tyaku has quit [Quit: Lost terminal]
<Dvergatal>
RP: so it did fix the issue
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
amitk has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
<RP>
Dvergatal: that is interesting. I guess there is something about capitals in vendor that don't work well. Perhaps we should just make that a QA check?
jmd has joined #yocto
alessioigor has quit [Ping timeout: 256 seconds]
florian__ has quit [Ping timeout: 245 seconds]
<mbulut>
am i right assuming that the linux-imx kernel recipe does not support config fragments?
<mbulut>
do i have to patch the defconfig if i want to manipulate kernel options?
florian__ has joined #yocto
florian__ has quit [Ping timeout: 260 seconds]
<Dvergatal>
RP: perhaps, how can I help?
florian__ has joined #yocto
leonanavi has quit [Quit: Leaving]
tgamblin_ has joined #yocto
tgamblin has quit [Ping timeout: 276 seconds]
Starfoxxes has quit [Remote host closed the connection]
tgamblin_ is now known as tgamblin
mvlad has quit [Remote host closed the connection]
alessioigor has joined #yocto
rob_w has joined #yocto
amitk has quit [Ping timeout: 260 seconds]
khem has quit [Quit: WeeChat 4.3.5]
amitk has joined #yocto
alessioigor has quit [Remote host closed the connection]
prabhakalad has quit [Remote host closed the connection]
prabhakalad has joined #yocto
cabazon17 has joined #yocto
<cabazon17>
Hi, my package requires golang to compile. Should I add 'go-native' to DEPENDS or rather use inherit ... syntax?
BenBE has quit [Ping timeout: 244 seconds]
mbulut has quit [Ping timeout: 260 seconds]
jmd has quit [Remote host closed the connection]
<mischief>
cabazon17: you should use the class.
<cabazon17>
mischief this one - ./meta/classes/go.bbclass ?
cabazon17 has quit [Quit: Client closed]
cabazon6 has joined #yocto
<mischief>
probably
rob_w has quit [Quit: Leaving]
marka has quit [Ping timeout: 276 seconds]
marka has joined #yocto
<cabazon6>
do you know of any recipes that use golang to build? I would love to check them out
<cabazon6>
I guess I could follow this one - meta/recipes-extended/go-examples/go-helloworld_0.1.bb
amitk has quit [Ping timeout: 245 seconds]
olani- has joined #yocto
<mischief>
you need to be careful about things like go for license tracking. yocto does not have a good way to track licenses of the modules.