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: 268 seconds]
Vonter has joined #yocto
prabhakarlad has quit [Quit: Client closed]
honistorrent has quit [Quit: Client closed]
honistorrent has joined #yocto
<honistorrent> Can anyone tell me what causes a -src package to be empty? I've got some packages which are empty and some that are not, but I can't seem to find anything in the manual that describes this behavior
lexano has quit [Ping timeout: 268 seconds]
goliath has quit [Quit: SIGSEGV]
honistorrent has quit [Quit: Client closed]
honistorrent has joined #yocto
KhazAkar has quit [Quit: Connection closed for inactivity]
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<khem> honistorrent: it depends on license of the component, as well.
<khem> are these opensource packages which end up empty with =src
<honistorrent> They are, though I do have appends added. Perhaps the license was overridden, I can check that
<honistorrent> Doesn't appear LICENSE change...
<honistorrent> khem I had a network hiccup in between my question and your recent response, apart from license, was there something else that could cause this? Apologies for asking you to repeat yourself
GNUmoon has quit [Ping timeout: 264 seconds]
davidinux has quit [Ping timeout: 245 seconds]
<khem> honistorrent: ok tell me one such package which has empty -src package
<khem> I can try to see the reason
<honistorrent> My bbappend changes the the URL to an internal mirror with some customizations
davidinux has joined #yocto
<honistorrent> I compared that to a slew of other open source packages that do indeed have a -src variant
<honistorrent> I don't necessarily need the -src variant, I'm more so just trying to understand under what conditions it is empty
honistorrent44 has joined #yocto
Maxxed has quit [Remote host closed the connection]
Maxxed has joined #yocto
honistorrent has quit [Ping timeout: 250 seconds]
GNUmoon has joined #yocto
Oxbef has joined #yocto
ablu has quit [Ping timeout: 240 seconds]
ablu has joined #yocto
Marmottus has quit [Server closed connection]
Marmottus has joined #yocto
Daanct12 has joined #yocto
Minvera has quit [Ping timeout: 256 seconds]
ray-san has joined #yocto
jclsn has quit [Ping timeout: 240 seconds]
jclsn has joined #yocto
otavio has quit [Server closed connection]
otavio has joined #yocto
ray-san has quit [Ping timeout: 246 seconds]
Vonter has quit [Ping timeout: 268 seconds]
Vonter has joined #yocto
tin_ has quit [Server closed connection]
tin_ has joined #yocto
KhazAkar has joined #yocto
Oxbef has quit [Quit: Client closed]
C-o-r-E has quit [Quit: reboot]
C-o-r-E has joined #yocto
tgamblin has quit [Server closed connection]
tgamblin has joined #yocto
jmd has joined #yocto
rob_w has joined #yocto
ray-san has joined #yocto
ray-san has quit [Ping timeout: 268 seconds]
linfax has joined #yocto
ray-san has joined #yocto
alessioigor has joined #yocto
frieder has joined #yocto
jmd has quit [Remote host closed the connection]
linfax has quit [Remote host closed the connection]
linfax has joined #yocto
linfax has quit [Remote host closed the connection]
linfax has joined #yocto
mcfrisk has quit [Server closed connection]
mcfrisk has joined #yocto
ptsneves has joined #yocto
zpfvo has joined #yocto
rfuentess has joined #yocto
zpfvo has quit [Ping timeout: 260 seconds]
mckoan|away is now known as mckoan
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
ptsneves has quit [Ping timeout: 260 seconds]
alperak has joined #yocto
zpfvo has joined #yocto
Kubu_work has joined #yocto
taruu has joined #yocto
<alperak> There are COPYING and COPYING.LIB in a repository, which one should I use for LIC_FILES_CHKSUM?
<mckoan> alperak: you should find the license file inside the package managed by your recipe
<alperak> I was actually curious about the difference between the two.
ptsneves has joined #yocto
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
<mckoan> alperak: read them to understand the content
<alperak> mckoan thanks!
OnkelUlla has quit [Server closed connection]
OnkelUlla has joined #yocto
prabhakar has quit [Ping timeout: 256 seconds]
taruu has quit [Ping timeout: 245 seconds]
taruu has joined #yocto
Rich_1234 has quit [Quit: Connection closed]
Guest97 has joined #yocto
Guest97 is now known as Rich_1234
KhazAkar has quit [Quit: Connection closed for inactivity]
ldts has quit []
radanter has joined #yocto
Rich_1234 has quit [Quit: Connection closed]
Guest97 has joined #yocto
Guest97 is now known as Rich_1234
Rich_1234 has quit [Client Quit]
Guest97 has joined #yocto
Guest97 is now known as Rich_1234
rsalveti has joined #yocto
manuel1985 has joined #yocto
leon-anavi has joined #yocto
erbo has quit [Server closed connection]
erbo has joined #yocto
rty has joined #yocto
<rty> hi. I was wondering, what are my options regarding the following problem. I would like to have 'dev' and 'prod' builds, which may contain the same recipe, but in a slightly different version. for example, it's an upstream recipe from poky, e.g. iptables. in 'dev', I want one set of modifications, in 'prod', I want the other set. if I use images to
<rty> represent 'dev' and 'prod', then what are the options to tell yocto to put different versions of iptables depending on which image is being built? ideally, I want a single iptables bbappend where I can :append:dev and :append:prod, or something like that. but I don't think it's easily achievable. e.g. if I append ":dev" to OVERRIDES in
<rty> dev-image.bb, then iptables bbappend will ignore this, because I cannot change an arbitrary recipe from another arbitrary recipe (which dev-image.bb is), I can only do this in a *.conf. but then, images don't have a .conf, so if I wanted to achieve the override syntax in a single iptables bbappend, I would have to define 'dev' and 'prod' as distros
<rty> and use DISTROOVERRIDES. is this correct? another option would be to copy iptables recipe to a local layer and define multiple bb versions of it, and use PREFERRED_VERSION. is this correct? are there any other ways?
prabhakarlad has joined #yocto
prabhakar has joined #yocto
<RP> JaMa: Since you identified all the locations with your patch, I'm now wondering if we should parameterise /usr/src/debug/${PN}/${PV} with a variable like TARGET_DBGSRC_DIR or something
<mckoan> rty: you can steer 'dev' and 'prod' variants using a DISTRO and override operators
<rty> so, my assumption is correct that if I want to use override syntax, my only option is to represent 'dev' and 'prod' as distros?
zkrx has quit []
<rty> mckoan: sorry, forgot to tag you
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
zkrx has joined #yocto
_lore_ has quit [Server closed connection]
_lore_ has joined #yocto
zkrx has quit [Read error: Connection reset by peer]
manuel_ has joined #yocto
zkrx has joined #yocto
manuel1985 has quit [Ping timeout: 246 seconds]
<mckoan> rty: I usually do that way
<rty> mckoan: thanks
<rburton> alperak: if there's both files then the code is probably either dual licensed or different licenses apply to different parts. If you're using the code then this is on you to understand. The LICENSE fields should partially explain but the checksums are *solely* so that the recipe can alert if the license text changes.
<alperak> rburton thanks!
georgem has quit [Server closed connection]
georgem has joined #yocto
<JaMa> RP: yes, I was wondering about that as well, there are 10+ recipes in meta-oe layers as well, should I send v4?
<LetoThe2nd> yo dudX
<RP> JaMa: if you wouldn't mind, would be good to tidy this up
<JaMa> ok, will do
rty has quit [Quit: Client closed]
<RP> JaMa: thanks
<mckoan> LetoThe2nd: hey! how's going throwing boxes?
<LetoThe2nd> mckoan: didn't get hit another time, so good :)
mdp has quit [Server closed connection]
mdp has joined #yocto
efeschiyan has quit [Server closed connection]
efeschiyan has joined #yocto
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
honistorrent44 has left #yocto [#yocto]
honistorrent44 has joined #yocto
honistorrent44 is now known as Oxbef
Oxbef has left #yocto [#yocto]
isshin has joined #yocto
<isshin> I've got a kernel module recipe that "inherit module". Trying to build in the eSDK with kernel-devsrc, but it's still trying to do_fetch the kernel. Is it not possible to use that module recipe and point it at the kernel-devsrc already in the SDK?
<mckoan> isshin: AFAIK no, but you can build a out-of-tree module using the SDK without a recipe
<isshin> Argh I was afraid of that
<isshin> Is that bbclass not building it out of tree?
<mckoan> isshin: yes, let's say out-of-yocto
zpfvo has quit [Ping timeout: 260 seconds]
zpfvo has joined #yocto
<isshin> Okay, thanks for the clarification!
danlor has joined #yocto
<mckoan> isshin: you couls try to treat the module as a normal package, creating a custom Makefile and do_compile. Don't use "inherit module"
<mckoan> * could
<isshin> Yeah I'm thinking I'm just going to have to do that.
<isshin> Then I can point the KERNEL_SRC at the kernel-devsrc install location
<mckoan> isshin: that's the idea
zpfvo has quit [Ping timeout: 246 seconds]
zpfvo has joined #yocto
mckoan is now known as mckoan|away
taruu has quit [Ping timeout: 246 seconds]
alessioigor has quit [Quit: alessioigor]
taruu has joined #yocto
alessioigor has joined #yocto
smooge has quit [Server closed connection]
smooge has joined #yocto
<alperak> I was going to update a recipe, but in the previous releases they used something like "v2.1.0" and then they started to date it, for example "v2023.04.17". would it make sense to do it like this when updating the recipe:
<alperak> foo_git.bb
<alperak> PV = "v2023.04.17+git${SRCPV}
ad__ has joined #yocto
ad__ has quit [Changing host]
sayo9394__ has quit [Remote host closed the connection]
<rburton> if the SRCREV you're checking out is the tag then personally I'd put the version in the filename, without the v
sayo9394__ has joined #yocto
<rburton> luckily 2.1.0 < 2023.04.17 so you don't need to use an epoch
<alperak> rburton thanks!
<rburton> also if you're fetching the tag then you don't need the +git piece in PV
<rburton> +git is mainly for "arbitrary git sha"
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
isshin has quit [Quit: Client closed]
danlor has quit [Quit: Client closed]
prabhakarlad has quit [Quit: Client closed]
alperak has quit [Quit: Client closed]
yocton has quit [Server closed connection]
yocton has joined #yocto
Marmottus has quit [Quit: The Lounge - https://thelounge.chat]
Marmottus1 has joined #yocto
ptsneves has quit [Ping timeout: 260 seconds]
ptsneves has joined #yocto
lexano has joined #yocto
ykrons has quit [Server closed connection]
ykrons has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
<dvergatal> rburton: I have explained it in answer to RP
alperak has joined #yocto
Daanct12 has quit [Quit: WeeChat 4.1.1]
wmills_ has joined #yocto
zpfvo has quit [Ping timeout: 260 seconds]
rfuentess has quit [Ping timeout: 260 seconds]
zpfvo has joined #yocto
rfuentess has joined #yocto
kanavin has joined #yocto
zpfvo has quit [Ping timeout: 256 seconds]
zpfvo has joined #yocto
KhazAkar has joined #yocto
belsirk has joined #yocto
rfuentess has quit [Ping timeout: 260 seconds]
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
wCPO has quit [Server closed connection]
wCPO has joined #yocto
dgriego has quit [Server closed connection]
u4ia has quit [Server closed connection]
u4ia has joined #yocto
dgriego has joined #yocto
rob_w has quit [Remote host closed the connection]
<manuel_> Hmm.. Is git-lfs available for yocto? It's a tool seperate to git. But I couldn't find it in the oe layerindex.
Minvera has joined #yocto
<rburton> manuel_: if its not in the layer index then nobody has written a recipe. we support git-lfs on the host if you just want to fetch repositories with lfs content though.
<rburton> if you want it on the target, you'll need to write a recipe
taruu has quit [Remote host closed the connection]
targetdisk has quit [Server closed connection]
targetdisk has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
khem has quit [Quit: Connection closed for inactivity]
alperak2 has joined #yocto
alperak2 has quit [Client Quit]
alperak48 has joined #yocto
alperak has quit [Ping timeout: 250 seconds]
alperak48 has quit [Client Quit]
alperak has joined #yocto
Xagen has joined #yocto
|Xagen has joined #yocto
Xagen has quit [Ping timeout: 256 seconds]
|Xagen has quit [Quit: Textual IRC Client: www.textualapp.com]
Xagen has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
ptsneves1 has joined #yocto
ptsneves has quit [Ping timeout: 260 seconds]
ptsneves1 is now known as ptsneves
mvlad has joined #yocto
belsirk is now known as rfuentess
shoragan has quit [Server closed connection]
shoragan has joined #yocto
<JaMa> was there some known issue related to ERROR: core-image-minimal-1.0-r0 do_rootfs: No SPDX file found for package base-files, False sstate:base-files:qemux86_64-poky-linux:3.0.14:r0:qemux86_64:11: sstate:base-files::3.0.14:r0::11: ? I'm seeing it in couple oeqa tests
<JPEW> JaMa: We had seen some a while ago; it seemed like some sort of signature mismatch that we had a lot of trouble tracking down
<JaMa> ok, I'm seeing it with latest master
<JaMa> in spdx.SPDXCheck.test_spdx_base_files wic.Wic.test_iso_image wic.Wic.test_mkefidisk wic.Wic.test_permissions wic.Wic2.test_efi_plugin_unified_kernel_image_qemu wic.Wic2.test_expand_mbr_image wic.Wic2.test_wic_image_type will check what's going on
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
rfuentess has quit [Remote host closed the connection]
kayterina3 has joined #yocto
lexano has quit [Ping timeout: 256 seconds]
skokkonda has joined #yocto
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
khem has joined #yocto
MrFrank has quit [Server closed connection]
MrFrank has joined #yocto
rsalveti has quit [Quit: Connection closed for inactivity]
linfax has quit [Ping timeout: 246 seconds]
goliath has joined #yocto
lexano has joined #yocto
danlor has joined #yocto
prabhakar has quit [Ping timeout: 256 seconds]
sayo9394__ has quit [Remote host closed the connection]
sayo9394__ has joined #yocto
alejandrohs has quit [Server closed connection]
alejandrohs has joined #yocto
sayo9394_ has joined #yocto
sayo9394__ has quit [Ping timeout: 246 seconds]
ray-san has quit [Ping timeout: 246 seconds]
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
kayterina3 has quit [Remote host closed the connection]
danlor has quit [Quit: Client closed]
isshin has joined #yocto
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
manuel_ has quit [Ping timeout: 268 seconds]
dgriego has quit [Ping timeout: 260 seconds]
dgriego has joined #yocto
jmd has joined #yocto
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
florian has joined #yocto
flom84 has joined #yocto
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
frieder has quit [Remote host closed the connection]
sgw has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
flom84 has quit [Ping timeout: 260 seconds]
<alperak> good night everyone
alperak has quit [Quit: Client closed]
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
yannd has quit [Server closed connection]
yannd has joined #yocto
prabhakarlad has joined #yocto
prabhakar has joined #yocto
simond4722 has quit [Server closed connection]
simond4722 has joined #yocto
rfried has quit [Server closed connection]
rfried has joined #yocto
RobW has joined #yocto
zpfvo has quit [Ping timeout: 256 seconds]
zpfvo has joined #yocto
alessioigor has quit [Quit: alessioigor]
rcw has quit [Ping timeout: 255 seconds]
sakman has quit [Quit: Leaving]
zpfvo has quit [Ping timeout: 256 seconds]
zpfvo has joined #yocto
ptsneves has quit [Ping timeout: 260 seconds]
skokkonda has quit [Quit: Client closed]
rfs613 has quit [Server closed connection]
rfs613 has joined #yocto
Kubu_work has quit [Quit: Leaving.]
sakman has joined #yocto
mvlad has quit [Remote host closed the connection]
Lihis has quit [Server closed connection]
Lihis has joined #yocto
jmd has quit [Remote host closed the connection]
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
KhazAkar has quit [Quit: Connection closed for inactivity]
Minvera has quit [Ping timeout: 256 seconds]
leon-anavi has quit [Quit: Leaving]
zpfvo has quit [Ping timeout: 260 seconds]
zpfvo has joined #yocto
zpfvo has quit [Ping timeout: 256 seconds]
zpfvo has joined #yocto
sayo9394_ has quit [Remote host closed the connection]
sayo9394_ has joined #yocto
florian has quit [Ping timeout: 260 seconds]
isshin has quit [Quit: Client closed]
Vonter has quit [Ping timeout: 256 seconds]
Vonter has joined #yocto
florian has joined #yocto
prabhakarlad has quit [Quit: Client closed]
pidge has quit [Server closed connection]