Saturday, 2023-09-23

*** lexano <lexano!~lexano@174.119.69.134> has quit IRC (Ping timeout: 244 seconds)00:12
*** hrberg <hrberg!~quassel@171.79-160-161.customer.lyse.net> has joined #yocto00:41
*** xmn_ <xmn_!~xmn@2600:4040:9390:8c00:d8ad:803d:6698:90d0> has joined #yocto00:51
*** xmn <xmn!~xmn@2600:4040:9390:8c00:d8ad:803d:6698:90d0> has quit IRC (Ping timeout: 255 seconds)00:52
*** davidinux <davidinux!~davidinux@45.11.80.134> has quit IRC (Ping timeout: 246 seconds)01:03
*** davidinux <davidinux!~davidinux@45.11.80.142> has joined #yocto01:05
*** brazuca <brazuca!~brazuca@2804:7f4:3598:bdc1:f54b:9b19:177e:a65a> has quit IRC (Quit: Client closed)01:07
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has quit IRC (Quit: ZNC - http://znc.in)01:20
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has joined #yocto01:21
*** Ablu <Ablu!~Ablu@user/Ablu> has quit IRC (Ping timeout: 240 seconds)01:26
*** Ablu <Ablu!~Ablu@user/Ablu> has joined #yocto01:28
*** Daanct12 <Daanct12!~danct12@user/danct12> has joined #yocto01:39
*** Daanct12 <Daanct12!~danct12@user/danct12> has quit IRC (Ping timeout: 240 seconds)01:47
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Ping timeout: 258 seconds)02:09
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto02:11
*** Daanct12 <Daanct12!~danct12@user/danct12> has joined #yocto02:19
*** khem <khem!uid220931@id-220931.helmsley.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)02:47
*** jclsn <jclsn!~jclsn@2a04:4540:653a:1300:2ce:39ff:fecf:efcd> has quit IRC (Ping timeout: 240 seconds)02:48
*** jclsn <jclsn!~jclsn@2a04:4540:653a:e000:2ce:39ff:fecf:efcd> has joined #yocto02:50
*** xmn_ <xmn_!~xmn@2600:4040:9390:8c00:d8ad:803d:6698:90d0> has quit IRC (Quit: xmn_)03:19
*** pbsds <pbsds!~pbsds@84.20.102.94> has quit IRC (Ping timeout: 240 seconds)03:28
*** pbsds <pbsds!~pbsds@84.20.102.94> has joined #yocto03:36
*** xmn <xmn!~xmn@2600:4040:9390:8c00:d8ad:803d:6698:90d0> has joined #yocto03:55
*** amitk <amitk!~amit@58.84.61.37> has joined #yocto04:12
*** _whitelogger <_whitelogger!~whitelogg@uruz.whitequark.org> has quit IRC (Remote host closed the connection)04:30
*** _whitelogger <_whitelogger!~whitelogg@uruz.whitequark.org> has joined #yocto04:33
*** amitk <amitk!~amit@58.84.61.37> has quit IRC (Ping timeout: 244 seconds)04:57
*** amitk <amitk!~amit@58.84.61.37> has joined #yocto04:59
*** _lore_ <_lore_!~lorenzo@net-2-34-76-254.cust.vodafonedsl.it> has quit IRC (Ping timeout: 240 seconds)05:17
*** __lore__ <__lore__!~lorenzo@net-188-218-191-45.cust.vodafonedsl.it> has joined #yocto05:17
*** Danct12 <Danct12!~danct12@user/danct12> has quit IRC (Read error: Connection reset by peer)05:18
*** Daanct12 <Daanct12!~danct12@user/danct12> has quit IRC (Read error: Connection reset by peer)05:46
*** Danct12 <Danct12!~danct12@user/danct12> has joined #yocto05:47
*** ykrons <ykrons!~guillaume@62.192.23.101> has quit IRC (Ping timeout: 258 seconds)07:35
*** brrm <brrm!~brrm@ip-078-043-203-234.um18.pools.vodafone-ip.de> has quit IRC (Ping timeout: 264 seconds)07:53
*** brrm <brrm!~brrm@ip-078-043-203-234.um18.pools.vodafone-ip.de> has joined #yocto08:02
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has joined #yocto08:32
*** flom84 <flom84!~flom84@user/flom84> has joined #yocto08:51
rburtonsakoman: just sent kernel cve exclusion updates for kirkstone and mickledore. would be good if they landed before the CVE reports :)09:47
*** flom84 <flom84!~flom84@user/flom84> has quit IRC (Quit: Leaving)10:47
*** Guest8 <Guest8!~Guest41@host-89-241-87-173.as13285.net> has joined #yocto11:06
Guest8I have a recipe which installs pre-compiled binaries and works well, am curioous about crreating a -dev variant of that package which would install the header files. How can I do that? at the moment te recipe installs everythinh (libraries, headers...) the purpose is to only install the headers if <name of recipe>-dev is in local.conf11:09
Guest8in other words if local.conf only mentions <recipe> then only install binaries, if <name of recipe>-dev is mentionned as well then install everything11:11
rburtonwrite the recipe exactly like every other recipe. if you install the headers to /usr/include then they'll be packaged into recipename-dev and only installed if you ask11:15
Guest8no need for FILES_${PN}-dev ???11:16
Guest8or other artefacts?11:16
rburtonthe default FILES:${PN}-dev is ${includedir}11:16
rburtonso put the headers there, where they belong, and it will just work11:17
Guest8ah that explains11:17
rburtonif you want them somewhere else then set FILES as needed11:17
rburtonmost recipes dont set FILES or PACKAGES, the defaults are sensible11:17
Guest8can bitbake <recipe name>-dev work?11:18
Guest8and only produces the include files?11:18
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has quit IRC (Ping timeout: 240 seconds)11:18
rburtonno11:19
rburtonyou bitbake a recipe11:19
rburtonthat builds all the packages11:19
Guest8of coourse11:19
Guest8thank you11:19
*** Danct12 <Danct12!~danct12@user/danct12> has quit IRC (Quit: WeeChat 4.0.4)11:21
*** Danct12 <Danct12!~danct12@user/danct12> has joined #yocto11:25
*** xmn <xmn!~xmn@2600:4040:9390:8c00:d8ad:803d:6698:90d0> has quit IRC (Ping timeout: 240 seconds)11:26
*** Danct12 <Danct12!~danct12@user/danct12> has quit IRC (Quit: WeeChat 4.0.4)11:31
*** Danct12 <Danct12!~danct12@user/danct12> has joined #yocto11:36
*** Danct12 <Danct12!~danct12@user/danct12> has quit IRC (Quit: WeeChat 4.0.4)11:56
*** Estrella <Estrella!~quassel@2603-8080-d700-7495-7e05-07ff-fe93-9961.res6.spectrum.com> has quit IRC (Remote host closed the connection)12:19
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Ping timeout: 240 seconds)12:19
*** _lore_ <_lore_!~lorenzo@net-188-218-191-45.cust.vodafonedsl.it> has joined #yocto12:20
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto12:21
*** __lore__ <__lore__!~lorenzo@net-188-218-191-45.cust.vodafonedsl.it> has quit IRC (Ping timeout: 244 seconds)12:22
abellonimcfrisk: https://autobuilder.yocto.io/pub/non-release/20230922-34/testresults/qemuarm64-ptest/openssh.log12:33
*** Estrella <Estrella!~quassel@134.238.165.31> has joined #yocto12:48
*** Estrella__ <Estrella__!~quassel@2603-8080-d700-7495-5daa-a082-90ce-8aa6.res6.spectrum.com> has quit IRC (Ping timeout: 246 seconds)12:51
*** lexano <lexano!~lexano@174.119.69.134> has joined #yocto12:56
*** __lore__ <__lore__!~lorenzo@net-188-218-191-45.cust.vodafonedsl.it> has joined #yocto13:15
*** Estrella__ <Estrella__!~quassel@2603-8080-d700-7495-342d-a36b-168f-0645.res6.spectrum.com> has joined #yocto13:18
*** _lore_ <_lore_!~lorenzo@net-188-218-191-45.cust.vodafonedsl.it> has quit IRC (Ping timeout: 264 seconds)13:18
*** lexano <lexano!~lexano@174.119.69.134> has quit IRC (Ping timeout: 244 seconds)13:19
*** Estrella_ <Estrella_!~quassel@2603-8080-d700-7495-8015-871d-4267-20cb.res6.spectrum.com> has quit IRC (Ping timeout: 246 seconds)13:21
*** Danct12 <Danct12!~danct12@user/danct12> has joined #yocto13:30
*** amitk <amitk!~amit@58.84.61.37> has quit IRC (Ping timeout: 264 seconds)13:48
*** pbsds <pbsds!~pbsds@84.20.102.94> has quit IRC (Ping timeout: 240 seconds)13:49
*** pbsds <pbsds!~pbsds@84.20.102.94> has joined #yocto13:58
*** amitk <amitk!~amit@58.84.61.37> has joined #yocto14:04
*** Estrella__ <Estrella__!~quassel@2603-8080-d700-7495-342d-a36b-168f-0645.res6.spectrum.com> has quit IRC (Ping timeout: 248 seconds)14:34
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has joined #yocto14:40
*** khem <khem!uid220931@id-220931.helmsley.irccloud.com> has joined #yocto14:41
*** Guest8 <Guest8!~Guest41@host-89-241-87-173.as13285.net> has quit IRC (Quit: Client closed)14:46
*** Estrella_ <Estrella_!~quassel@2603-8080-d700-7495-342d-a36b-168f-0645.res6.spectrum.com> has joined #yocto14:55
*** Estrella_ <Estrella_!~quassel@2603-8080-d700-7495-342d-a36b-168f-0645.res6.spectrum.com> has quit IRC (Ping timeout: 258 seconds)15:08
*** Estrella_ <Estrella_!~quassel@075-081-060-240.res.spectrum.com> has joined #yocto15:19
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has quit IRC (Ping timeout: 244 seconds)15:22
*** lexano <lexano!~lexano@174.119.69.134> has joined #yocto15:46
yates_workwhen running bitbake -f -c do_configure <some-recipe>, i'm getting "WARNING: /mnt/NVMe2/yocto-hp9015e/meta-qt5/recipes-qt/qt5/qtbase_git.bb:do_configure is tainted from a forced run"16:20
yates_workwhat are the consequences of being tainted?16:21
yates_workalso related, if you use -c do_blah, doesn't yocto actually do all the tasks up to and including blah?16:22
yates_workif the answer is "no"  then is that the meaning of the "tainted" warning?16:23
*** ykrons <ykrons!~guillaume@62.192.23.101> has joined #yocto16:32
*** khem <khem!uid220931@id-220931.helmsley.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)16:50
mischiefyates_work: i think it just invalidates the stamp so that it runs again, and, no, previous tasks wont run if they aren't also invalidated i believe16:54
*** Ram-Z <Ram-Z!~Ram-Z@li1814-254.members.linode.com> has quit IRC (Ping timeout: 252 seconds)16:56
yates_workmischief: ok thanks16:59
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has joined #yocto16:59
yates_workif i do a DISTRO_FEATURES:append = " blah1" in a recipe, does that change the DISTRO_FEATURES for all other subsequent recipes? or is it only that recipe?17:02
*** Ram-Z <Ram-Z!~Ram-Z@li1814-254.members.linode.com> has joined #yocto17:03
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Ping timeout: 264 seconds)17:05
mischiefvariables set in a recipe only affect that recipe17:05
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has quit IRC (Ping timeout: 244 seconds)17:05
mischiefyou can check this with bitbake -e <recipe>17:05
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto17:06
*** PhoenixMage <PhoenixMage!~phoenix@206.83.112.219> has quit IRC (Ping timeout: 244 seconds)17:09
*** PhoenixMage <PhoenixMage!~phoenix@206.83.112.219> has joined #yocto17:13
yates_workgreat info!17:25
*** lexano <lexano!~lexano@174.119.69.134> has quit IRC (Remote host closed the connection)17:35
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has joined #yocto17:38
*** lexano <lexano!~lexano@174.119.69.134> has joined #yocto17:52
*** alex88 <alex88!~alex88@user/alex88> has quit IRC (Ping timeout: 245 seconds)17:57
*** alex88 <alex88!~alex88@user/alex88> has joined #yocto17:59
*** alex88 <alex88!~alex88@user/alex88> has quit IRC (Read error: Connection reset by peer)18:05
*** alex88 <alex88!~alex88@user/alex88> has joined #yocto18:08
*** l3s8g <l3s8g!~l3s8g@p200300de171f520000000000000005e9.dip0.t-ipconnect.de> has joined #yocto18:26
*** alessioigor <alessioigor!~alessioig@185.178.95.233> has joined #yocto18:41
*** alessioigor <alessioigor!~alessioig@185.178.95.233> has quit IRC (Quit: alessioigor)18:51
*** xmn <xmn!~xmn@2600:4040:9390:8c00:795c:d57d:cc0f:948b> has joined #yocto19:49
*** lexano <lexano!~lexano@174.119.69.134> has quit IRC (Remote host closed the connection)19:53
*** goliath <goliath!~goliath@user/goliath> has joined #yocto19:58
*** amitk_ <amitk_!~amit@58.84.60.62> has joined #yocto20:08
*** amitk <amitk!~amit@58.84.61.37> has quit IRC (Ping timeout: 244 seconds)20:09
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Ping timeout: 245 seconds)20:10
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto20:12
*** l3s8g <l3s8g!~l3s8g@p200300de171f520000000000000005e9.dip0.t-ipconnect.de> has quit IRC (Quit: l3s8g)20:44
*** GillesMM <GillesMM!~gilles@116.79.123.78.rev.sfr.net> has joined #yocto20:48
*** GillesMM <GillesMM!~gilles@116.79.123.78.rev.sfr.net> has quit IRC (Remote host closed the connection)20:48
*** l3s8g <l3s8g!~l3s8g@p200300de171f520000000000000005e9.dip0.t-ipconnect.de> has joined #yocto20:49
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has quit IRC (Ping timeout: 240 seconds)20:51
*** l3s8g <l3s8g!~l3s8g@user/l3s8g> has quit IRC (Client Quit)20:52
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Ping timeout: 260 seconds)21:07
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto21:08
*** dvergatal <dvergatal!~dvergatal@185.53.145.32> has quit IRC (Ping timeout: 258 seconds)21:20
*** dvergatal <dvergatal!~dvergatal@185.53.145.32> has joined #yocto21:22
*** lexano <lexano!~lexano@174.119.69.134> has joined #yocto21:26
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV)21:56
*** alex88 <alex88!~alex88@user/alex88> has quit IRC (Ping timeout: 260 seconds)22:16
*** dvergatal <dvergatal!~dvergatal@185.53.145.32> has quit IRC (Quit: Lost terminal)22:21
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has joined #yocto22:57
*** sugarbeet <sugarbeet!~barbas@81.4.123.134> has quit IRC (Ping timeout: 244 seconds)23:02
*** sugarbeet <sugarbeet!~barbas@81.4.123.134> has joined #yocto23:03
*** florian_kc <florian_kc!~florian@dynamic-093-132-079-130.93.132.pool.telefonica.de> has quit IRC (Ping timeout: 255 seconds)23:33

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!