kergoth | it's not 'somepkglist', it's the package name | 00:00 |
---|---|---|
kergoth | i.e. '${PN}' | 00:00 |
paulg | well, in this case it is a hand crafted pkglist I've created. | 00:00 |
paulg | aking to packagegroup_base above etc. | 00:00 |
paulg | i.e. sth like this is what I'm trying to append grub to: | 00:01 |
paulg | RDEPENDS_packagegroup-builder-extended = "\ | 00:01 |
paulg | bash-completion \ | 00:01 |
paulg | bzip2 \ | 00:01 |
paulg | [...] | 00:01 |
paulg | and then I add: | 00:01 |
paulg | RDEPENDS_packagegroup-builder-extended_append_x86 = " grub" | 00:02 |
paulg | RDEPENDS_packagegroup-builder-extended_append_x86-64 = " grub" | 00:02 |
paulg | seems sane at 1st glance but when I added the two lines, it didn't rebundle my rootfs with grub in it for x86-64. | 00:03 |
kergoth | did you actually examine the value of RDEPENDS_packagegroup-builder-extended with bitbake -e ? | 00:03 |
paulg | I tried that but oddly it doesn't appear _at_all_ | 00:05 |
paulg | figured it just wasn't exported or similar... | 00:05 |
kergoth | bitbake -e doesn't only show exported variables | 00:06 |
kergoth | it won't show *unexported* vars, but it shows other vars exported or not | 00:06 |
paulg | Seems I only get to snoop a couple internal yocto pkglist vars.... | 00:08 |
paulg | $ bitbake -e cube-builder |grep RDEPENDS_packagegroup | 00:08 |
paulg | # $RDEPENDS_packagegroup-core-boot [2 operations] | 00:08 |
paulg | # $RDEPENDS_packagegroup-core-full-cmdline-sys-services | 00:08 |
kergoth | sounds like you've got other problems, then, if your changes aren't taking effect at all | 00:09 |
kergoth | i.e. that bbappend is in the wrong location so isn't parsed | 00:09 |
paulg | could be ; it is right underneath the main definition, so that seems sane | 00:10 |
paulg | I'll strip the _x86-64 suffix and see if just a bare _append works, as an intermediary test. | 00:10 |
paulg | maybe I've got the arch var wrong. | 00:10 |
kergoth | if the main definition isn't showing up in bitbake -e, something is seriously broken, override or not | 00:10 |
paulg | if so, I'll blame fray_ :) | 00:11 |
*** deviosity <deviosity!~deviosity@66.235.61.189> has quit IRC | 00:12 | |
paulg | ooh. that seems to have triggered a re-do of the do_rootfs step. | 00:13 |
paulg | (unfortunately that takes ages) | 00:14 |
*** IvanSB_ <IvanSB_!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 00:14 | |
*** IvanSB <IvanSB!~IvanSB@host136-114-dynamic.54-79-r.retail.telecomitalia.it> has quit IRC | 00:15 | |
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has joined #yocto | 00:16 | |
*** kscherer <kscherer!~kscherer@108.63.162.204> has quit IRC | 00:17 | |
paulg | ok, grub is now bundled in, so I've got the arch var wrong. (independent of wtf is happening with "bitbake -e") | 00:17 |
*** Guest49568 <Guest49568!~quassel@106.120.101.38> has quit IRC | 00:24 | |
*** glfernando <glfernando!~fernando@134.134.139.77> has joined #yocto | 00:24 | |
*** Jackie <Jackie!~quassel@106.120.101.38> has joined #yocto | 00:24 | |
*** Jackie is now known as Guest13287 | 00:25 | |
*** alimon1 <alimon1!~alimon@192.55.55.41> has quit IRC | 00:43 | |
*** IvanSB_ <IvanSB_!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 00:55 | |
megha_dey | Hi, when building the kernel from meta/recipes-kernel/linux, how does yocto know whether it has to provide a 32 bit configuration or a 64 bit one? [I tried setting the $MACHINE variable in the local.conf to x86_64, but when I build my custom kernel with no defconfig file provided, it by default takes the 32 bit config] | 01:03 |
paulg | megha_dey, I'm using the bleeding edge yocto-dev kernel, and I use this to piggy back off the existing sane config... | 01:14 |
paulg | MACHINE ?= "genericx86-64" | 01:14 |
paulg | # linux-yocto-dev won't get a sensible .config w/o the below | 01:14 |
paulg | KMACHINE_genericx86-64 ?= "common-pc-64" | 01:14 |
paulg | that is in my local.conf of course. | 01:14 |
megha_dey | paulg: thanks | 01:26 |
megha_dey | however i use MACHINE to be qemux86_64, I get the error: [ERROR] No configuration fragments found, this typically is a misconfigured BSP. | 01:27 |
megha_dey | | Check that fragments (or defconfigs) are referenced by the board description. | 01:27 |
megha_dey | | config of "standard/qemux86-64" failed | 01:27 |
*** nbigaouette <nbigaouette!~nbigaouet@198-48-203-166.cpe.pppoe.ca> has joined #yocto | 01:31 | |
paulg | odd | 01:35 |
paulg | qmeu 64 is standard boilerplate bsp in tree. | 01:35 |
paulg | i.e. you shouldn't need to do any extra magic when selecting that as your MACHINE. | 01:36 |
*** [Sno] <[Sno]!~sno@ip-95-223-195-210.hsi16.unitymediagroup.de> has joined #yocto | 01:36 | |
*** sno <sno!~sno@95.223.195.210> has quit IRC | 01:38 | |
* paulg still cant figure out why BLAH_append works but BLAH_append_${TRANSLATED_TARGET_ARCH} doesn't | 01:43 | |
paulg | with the expanded version of TTA of course. | 01:44 |
kergoth | double check that OVERRIDES has the expected value? | 01:44 |
paulg | in this case it is "x86-64" as seen expanded in OVERRIDES. | 01:44 |
paulg | :) | 01:44 |
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has joined #yocto | 01:44 | |
kergoth | could be there's a bug in the new overrides application at expansion-time rather than end-of-parse | 01:44 |
kergoth | but i'd expect it to have come up before now | 01:44 |
kergoth | still, thats a possibility | 01:44 |
paulg | yeah, I can't be the only sap trying to do this. | 01:45 |
paulg | will have to head out soon ; will investigate more tomorrow. | 01:45 |
paulg | kergoth, thanks for the input. | 01:45 |
kergoth | np. not sure how you'd verify it though, short of trying to revert those changes | 01:45 |
paulg | would be funny if the same time I was trying to do arch specific stuff was coincident with unrelated breakage. | 01:46 |
paulg | at least then I wouldn't feel so stoopid. | 01:46 |
kergoth | just for the hell of it, could try just using teh override without append | 01:46 |
paulg | interesting ; might try that when I get home in ~1/2hr | 01:47 |
* paulg waves | 01:47 | |
*** paulg <paulg!~paulg@OTWAON23-3096772825.sdsl.bell.ca> has quit IRC | 01:47 | |
*** pidge <pidge!~pidge@176.25.249.72> has quit IRC | 02:15 | |
*** pidge <pidge!~pidge@176.25.249.72> has joined #yocto | 02:18 | |
*** paulg <paulg!~paulg@198-84-207-67.cpe.teksavvy.com> has joined #yocto | 02:20 | |
nbigaouette | Hi all, I’m trying to write a yocto recipe for VTK but I’m having trouble doing so. I’ve found this layer https://github.com/mferland/meta-vtk but it’s an old version of VTK and many things changed. Does anybody has been successfull at cross-compiling VTK or writting a recipe? Note that my yocto target is an x86_64 Intel NUC so the cross-compilation is simply x86_64 -> x86_64… Thanks! | 02:22 |
*** pidge <pidge!~pidge@176.25.249.72> has quit IRC | 02:36 | |
*** manuel_ <manuel_!~manuel@AStrasbourg-551-1-31-55.w86-223.abo.wanadoo.fr> has quit IRC | 02:37 | |
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has quit IRC | 02:39 | |
* armpit sigh.. 5 accidents between here and home | 02:47 | |
* armpit Cal can't handle rain | 02:49 | |
*** bananadev <bananadev!~bananadev@117.6.99.240> has joined #yocto | 03:02 | |
*** armpit <armpit!~akuster@64.2.3.194> has quit IRC | 03:21 | |
*** paulg <paulg!~paulg@198-84-207-67.cpe.teksavvy.com> has quit IRC | 03:31 | |
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has quit IRC | 03:31 | |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 03:35 | |
*** nbigaouette <nbigaouette!~nbigaouet@198-48-203-166.cpe.pppoe.ca> has quit IRC | 03:40 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 03:41 | |
*** florian__ <florian__!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 03:46 | |
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has quit IRC | 03:50 | |
*** NileshKokane <NileshKokane!uid116340@gateway/web/irccloud.com/x-hnzafwfoctapauad> has joined #yocto | 04:53 | |
*** Nilesh__ <Nilesh__!uid116340@gateway/web/irccloud.com/x-xvhcrmsvfuliqnlo> has joined #yocto | 04:54 | |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 04:57 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 05:00 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 05:04 | |
*** Aethenelle <Aethenelle!~Aethenell@107.138.98.226> has joined #yocto | 05:33 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto | 05:48 | |
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has quit IRC | 05:49 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@fedora/niteshnarayanlal> has joined #yocto | 05:54 | |
-YoctoAutoBuilder- build #294 of nightly-world-lsb is complete: Failure [failed Publishing Artifacts] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world-lsb/builds/294 | 05:55 | |
-YoctoAutoBuilder- build #578 of nightly-world is complete: Failure [failed Publishing Artifacts] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/578 | 05:56 | |
*** morphis <morphis!~morphis@pD9ED6A53.dip0.t-ipconnect.de> has joined #yocto | 06:06 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 06:12 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 06:26 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 06:27 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC | 06:40 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto | 06:43 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-turxqomvrdqjghos> has joined #yocto | 07:05 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-turxqomvrdqjghos> has left #yocto | 07:05 | |
*** pohly <pohly!~pohly@p5DE8DEC4.dip0.t-ipconnect.de> has joined #yocto | 07:05 | |
*** NileshKokane <NileshKokane!uid116340@gateway/web/irccloud.com/x-hnzafwfoctapauad> has quit IRC | 07:07 | |
*** Nilesh__ <Nilesh__!uid116340@gateway/web/irccloud.com/x-xvhcrmsvfuliqnlo> has quit IRC | 07:07 | |
*** edbart <edbart!~ebartosh@192.198.151.45> has joined #yocto | 07:25 | |
*** hanthings <hanthings!~nandor@194.9.252.237> has joined #yocto | 07:28 | |
*** crazy_imp <crazy_imp!~mj@unaffiliated/crazy-imp/x-8704303> has quit IRC | 07:34 | |
*** crazy_imp <crazy_imp!~mj@unaffiliated/crazy-imp/x-8704303> has joined #yocto | 07:35 | |
*** [Sno] <[Sno]!~sno@ip-95-223-195-210.hsi16.unitymediagroup.de> has quit IRC | 07:48 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto | 07:56 | |
bananadev | hi all | 07:57 |
bananadev | I wonder if there are any way to pass option for autotools_do_configure? | 07:58 |
bananadev | i.e. autotools_do_configure --some-option | 07:59 |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@195.223.86.162> has quit IRC | 08:00 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-qddmzhsidblrdxkn> has joined #yocto | 08:02 | |
*** jbrianceau_away is now known as jbrianceau | 08:03 | |
*** townxelliot <townxelliot!~ell@94.13.100.136> has joined #yocto | 08:12 | |
*** jsapes <jsapes!~jsapes@80.Red-80-25-34.staticIP.rima-tde.net> has joined #yocto | 08:13 | |
*** [Sno] <[Sno]!~sno@rademacherexchange.de> has joined #yocto | 08:13 | |
*** jsapes <jsapes!~jsapes@80.Red-80-25-34.staticIP.rima-tde.net> has quit IRC | 08:22 | |
*** fl0v0 <fl0v0!~fvo@p5DDC763A.dip0.t-ipconnect.de> has joined #yocto | 08:31 | |
*** t0mmy <t0mmy!~tprrt@ram31-2-82-228-88-46.fbx.proxad.net> has quit IRC | 08:34 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto | 08:36 | |
*** florian__ is now known as florian | 08:36 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 08:39 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-ghjtiuhvmhitqmud> has quit IRC | 08:41 | |
*** slips <slips!~slips@156.179.164.82.customer.cdi.no> has quit IRC | 08:47 | |
*** slips <slips!~slips@156.179.164.82.customer.cdi.no> has joined #yocto | 08:48 | |
*** mckoan|away is now known as mckoan | 09:04 | |
mckoan | good morning | 09:04 |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@host250-33-static.21-80-b.business.telecomitalia.it> has joined #yocto | 09:05 | |
*** manuel_ <manuel_!~manuel@AStrasbourg-551-1-31-55.w86-223.abo.wanadoo.fr> has joined #yocto | 09:09 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto | 09:16 | |
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has joined #yocto | 09:19 | |
*** maxin <maxin!~maxin@2001:998:22:0:8163:bb4f:d446:1ebd> has joined #yocto | 09:26 | |
*** toscalix <toscalix!~agustinbe@84.76.185.221> has joined #yocto | 09:28 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto | 09:29 | |
*** vdehors_ <vdehors_!~vdehors@bob75-2-81-56-46-209.fbx.proxad.net> has quit IRC | 09:30 | |
*** gnumonk <gnumonk!~deepak@66.129.239.15> has joined #yocto | 09:35 | |
gnumonk | Hi | 09:35 |
gnumonk | I have question regarding "installed-vs-shipped"? | 09:36 |
gnumonk | Can anybody help ? | 09:36 |
*** edbart <edbart!~ebartosh@192.198.151.45> has quit IRC | 09:39 | |
*** edbart <edbart!~ebartosh@192.198.151.45> has joined #yocto | 09:46 | |
*** vdehors_ <vdehors_!~vdehors@193.56.60.161> has joined #yocto | 09:46 | |
*** [1]niteshnarayan <[1]niteshnarayan!~niteshnar@gate-zin2.freescale.com> has joined #yocto | 09:48 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@fedora/niteshnarayanlal> has quit IRC | 09:51 | |
*** [1]niteshnarayan is now known as niteshnarayanlal | 09:51 | |
*** ZrZ is now known as RzR | 09:52 | |
*** edbart <edbart!~ebartosh@192.198.151.45> has quit IRC | 09:55 | |
*** abelloni_ is now known as abelloni | 09:56 | |
t0mmy | gnumonk: installed-vs-shipped, these are the files produced by do_install but not in a FILES_XXX variable. | 09:57 |
*** Guest13287 <Guest13287!~quassel@106.120.101.38> has quit IRC | 09:57 | |
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has joined #yocto | 09:58 | |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto | 10:00 | |
*** fl0v01 <fl0v01!~fvo@p5DDC452E.dip0.t-ipconnect.de> has joined #yocto | 10:10 | |
*** fl0v0 <fl0v0!~fvo@p5DDC763A.dip0.t-ipconnect.de> has quit IRC | 10:12 | |
*** manuel_ <manuel_!~manuel@AStrasbourg-551-1-31-55.w86-223.abo.wanadoo.fr> has quit IRC | 10:23 | |
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has joined #yocto | 10:26 | |
*** kalpu <kalpu!~kalpu@HSI-KBW-109-192-189-096.hsi6.kabel-badenwuerttemberg.de> has joined #yocto | 10:33 | |
*** manuel_ <manuel_!~manuel@AStrasbourg-551-1-31-55.w86-223.abo.wanadoo.fr> has joined #yocto | 10:34 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 10:39 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 10:39 | |
gnumonk | t0mmy: so my package will be part of rootfs or not? | 10:49 |
*** Vardon3 <Vardon3!~o@101-196-190-109.dsl.ovh.fr> has joined #yocto | 10:49 | |
gnumonk | t0mmy: should I remove FILES_XXX varaibles ? | 10:50 |
*** domidimi <domidimi!~Dimitar@pD9E76822.dip0.t-ipconnect.de> has joined #yocto | 10:50 | |
*** Vardon3 <Vardon3!~o@101-196-190-109.dsl.ovh.fr> has quit IRC | 10:51 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 10:57 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 10:59 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 11:01 | |
*** domidimi <domidimi!~Dimitar@pD9E76822.dip0.t-ipconnect.de> has quit IRC | 11:02 | |
*** matteo <matteo!~matteo@openwrt/developer/matteo> has joined #yocto | 11:07 | |
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has quit IRC | 11:08 | |
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has joined #yocto | 11:09 | |
rburton | gnumonk: *not* in a FILES_, so they're not in a package, so they'll never be in a rootfs | 11:09 |
*** bananadev <bananadev!~bananadev@117.6.99.240> has quit IRC | 11:14 | |
*** egavinc_ <egavinc_!~egavinc@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto | 11:17 | |
*** vdehors__ <vdehors__!~vdehors@bob75-2-81-56-46-209.fbx.proxad.net> has joined #yocto | 11:19 | |
*** townxelliot <townxelliot!~ell@94.13.100.136> has quit IRC | 11:19 | |
*** egavinc <egavinc!~egavinc@40.Red-83-34-184.dynamicIP.rima-tde.net> has quit IRC | 11:21 | |
*** vdehors_ <vdehors_!~vdehors@193.56.60.161> has quit IRC | 11:22 | |
*** townxelliot <townxelliot!~ell@94.13.100.136> has joined #yocto | 11:22 | |
*** MWelchUK_ <MWelchUK_!~martyn@host109-158-14-18.range109-158.btcentralplus.com> has joined #yocto | 11:39 | |
*** MWelchUK <MWelchUK!~martyn@host109-158-14-18.range109-158.btcentralplus.com> has quit IRC | 11:39 | |
*** townxelliot <townxelliot!~ell@94.13.100.136> has quit IRC | 11:44 | |
*** townxelliot <townxelliot!~ell@176.252.17.139> has joined #yocto | 11:49 | |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 11:50 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC | 11:55 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 11:55 | |
*** townxelliot <townxelliot!~ell@176.252.17.139> has quit IRC | 11:55 | |
*** townxelliot <townxelliot!~ell@176.251.194.10> has joined #yocto | 11:58 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC | 12:00 | |
*** townxelliot <townxelliot!~ell@176.251.194.10> has quit IRC | 12:02 | |
gnumonk | rburton: ok | 12:04 |
gnumonk | rburton: thanks let me try to change this. | 12:04 |
t0mmy | 1 | 12:08 |
*** townxelliot <townxelliot!~ell@90.202.131.180> has joined #yocto | 12:10 | |
*** townxelliot <townxelliot!~ell@90.202.131.180> has quit IRC | 12:14 | |
*** townxelliot <townxelliot!~ell@90.202.131.180> has joined #yocto | 12:15 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto | 12:19 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto | 12:19 | |
*** domidimi <domidimi!~Dimitar@pD9E76822.dip0.t-ipconnect.de> has joined #yocto | 12:24 | |
*** edbart <edbart!ebartosh@nat/intel/x-goxsxlqwuyoykumt> has joined #yocto | 12:26 | |
*** domidimi <domidimi!~Dimitar@pD9E76822.dip0.t-ipconnect.de> has quit IRC | 12:38 | |
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has quit IRC | 12:40 | |
*** igor1 <igor1!~Igor_Stop@134.134.139.72> has quit IRC | 12:41 | |
*** igor1 <igor1!~Igor_Stop@134.134.139.72> has joined #yocto | 12:47 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC | 13:00 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@gate-zin2.freescale.com> has quit IRC | 13:01 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto | 13:05 | |
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has joined #yocto | 13:15 | |
*** crazy_imp <crazy_imp!~mj@unaffiliated/crazy-imp/x-8704303> has left #yocto | 13:22 | |
*** egavinc_ <egavinc_!~egavinc@43.Red-2-139-180.staticIP.rima-tde.net> has quit IRC | 13:22 | |
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has joined #yocto | 13:24 | |
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has quit IRC | 13:35 | |
*** ueni <ueni!~ueni@85.183.137.2> has quit IRC | 13:36 | |
*** darkhorse_ <darkhorse_!3ebd1c82@gateway/web/freenode/ip.62.189.28.130> has joined #yocto | 13:36 | |
darkhorse_ | all: when I run bitbake, it doesnot show the branch and last commit id for some of the layers including meta and meta-yocto. how can I fix this? | 13:37 |
darkhorse_ | all: I am talking about the build configuration that is printed at the start of each build | 13:37 |
rburton | it skips printing the checksum when its the same as others | 13:40 |
rburton | meta | 13:40 |
rburton | meta-yocto | 13:40 |
rburton | meta-yocto-bsp | 13:40 |
rburton | meta-selftest = "mut2:3cc6fab46dd4780120c4fca741ae19616ad9052b" | 13:40 |
rburton | meta-ross = "master:938d28675748202cc4c717c5629870b53c20207d" | 13:40 |
rburton | meta-intel = "master:ac56397b913e9f2ccc7d6cf5a1a5a9002b619671" | 13:40 |
rburton | meta through to meta-selftest are all mut2:3cc6fa | 13:40 |
rburton | i guess the intention is to make it easier to spot identical revs instead of having to compare SHAs | 13:41 |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 13:45 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC | 13:48 | |
*** Aethenelle <Aethenelle!~Aethenell@107.138.98.226> has quit IRC | 13:57 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 14:04 | |
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has joined #yocto | 14:08 | |
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has joined #yocto | 14:17 | |
*** kalpu <kalpu!~kalpu@HSI-KBW-109-192-189-096.hsi6.kabel-badenwuerttemberg.de> has quit IRC | 14:22 | |
*** kalpu <kalpu!~kalpu@HSI-KBW-37-209-75-7.hsi15.kabel-badenwuerttemberg.de> has joined #yocto | 14:23 | |
*** toscalix <toscalix!~agustinbe@84.76.185.221> has quit IRC | 14:29 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 14:31 | |
*** nbigaouette <nbigaouette!~quassel@mail.rogue-research.com> has joined #yocto | 14:32 | |
*** kalpu <kalpu!~kalpu@HSI-KBW-37-209-75-7.hsi15.kabel-badenwuerttemberg.de> has left #yocto | 14:33 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 14:36 | |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 14:36 | |
*** kinga_ <kinga_!~kinga@catv-188-142-165-239.catv.broadband.hu> has joined #yocto | 14:38 | |
*** kinga_ is now known as obsrwr | 14:38 | |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC | 14:41 | |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto | 14:41 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 14:44 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 14:45 | |
*** Guest65470 <Guest65470!~vivek@78.32.176.249> has joined #yocto | 14:45 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-yzhpoexwpuckcosd> has joined #yocto | 15:00 | |
*** toscalix <toscalix!~agustinbe@84.76.185.221> has joined #yocto | 15:06 | |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 15:12 | |
*** soderstrom <soderstrom!~soderstro@81-234-127-205-no26.tbcn.telia.com> has joined #yocto | 15:13 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 15:18 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 15:31 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@fedora/niteshnarayanlal> has joined #yocto | 15:43 | |
*** ftonello <ftonello!~felipe@82-71-26-47.dsl.in-addr.zen.co.uk> has joined #yocto | 15:43 | |
*** dfaught <dfaught!~dfaught@cpe-70-119-105-90.tx.res.rr.com> has joined #yocto | 15:43 | |
*** [1]niteshnarayan <[1]niteshnarayan!~niteshnar@gate-tx3.freescale.com> has joined #yocto | 15:44 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@fedora/niteshnarayanlal> has quit IRC | 15:47 | |
*** [1]niteshnarayan is now known as niteshnarayanlal | 15:47 | |
*** aragua <aragua!~flahouder@2a01:6600:8083:4700:6829:16b1:7ecf:7dc9> has quit IRC | 15:52 | |
*** alimon1 <alimon1!~alimon@192.55.54.40> has joined #yocto | 15:56 | |
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has quit IRC | 16:01 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 16:03 | |
*** mckoan is now known as mckoan|away | 16:04 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkycp3zsxb29622jy-3.rev.dnainternet.fi> has joined #yocto | 16:15 | |
*** domidimi <domidimi!~Dimitar@217.231.104.34> has joined #yocto | 16:19 | |
*** ka6sox is now known as zz_ka6sox | 16:19 | |
*** zz_ka6sox is now known as Guest92417 | 16:20 | |
*** leowt <leowt!~leowt@dol230.neoplus.adsl.tpnet.pl> has joined #yocto | 16:21 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@host250-33-static.21-80-b.business.telecomitalia.it> has quit IRC | 16:22 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@gate-tx3.freescale.com> has quit IRC | 16:29 | |
*** gnumonk <gnumonk!~deepak@66.129.239.15> has quit IRC | 16:35 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@host250-33-static.21-80-b.business.telecomitalia.it> has joined #yocto | 16:36 | |
*** realBigfoot <realBigfoot!~realBigfo@192.55.54.42> has quit IRC | 16:40 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 16:47 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 16:47 | |
*** egavinc <egavinc!~egavinc@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto | 16:50 | |
*** leowt <leowt!~leowt@dol230.neoplus.adsl.tpnet.pl> has quit IRC | 17:02 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC | 17:11 | |
*** leowt <leowt!~leowt@dol230.neoplus.adsl.tpnet.pl> has joined #yocto | 17:13 | |
*** leowt <leowt!~leowt@dol230.neoplus.adsl.tpnet.pl> has joined #yocto | 17:14 | |
*** caiortp <caiortp!~inatel@131.221.240.204> has joined #yocto | 17:15 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkycp3zsxb29622jy-3.rev.dnainternet.fi> has quit IRC | 17:20 | |
megha_dey | I try to add a config fragment while building my custom kernel, and have to set some configs as 'm' . But when building I get errors, saying that the required config is not a module. On checking a .config, I see the 'm' configs have been changed to 'y' | 17:23 |
*** maxin <maxin!~maxin@2001:998:22:0:8163:bb4f:d446:1ebd> has quit IRC | 17:23 | |
megha_dey | why could this be happening?how do I keep the 'm' configs to remain modules ? | 17:24 |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 17:26 | |
*** dorileo <dorileo!~dorileo@134.191.220.75> has joined #yocto | 17:27 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 17:28 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 17:29 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 17:31 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkycp3zsxb29622jy-3.rev.dnainternet.fi> has joined #yocto | 17:38 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has quit IRC | 17:40 | |
*** townxelliot <townxelliot!~ell@90.202.131.180> has quit IRC | 17:44 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkycp3zsxb29622jy-3.rev.dnainternet.fi> has quit IRC | 17:51 | |
*** jbrianceau is now known as jbrianceau_away | 17:54 | |
*** manuel_ <manuel_!~manuel@AStrasbourg-551-1-31-55.w86-223.abo.wanadoo.fr> has quit IRC | 17:57 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@host250-33-static.21-80-b.business.telecomitalia.it> has quit IRC | 18:01 | |
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has quit IRC | 18:01 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 18:12 | |
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has joined #yocto | 18:12 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkycp3zsxb29622jy-3.rev.dnainternet.fi> has joined #yocto | 18:17 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC | 18:23 | |
*** morphis <morphis!~morphis@pD9ED6A53.dip0.t-ipconnect.de> has quit IRC | 18:24 | |
*** igor1 <igor1!~Igor_Stop@134.134.139.72> has quit IRC | 18:27 | |
*** igor1 <igor1!Igor_Stopp@nat/intel/x-hzldgnkjcddwqoxh> has joined #yocto | 18:28 | |
*** toscalix <toscalix!~agustinbe@84.76.185.221> has quit IRC | 18:30 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:6441:8ddb:f01a:d29b> has joined #yocto | 18:33 | |
*** fl0v01 <fl0v01!~fvo@p5DDC452E.dip0.t-ipconnect.de> has quit IRC | 18:36 | |
*** morphis <morphis!~morphis@pD9ED6A53.dip0.t-ipconnect.de> has joined #yocto | 18:38 | |
*** edbart <edbart!ebartosh@nat/intel/x-goxsxlqwuyoykumt> has quit IRC | 18:45 | |
*** edbart <edbart!ebartosh@nat/intel/x-gdnpfpdyucueomxf> has joined #yocto | 18:45 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has joined #yocto | 18:59 | |
*** edbart <edbart!ebartosh@nat/intel/x-gdnpfpdyucueomxf> has quit IRC | 19:00 | |
*** leowt <leowt!~leowt@dol230.neoplus.adsl.tpnet.pl> has quit IRC | 19:36 | |
*** paulg <paulg!~paulg@OTWAON23-1279379696.sdsl.bell.ca> has joined #yocto | 19:50 | |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC | 19:50 | |
*** rdnt <rdnt!~rdnt@152.160.57.139> has joined #yocto | 19:55 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-qddmzhsidblrdxkn> has quit IRC | 19:55 | |
rdnt | yocto! | 19:55 |
rdnt | i have /usr/bin/qt5/ but no qmake. Is that normal? | 20:02 |
kergoth | given you've told us no details at all, it's tough to say | 20:03 |
rdnt | I'm using this board: http://hioproject.org/hio-emb-1200-freescale-imx6-core-board/ | 20:04 |
rdnt | uname -a: Linux hio-imx6q-board 3.10.17-1.0.0_ga+yocto #1 SMP PREEMPT Fri Dec 18 16:34:57 EST 2015 armv7l GNU/Linux | 20:04 |
rdnt | sorry not sure what you're looking for | 20:10 |
*** pohly <pohly!~pohly@p5DE8DEC4.dip0.t-ipconnect.de> has quit IRC | 20:13 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has quit IRC | 20:14 | |
kergoth | what image is it? what distro? | 20:15 |
kergoth | yocto is an umbrella project which includes poky, a reference distro and integration of build tools for building your own bits to run on target | 20:15 |
kergoth | yocto isn't a distro | 20:15 |
*** ionte <ionte!~ionte@94.245.24.57> has quit IRC | 20:16 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto | 20:17 | |
rdnt | it comes with smart and rpm package managers. xfce desktop. its a custom distro, seems debian based but not sure :( | 20:19 |
*** hanthings_ <hanthings_!~hanthings@dyxztkycp3zsxb29622jy-3.rev.dnainternet.fi> has quit IRC | 20:21 | |
*** ionte <ionte!~ionte@94.245.24.57> has joined #yocto | 20:23 | |
*** mrk377 <mrk377!4432d82d@gateway/web/freenode/ip.68.50.216.45> has joined #yocto | 20:35 | |
*** mrk377 <mrk377!4432d82d@gateway/web/freenode/ip.68.50.216.45> has quit IRC | 20:40 | |
*** maxin <maxin!~maxin@dsl-espbrasgw1-50de2e-158.dhcp.inet.fi> has joined #yocto | 20:46 | |
*** dorileo <dorileo!~dorileo@134.191.220.75> has quit IRC | 20:48 | |
*** sjolley <sjolley!sjolley@nat/intel/x-nmrzkjfwxovsbgfe> has quit IRC | 20:56 | |
*** sjolley <sjolley!~sjolley@134.134.137.73> has joined #yocto | 20:56 | |
*** alimon1 <alimon1!~alimon@192.55.54.40> has quit IRC | 21:09 | |
*** alimon1 <alimon1!alimon@nat/intel/x-shyuvlryqdoxwqkt> has joined #yocto | 21:12 | |
*** [Sno] <[Sno]!~sno@rademacherexchange.de> has quit IRC | 21:16 | |
*** caiortp <caiortp!~inatel@131.221.240.204> has quit IRC | 21:17 | |
*** bluelightning <bluelightning!~paul@2406:e007:50e6:1:5e51:4fff:febb:401d> has joined #yocto | 21:18 | |
*** bluelightning <bluelightning!~paul@2406:e007:50e6:1:5e51:4fff:febb:401d> has quit IRC | 21:18 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 21:18 | |
rburton | rdenis: poky doesn't come with xfce | 21:21 |
rburton | rdnt: ^ | 21:21 |
rburton | their bsp may, but that's their choice | 21:22 |
rburton | looks like they've either built a custom distro, or are using angstrom | 21:22 |
rdnt | i believe it's a custom hacked up version | 21:23 |
rburton | if you want qmake then you need to find their package feeds and install the packages | 21:23 |
kergoth | sounds like you should talk to the folks that provided it to you | 21:23 |
rburton | fwiw, debian inspired rather than based - some of the init scripts were from debian once. | 21:23 |
rdnt | i'll ask. hopefully they can help | 21:24 |
*** maxin <maxin!~maxin@dsl-espbrasgw1-50de2e-158.dhcp.inet.fi> has left #yocto | 21:28 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC | 21:29 | |
*** [Sno] <[Sno]!~sno@ip-95-223-195-210.hsi16.unitymediagroup.de> has joined #yocto | 21:35 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto | 21:37 | |
*** manuel_ <manuel_!~manuel@AStrasbourg-551-1-31-55.w86-223.abo.wanadoo.fr> has joined #yocto | 21:39 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 21:53 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has quit IRC | 21:54 | |
*** aluft <aluft!~aluft@c-73-209-56-21.hsd1.in.comcast.net> has joined #yocto | 22:05 | |
*** iellc <iellc!~ken@75.133.99.36> has joined #yocto | 22:13 | |
*** aluft <aluft!~aluft@c-73-209-56-21.hsd1.in.comcast.net> has quit IRC | 22:15 | |
-YoctoAutoBuilder- build #564 of nightly-intel-gpl is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-intel-gpl/builds/564 | 22:20 | |
*** iellc <iellc!~ken@75.133.99.36> has quit IRC | 22:22 | |
*** paulg <paulg!~paulg@OTWAON23-1279379696.sdsl.bell.ca> has quit IRC | 22:24 | |
rburton | YoctoAutoBuilder: shut up | 22:25 |
*** iellc <iellc!~ken@75.133.99.36> has joined #yocto | 22:25 | |
*** iellc <iellc!~ken@75.133.99.36> has quit IRC | 22:35 | |
*** paulg <paulg!~paulg@198-84-207-67.cpe.teksavvy.com> has joined #yocto | 22:49 | |
-YoctoAutoBuilder- build #582 of poky-tiny is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/poky-tiny/builds/582 | 22:55 | |
*** paulg <paulg!~paulg@198-84-207-67.cpe.teksavvy.com> has quit IRC | 22:56 | |
*** rdnt <rdnt!~rdnt@152.160.57.139> has quit IRC | 22:58 | |
*** soderstrom <soderstrom!~soderstro@81-234-127-205-no26.tbcn.telia.com> has quit IRC | 23:00 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** obsrwr <obsrwr!~kinga@catv-188-142-165-239.catv.broadband.hu> has quit IRC | 23:06 | |
*** matteo is now known as Guest47860 | 23:11 | |
*** domidimi <domidimi!~Dimitar@217.231.104.34> has quit IRC | 23:13 | |
*** alimon1 <alimon1!alimon@nat/intel/x-shyuvlryqdoxwqkt> has quit IRC | 23:19 | |
*** [Sno] <[Sno]!~sno@ip-95-223-195-210.hsi16.unitymediagroup.de> has quit IRC | 23:28 | |
*** [Sno] <[Sno]!~sno@ip-95-223-195-210.hsi16.unitymediagroup.de> has joined #yocto | 23:30 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@195.223.86.162> has joined #yocto | 23:38 | |
*** iellc <iellc!~ken@75.133.99.36> has joined #yocto | 23:44 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 23:45 | |
*** iellc <iellc!~ken@75.133.99.36> has quit IRC | 23:48 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 23:51 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 23:56 | |
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has quit IRC | 23:56 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!