Tuesday, 2017-08-22

*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto00:00
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC00:04
*** scottrif <scottrif!~scottrif@2600-6c55-4600-1e9f-b416-abe3-1d15-f777.dhcp6.chtrptr.net> has left #yocto00:19
*** klynn <klynn!~klynn@2600-6c55-4600-1e9f-41e8-1f00-cc5a-eb04.dhcp6.chtrptr.net> has left #yocto00:20
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.75> has quit IRC00:31
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto00:37
*** ant_home <ant_home!~ant__@host88-27-dynamic.5-87-r.retail.telecomitalia.it> has quit IRC00:40
*** sjolley1 <sjolley1!~sjolley@134.134.139.76> has quit IRC00:48
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto00:48
*** zeddii_home_ <zeddii_home_!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto01:11
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC01:12
*** zeddii_home_ is now known as zeddii_home01:12
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has joined #yocto01:16
*** paulg_ <paulg_!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC01:52
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-xywxrnecdxxsxpyj> has joined #yocto01:54
*** var_x <var_x!~smuxi@wsip-98-178-241-137.oc.oc.cox.net> has quit IRC02:00
*** paulg_ <paulg_!~paulg@198-84-204-211.cpe.teksavvy.com> has joined #yocto02:07
*** flk <flk!~flk@ip-109-43-2-121.web.vodafone.de> has joined #yocto02:10
*** dreyna <dreyna!~dreyna@50-252-20-225-static.hfc.comcastbusiness.net> has joined #yocto02:16
*** paulg_ <paulg_!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC02:49
*** dreyna <dreyna!~dreyna@50-252-20-225-static.hfc.comcastbusiness.net> has quit IRC03:05
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC03:19
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto03:19
*** flk <flk!~flk@ip-109-43-2-121.web.vodafone.de> has quit IRC03:42
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto03:54
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC04:08
*** thaytan_ <thaytan_!~thaytan@121.200.10.166> has joined #yocto04:09
*** thaytan <thaytan!~thaytan@121.200.10.166> has quit IRC04:12
*** peoliye <peoliye!88b30a8f@gateway/web/freenode/ip.136.179.10.143> has joined #yocto04:30
peoliyein order to change from read only file system to read-write- do i have to change kernel init params (ro) along with fstab?04:32
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC04:45
*** clement <clement!~clement@lns-bzn-39-82-255-32-23.adsl.proxad.net> has quit IRC04:46
*** clement <clement!~clement@lns-bzn-39-82-255-32-23.adsl.proxad.net> has joined #yocto04:47
*** zeeblex <zeeblex!~zeeblex@gate-zro.freescale.com> has joined #yocto04:48
*** peoliye <peoliye!88b30a8f@gateway/web/freenode/ip.136.179.10.143> has quit IRC04:48
*** morphis <morphis!~morphis@pD9ED6D5C.dip0.t-ipconnect.de> has joined #yocto04:48
*** c0rnel <c0rnel!~cornel@89.136.2.69> has joined #yocto04:49
c0rnelhello04:50
c0rnelin a recipe, i want to define a variable depending on a file existence. is this possible?04:50
c0rnellike in: if file exists var=a else var=b04:52
bluelightningc0rnel: I'd suggest an anonymous python function for that04:53
*** sbtkd85 <sbtkd85!~sbtkd85@pc1mwgproxy02-dmz.us.dell.com> has quit IRC04:55
*** sbtkd85 <sbtkd85!~sbtkd85@ps3mwgproxy04-dmz.us.dell.com> has joined #yocto04:55
bluelightningc0rnel: https://pastebin.com/yUhWzjdT04:55
c0rnelbluelightning, thank you very much. can such a code be included for example in do_configure() ?04:56
bluelightningc0rnel: no, since do_configure is a shell function - however you can add a prefunc to do_configure to accomplish the same thing04:58
c0rnelthank you very much, bluelightning . i'll try this04:58
bluelightningi.e. do_configure[prefuncs] += 'myfunc' then python myfunc() { ... }04:58
c0rnelah, i see. thanks04:59
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto05:01
*** AndersD <AndersD!~anders@194.237.220.218> has joined #yocto05:11
*** agust <agust!~agust@p4FCB664C.dip0.t-ipconnect.de> has joined #yocto05:14
*** AndersD <AndersD!~anders@194.237.220.218> has quit IRC05:18
c0rnelall those variables described in mega manual, where are they defined? i have a recipe using SRC_ARCHIVE_FILE but i have no idea where this is coming from :/05:19
*** _nobody_ <_nobody_!50938afb@gateway/web/freenode/ip.80.147.138.251> has joined #yocto05:19
c0rneland i don't find it in mega manual05:19
_nobody_Where I can find the documentation how to use DNF in YOCTO (Pyro)? Thank you very much for the tips!05:20
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto05:20
_nobody_I know that somewhere on the target I need to configure repositories.05:20
_nobody_https://docs.fedoraproject.org/en-US/Fedora/24/html/System_Administrators_Guide/sec-Configuring_DNF_and_DNF_Repositories.html05:21
c0rneldon't knoiw what are you trying to do but dnf repo files are same as yum repo files05:26
_nobody_It is not 1:1. I do agree with you, present state. In Pyro 2.3 DNF is added instead of smart.05:30
_nobody_And, as matter of fact, I do NOT see on the Pyro target /etc/yum.repos.d/ directory.05:32
_nobody_The Server repos ((link to them) should go in this directory!05:32
_nobody_[to YOCTO architects] Even I'll go further! YOCTO should itself maintain the latest PYRO prebuilt .rpm packages, and these should be publicly available!05:46
c0rnelin fedora this is created by fedora-repos package05:52
c0rnelbut i assume that for testing purposes you can first create it manually05:52
c0rnelguys, if a variable appears in the recipe but does not shu-up in bitbake -e, can i safely conclude is not actually used?05:53
c0rnelshow05:53
_nobody_c0rnel, I know all about Fedora. YOCTO is somehow different. I can add the package in F26 I do not have. This is why I advertise YOCTO servers similar as Fedoras ones.05:58
c0rnel_nobody_, ok, then05:59
*** thaytan_ is now known as thaytan06:06
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has joined #yocto06:10
*** hnje <hnje!~hnje@193.106.123.182> has joined #yocto06:10
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has joined #yocto06:11
*** _nobody__ <_nobody__!d40e57a2@gateway/web/freenode/ip.212.14.87.162> has joined #yocto06:15
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto06:17
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto06:18
*** jku <jku!~jku@192.198.151.43> has joined #yocto06:19
*** _nobody__ <_nobody__!d40e57a2@gateway/web/freenode/ip.212.14.87.162> has quit IRC06:20
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto06:27
*** luc4 <luc4!~luca@185.43.148.11> has joined #yocto06:29
*** Timon <Timon!4dde52e6@gateway/web/freenode/ip.77.222.82.230> has joined #yocto06:30
*** Timon is now known as Guest4799106:30
Guest47991Hi, Does anyone has succeeded in getting Qt compiled statically in yocto? qtbase keeps failing with the installed-vs-shipped error on the /usr/lib/qt5/plugins folder where all the .a and .prl files are06:32
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has quit IRC06:34
_nobody_Timon, why statically?06:37
Guest47991To keep the rootfs small and to make startup faster06:39
_nobody_There is a problem with that, do you know?06:40
Guest47991no, i am not aware of that. What is the problem?06:40
*** 7F1AAOUA8 <7F1AAOUA8!~quassel@145.132.48.198> has joined #yocto06:41
_nobody_This is how I understand it> licence issue. QT sits on the top of eglibc, which is LGPL2.1. To keep your QT code private, you MUST link dynamically. IMHO.06:42
*** 7F1AAOUA8 is now known as ferry06:44
Guest47991Well i have a device integration license from Qt. Already contacted Qt support. but they only support the default images that they ship06:44
*** ferry <ferry!~quassel@145.132.48.198> has quit IRC06:44
_nobody_Pls, read Lesser GPL licence.06:45
Guest47991So in your opinion, you may not build qt statically even if you have the right licencing to build qt statically06:54
_nobody_I just advise you to be cautious. So to prevent somebody later on to ask these licence questions. This is all.06:58
Guest47991ah oke. Thanks for your advice. I will contact legal to check it.06:59
Guest47991but lets say, all the licensing is ok. Does anyone succeeded building Qt statically in Yocto?07:00
*** mckoan|away is now known as mckoan07:01
*** _nobody_ <_nobody_!50938afb@gateway/web/freenode/ip.80.147.138.251> has quit IRC07:05
*** fl0v0 <fl0v0!~fvo@p4FC0AD07.dip0.t-ipconnect.de> has joined #yocto07:06
*** catwr <catwr!~catwr@89.121.200.102> has quit IRC07:07
*** ed21 <ed21!~Adium@192.198.151.45> has joined #yocto07:08
*** catwr <catwr!~catwr@89.121.200.102> has joined #yocto07:08
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC07:14
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto07:15
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto07:15
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto07:21
*** nemunaire <nemunaire!~nemunaire@2a01:e35:8bb7:3c60::a> has joined #yocto07:22
*** zero_note <zero_note!~zero@host186-31-static.47-85-b.business.telecomitalia.it> has joined #yocto07:24
*** catwr <catwr!~catwr@89.121.200.102> has quit IRC07:33
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto07:37
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto07:43
*** Puru <Puru!~purushoth@111.93.218.67> has joined #yocto07:45
*** ed21 <ed21!~Adium@192.198.151.45> has quit IRC07:46
*** Puru <Puru!~purushoth@111.93.218.67> has left #yocto07:51
*** Puru <Puru!~purushoth@111.93.218.67> has joined #yocto07:52
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto07:54
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has joined #yocto08:03
*** ant_home <ant_home!~ant__@host11-249-dynamic.16-79-r.retail.telecomitalia.it> has joined #yocto08:08
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has joined #yocto08:20
*** CoLa|work <CoLa|work!~cordlandw@91.239.177.14> has quit IRC08:20
jkuGuest47991: normally ".a" gets packaged into -staticdev (if you've enabled static libraries). The default packaging rule probably does not match /usr/lib/qt5/plugins/*.a though08:21
jkuso you might have to add FILES_<recipe>-staticdev + = "/path/to/*.a"08:23
jkubut if this is the case then nobody seems to be building qt statically...08:23
Guest47991tried to to that with the line "FILES_${PN}-staticdev += "/usr/lib/qt5/plugins/*" but then xmlpatterns is failing because it cannot find qconnmanbearer08:24
*** CoLa|work <CoLa|work!~cordlandw@91.239.177.14> has joined #yocto08:24
*** vdehors <vdehors!~vdehors@lns-bzn-39-82-255-32-23.adsl.proxad.net> has joined #yocto08:25
jku"plugins/*" sounds wrong, try "plugins/*.a"08:25
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC08:25
*** lemagoup <lemagoup!~lemagoup@158.255.112.194> has joined #yocto08:28
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto08:29
jkuand ${libdir} instead of literal "/usr/lib" is a good idea08:29
*** ed21 <ed21!~Adium@192.198.151.45> has joined #yocto08:31
Guest47991jku: trying both suggestions now :)08:35
*** fl0v01 <fl0v01!~fvo@pD9F6B323.dip0.t-ipconnect.de> has joined #yocto08:42
*** fl0v0 <fl0v0!~fvo@p4FC0AD07.dip0.t-ipconnect.de> has quit IRC08:42
*** joseppc <joseppc!~josep@sestofw01.enea.se> has joined #yocto08:43
*** joseppc <joseppc!~josep@linaro/joseppc> has joined #yocto08:43
*** rob_w <rob_w!~bob@93.104.205.194> has joined #yocto08:44
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto08:44
Guest47991plugin/*.a is not working. There are only subfolders in the plugin folder08:48
Guest47991if i check the LIBS from the xmlpatterns makefile it checks the recipe-sysroot-native/usr/bin/qt5/plugins/bearer/ But that folder doesn`t exists. in recipe-sysroot-native/usr/lib/qt5/plugins/bearer are .so files08:55
Guest47991in recipe-sysroot/usr/lib/qt5/plugins/bearer are the .a and .prl files. What does the linker need. I assume the linker needs the .a and .prl files because i want it to build statically08:56
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC09:01
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC09:01
*** yann|work <yann|work!~yann@LFbn-1-3552-118.w90-127.abo.wanadoo.fr> has joined #yocto09:01
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto09:01
*** hiwk <hiwk!1776@fukushima.lysator.liu.se> has joined #yocto09:11
hiwki have built a yocto project resulting in a zImage that I can run on my board. Now I want to change my linux kernel config, and then rebuild to have a zImage that reflect thouse changes09:13
hiwkhow do I do that?09:13
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto09:14
*** berndhs <berndhs!~berndhs@xplr-104-249-227-92.xplornet.com> has joined #yocto09:16
*** joseppc <joseppc!~josep@linaro/joseppc> has quit IRC09:28
mckoanhiwk: there are various options09:28
mckoanhiwk: bitbake -c menuconfig and generate a new config, then replace defconfig in the recipe09:29
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto09:29
mckoanhiwk: or create additional .cfg files to modify the existing defconfig09:30
mckoanhiwk: or work using a custom git repo09:30
mckoanhiwk: http://www.yoctoproject.org/docs/2.2/kernel-manual/kernel-manual.html09:32
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-xywxrnecdxxsxpyj> has quit IRC09:43
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has quit IRC10:05
*** pev <pev!~pev@185.126.174.5> has quit IRC10:07
hiwkmckoan: `bitbake -c menuconfig` just says "Nothing to do. "10:11
mckoanhiwk: try `bitbake -c menuconfig virtual/kernel`10:14
PuruPlease let me know following testsuite is used test selinux in yocto ?10:15
Puruhttps://github.com/SELinuxProject/selinux-testsuite10:15
hiwkmckoan: I'm not running a virtual box. How can I figure out which kernel target (?) is being used?10:18
hiwkmckoan: 'bitbake linux-imx -c menuconfig' seems to work (guessed from bitbake-layers show-recipes | grep linux)10:19
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-nnaqnuyfeujwdnts> has quit IRC10:21
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC10:25
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@198.145.29.13> has joined #yocto10:25
hiwkmckoan: runnung menuconfig for linux-imx, copying the rsulting file to ../sources/meta-axiomtek/recipes-kernel/linux/linux-imx-3.14.52/rsb10x/defconfig , and then redo bitbake axl-image-base seems to do the trick10:39
hiwkmckoan: thanks! it was the "replace defconfig" step I hadn't guessed10:40
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC10:46
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC10:54
*** Amynka <Amynka!~frozen@gentoo/developer/amynka> has quit IRC10:54
*** Amynka <Amynka!~frozen@gentoo/developer/amynka> has joined #yocto10:55
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto10:55
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC10:55
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto10:56
*** ant_home <ant_home!~ant__@host11-249-dynamic.16-79-r.retail.telecomitalia.it> has quit IRC10:56
*** JoiF <JoiF!~jofr@193.182.166.3> has quit IRC11:00
*** hanthings_ <hanthings_!~nandor@194.9.245.47> has joined #yocto11:00
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has quit IRC11:00
*** quite <quite!quite@unaffiliated/quite> has quit IRC11:00
*** ipuustin <ipuustin!~ipuustin@82-181-7-132.bb.dnainternet.fi> has quit IRC11:00
*** JoiF <JoiF!~jofr@193.182.166.3> has joined #yocto11:00
*** bguthro_ <bguthro_!~bguthro@72.22.182.166> has joined #yocto11:00
*** ipuustin <ipuustin!~ipuustin@82-181-7-132.bb.dnainternet.fi> has joined #yocto11:01
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has joined #yocto11:01
*** luc4 <luc4!~luca@185.43.148.11> has quit IRC11:01
*** jonte <jonte!~Jonatan@h-79-136-12-196.NA.cust.bahnhof.se> has quit IRC11:01
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC11:01
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC11:01
*** bguthro <bguthro!~bguthro@72.22.182.166> has quit IRC11:01
*** Artox <Artox!~Artox@79.124.7.87> has quit IRC11:01
*** hanthings <hanthings!~nandor@194.9.245.47> has quit IRC11:01
*** TafThorne <TafThorne!~thomastho@81.128.174.58> has quit IRC11:01
*** gabrbedd <gabrbedd!~beddingfi@li680-65.members.linode.com> has quit IRC11:02
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC11:03
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto11:04
*** jonte <jonte!~Jonatan@h-79-136-12-196.NA.cust.bahnhof.se> has joined #yocto11:05
*** quite <quite!quite@unaffiliated/quite> has joined #yocto11:05
*** Artox <Artox!~Artox@79.124.7.87> has joined #yocto11:05
*** TafThorne <TafThorne!~thomastho@81.128.174.58> has joined #yocto11:06
-YoctoAutoBuilder- build #443 of nightly-ppc is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-ppc/builds/44311:10
brrmI am trying to add an unstable version of an application (DEFAULT_PREFERENCE = "-1") to my image by using PREFERRED_VERSION_myapp = "1.2.3". but bitbake still installs the stable version. what could I be missing here?11:12
brrm`bitbake-layers show-recipes` shows both versions11:12
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto11:13
*** AndersD <AndersD!~anders@194.237.220.218> has joined #yocto11:16
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC11:19
*** mihai <mihai!~mihai@unaffiliated/mihai> has joined #yocto11:19
*** ZubairLK <ZubairLK!~Thunderbi@unaffiliated/zubairlk> has quit IRC11:23
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto11:25
brrmhm, `bitbake -s` only shows the stable one?11:25
-YoctoAutoBuilder- build #429 of nightly-no-x11 is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-no-x11/builds/42911:29
*** hnje <hnje!~hnje@193.106.123.182> has quit IRC11:31
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto11:33
-YoctoAutoBuilder- build #430 of nightly-musl is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-musl/builds/43011:34
brrmdoesn't PREFERRED_VERSION_ work in a bb-file?11:36
-YoctoAutoBuilder- build #491 of nightly-arm is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-arm/builds/49111:37
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has quit IRC11:42
-YoctoAutoBuilder- build #81 of nightly-packagemanagers is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-packagemanagers/builds/8111:44
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto11:45
*** morphis <morphis!~morphis@pD9ED6D5C.dip0.t-ipconnect.de> has quit IRC11:47
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has joined #yocto11:50
*** ZubairLK <ZubairLK!~Thunderbi@unaffiliated/zubairlk> has joined #yocto11:50
-YoctoAutoBuilder- build #429 of build-appliance is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/build-appliance/builds/42911:52
JoiFnrossi: I'm a bit confused with regards to dts-files. meta-xilinx has dts files (recipes-bsp), but those are only used for the kernel dtb, but not u-boot. In order to get my dts-to u-boot(-xlnx) I had to write a patch to add it to the source-tree and to the Makefile. Wouldn't it make sense to push the recipes-bsp dts to u-boot somehow during build? So the dts can be modified in a single place?11:56
JoiFnrossi: To avoid confusion, I've been creating my own layer that's based on meta-xilinx, but I use u-boot-xlnx. I think forking my own version of u-boot-xlnx doesn't make a lot of sense, so what I need is to either patch it, or get my recipes-bsp device-tree into it somehow.11:59
mckoanhiwk: ;-)12:00
*** igor <igor!~igor@189.112.127.230> has joined #yocto12:02
-YoctoAutoBuilder- build #445 of nightly-wic is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-wic/builds/44512:02
*** morphis <morphis!~morphis@pD9ED6D5C.dip0.t-ipconnect.de> has joined #yocto12:03
JoiFnrossi: Or perhaps I should doing a bit of both: Patch the u-boot Makefile (arch/arm/dts/Makefile) and then copy the dtb, similar to how ps7_init_gpl.* is handled in u-boot-spl-zynq-init.inc?12:08
*** Amynka <Amynka!~frozen@gentoo/developer/amynka> has quit IRC12:11
-YoctoAutoBuilder- build #436 of nightly-x86-lsb is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-x86-lsb/builds/43612:16
-YoctoAutoBuilder- build #434 of nightly-x86-64-lsb is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-x86-64-lsb/builds/43412:16
nrossiJoiF: your last message is the way I had anticipated implementing u-boot dts input support. But nothing needs it at the moment? and you should be able to handle it with changes to the DEFAULT_DEVICETREE config of u-boot12:30
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto12:30
-YoctoAutoBuilder- build #445 of nightly-x86-64 is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-x86-64/builds/44512:36
brrmif I define a recipe for an system image and I want to specify the version of an application contained in the image - where do I put this version information?12:36
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto12:38
-YoctoAutoBuilder- build #410 of nightly-arm64 is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-arm64/builds/41012:39
brrmI know there is a `conf/layer.conf` file where I can add `PREFERRED_VERSION_myapp = "1.2.3"`. but this effects the whole layer, not just the recipe for the image12:40
jkubrrm: I guess typically that would be a distro decision, not image. so e.g. poky has examples in meta-poky/conf/distro/poky.conf12:41
jkuspeaking of distro configs... RP: is poky-bleeding somehow useful as an example or should I remove it (and the referneces in documentation)?12:46
-YoctoAutoBuilder- build #456 of nightly-x86 is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-x86/builds/45612:46
jkubecause the versions in there make it more like poky-ancient...12:46
jkuPREFERRED_VERSION_gtk+ ?= "2.13.3"  :)12:46
RPjku: I keep meaning to turn it into something useful again. Its not useful today12:48
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has quit IRC12:51
*** paulg_ <paulg_!~paulg@198-84-239-75.cpe.teksavvy.com> has joined #yocto12:51
JoiFnrossi: Yes. So what I'm currently doing (to u-boot) with patches is: adding defconfig for my board (where I sed the DEFAULT_DEVICE_TREE), adding a configuration header (include/configs/zynq_[myboard].h), adding my dts file and lastly adding my dts file (or more exactly, adding a reference to the resulting dtb in the dtb-$(CONFIG_ARCH_ZYNQ) list).12:53
JoiFnrossi: For my board, I'm happy with doing all of those things with patches, except for "patching in" the dts-file itself. it makes modifying the dts really cumbersome..12:54
nrossiJoiF: sure, also looks like arm needs something like this in its dts makefile :) http://git.denx.de/?p=u-boot.git;a=blob;f=arch/microblaze/dts/Makefile;h=f80d8fd8506db1c4e3ff3cdb83c257dba968bab0;hb=HEAD#l512:55
JoiFnrossi: I'll figure something out .. I just needed a second opinion on whether it made sense to copy my layer/recipes-bsp-dts file into u-boot or if I should stick to patches for all of it.12:56
nrossiJoiF: for the dts it makes sense to pass this through, i've been tempted to figure out a better way of doing is so as to pass it to the kernel as well so it can be packed with the fit image stuff12:58
nrossiJoiF: and to avoid having the device-tree recipe do the same compile steps as the kernel12:59
*** marka <marka!~masselst@128.224.252.2> has joined #yocto12:59
JoiFnrossi: I see12:59
*** lamego <lamego!jose@nat/intel/x-ldxvuplgutapzroc> has joined #yocto13:00
nrossiJoiF: theres also the whole EXT_DTB flow of u-boot to consider as well http://git.denx.de/?p=u-boot.git;a=blob;f=dts/Makefile;h=3a93dafb5164ed6e8e4318071cd6612350b09b27;hb=HEAD13:02
-YoctoAutoBuilder- build #433 of nightly-ppc-lsb is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-ppc-lsb/builds/43313:02
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC13:03
JoiFnrossi: Interesting.13:06
*** stephano <stephano!~stephano@134.134.139.75> has joined #yocto13:06
nrossiJoiF: so if you come up with a nice solution that works for you would be great to see it :), send patches ;)13:07
JoiFnrossi: haha, I will if I do.  :)13:07
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC13:17
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto13:17
Guest47991Hi, Does anyone has succeeded in getting Qt compiled statically in yocto?13:19
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has joined #yocto13:21
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC13:24
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto13:30
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC13:32
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto13:32
jkuGuest47991: so I assume the last attempt didn't work if you're asking again. what goes wrong?13:35
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC13:35
*** grma <grma!~gruberm@80.93.38.128> has quit IRC13:35
jkualso, are you sure static linking is worth the effort for you? Not saying it can't be but I'm wondering what you want to achieve...13:36
*** gtristan <gtristan!~tristanva@mtlxpqak-1176248019.sdsl.bell.ca> has joined #yocto13:36
*** Jackie <Jackie!~quassel@106.120.101.38> has joined #yocto13:36
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC13:37
*** Jackie is now known as Guest8849113:37
Guest47991No. keeps getting the same errors. while compiling qtxmlpatterns the linker cannot find -lqconnmanbearer -lqgenericbearer -qnmbearer13:39
Guest47991and yeah, i am almost at the point i will skip the whole static compiling13:39
Guest47991i had a small rootfs without qt libraries of 70mb. with qt libraries my rootfs is 200mb13:40
*** paulg_ <paulg_!~paulg@198-84-239-75.cpe.teksavvy.com> has quit IRC13:40
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has quit IRC13:40
jkuso your goal was to only ship the parts of qt you use?13:40
*** zero_note <zero_note!~zero@host186-31-static.47-85-b.business.telecomitalia.it> has quit IRC13:43
Guest47991yeah. and i figured i dont need to ship any libraries if i compile it statically13:44
jkuwell, the ones you use will still be part of your app... I would first take a good look at the packages qt5 produces and make sure you don't accidentally get any you don't need on the image13:46
*** zero_note <zero_note!~zero@host186-31-static.47-85-b.business.telecomitalia.it> has joined #yocto13:47
Guest47991yeah i am trying now to add the packages one by one. if the application doesn`t start i check which lib it needs to run. etc13:49
jkualso: since your problem was with some plugins: I don't know how plugins in QT work but if they are always dynamically loaded then you just can't link those statically...13:50
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC13:51
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto13:51
Guest47991As far is i know and read on the qt help. The static flag is all the libraries that can handle the static linking. if it doesnt support it. it will loaded dynamically13:54
Guest47991but thanks for your help!13:54
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC13:56
*** quite <quite!quite@unaffiliated/quite> has quit IRC13:58
*** AndersD <AndersD!~anders@194.237.220.218> has quit IRC14:01
*** Guest47991 <Guest47991!4dde52e6@gateway/web/freenode/ip.77.222.82.230> has quit IRC14:01
*** ferry_ <ferry_!~quassel@cust-178-250-146-69.breedbanddelft.nl> has joined #yocto14:09
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC14:13
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has left #yocto14:17
*** mckoan is now known as mckoan|away14:17
*** jku <jku!~jku@192.198.151.43> has quit IRC14:19
*** ferry_ <ferry_!~quassel@cust-178-250-146-69.breedbanddelft.nl> has quit IRC14:26
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC14:27
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC14:29
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto14:30
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-tkqcggiixypbslui> has quit IRC14:31
*** stephano <stephano!~stephano@134.134.139.75> has quit IRC14:35
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has joined #yocto14:36
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto14:40
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has joined #yocto14:41
mcfriskHi, why does do_fetch want to connect to remote git server also when the commit needed is already in local download cache?14:52
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@198.145.29.13> has quit IRC14:53
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto14:53
*** Chep <Chep!~chep@san13-h05-176-143-154-85.dsl.sta.abo.bbox.fr> has joined #yocto14:56
Chephi14:56
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC14:57
ChepI'm trying to add a custom machine with custom kernel and config. Everything compiles find but it fails to create rootfs: No package packagegroup-core-boot available.14:57
Chepthe strange thing is that I can find this file: "tmp/deploy/rpm/my_machine/packagegroup-core-boot-1.0-r17.my_machine.rpm"14:58
Chepdoes someone knows what is wrong in my config?14:59
Chepis there something to add somewhere to find packages?14:59
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto15:00
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has joined #yocto15:00
*** stephano <stephano!~stephano@134.134.139.77> has joined #yocto15:10
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has joined #yocto15:14
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has quit IRC15:19
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC15:22
*** sjolley <sjolley!~sjolley@134.134.137.71> has joined #yocto15:26
*** stephano <stephano!~stephano@134.134.139.77> has quit IRC15:27
*** gabrbedd <gabrbedd!~beddingfi@li680-65.members.linode.com> has joined #yocto15:27
*** stephano <stephano!~stephano@134.134.139.77> has joined #yocto15:27
*** ed21 <ed21!~Adium@192.198.151.45> has quit IRC15:29
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has quit IRC15:32
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC15:32
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has joined #yocto15:37
*** Argylela_ <Argylela_!~textual@rrcs-98-100-199-98.central.biz.rr.com> has joined #yocto15:37
*** Argylela_ <Argylela_!~textual@rrcs-98-100-199-98.central.biz.rr.com> has quit IRC15:37
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has joined #yocto15:38
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC15:44
*** mihai <mihai!~mihai@unaffiliated/mihai> has quit IRC15:47
*** stephano <stephano!~stephano@134.134.139.77> has quit IRC15:52
*** stephano <stephano!~stephano@134.134.139.76> has joined #yocto15:53
*** Snert_ <Snert_!~snert_@65.74.8.146> has joined #yocto16:03
*** fl0v01 <fl0v01!~fvo@pD9F6B323.dip0.t-ipconnect.de> has quit IRC16:05
*** mattsm_ <mattsm_!~mattsm@2602:304:b0d5:feab:86d:1855:2f73:3593> has quit IRC16:09
*** mattsm <mattsm!~mattsm@2602:304:b0d5:feab:3482:a86e:7b46:b5ac> has joined #yocto16:14
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC16:14
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC16:18
*** paulg_ <paulg_!~paulg@198-84-239-75.cpe.teksavvy.com> has joined #yocto16:23
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has joined #yocto16:24
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has quit IRC16:29
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC16:33
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC16:36
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has quit IRC16:40
khemcan you try bitbake packagegroup-core-boot16:40
*** sjolley1 <sjolley1!~sjolley@134.134.137.71> has joined #yocto16:40
Chepkhem: package is already built.16:41
Chepproblem is solved, I removed upcase letters in machine filename16:41
*** sjolley1 <sjolley1!~sjolley@134.134.137.71> has quit IRC16:42
*** martinkelly <martinkelly!~martin@65-122-179-226.dia.static.qwest.net> has joined #yocto16:42
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has joined #yocto16:43
*** sjolley <sjolley!~sjolley@134.134.137.71> has quit IRC16:43
khemyes OE/opkg follows debian naming lexicon16:43
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has quit IRC16:45
khemhttps://www.debian.org/doc/debian-policy/16:49
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has quit IRC16:50
*** Snert_ <Snert_!~snert_@65.74.8.146> has quit IRC16:54
frayyou can disable -package- naming for the debian style.. (this is what renames say 'glibc' to 'libc6'..)16:55
*** zero_note <zero_note!~zero@host186-31-static.47-85-b.business.telecomitalia.it> has quit IRC16:56
*** Snert_ <Snert_!~snert_@65.74.8.146> has joined #yocto16:58
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has quit IRC16:59
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has joined #yocto17:03
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto17:09
*** vdehors <vdehors!~vdehors@lns-bzn-39-82-255-32-23.adsl.proxad.net> has quit IRC17:16
*** yann|work <yann|work!~yann@LFbn-1-3552-118.w90-127.abo.wanadoo.fr> has quit IRC17:21
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC17:26
*** bavery_fn <bavery_fn!bavery@nat/intel/x-ansgilmwqtmveygj> has joined #yocto17:41
*** itseris <itseris!~emikulin@76.77.65.2> has quit IRC17:42
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto17:45
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto17:51
*** itseris <itseris!~emikulin@76.77.65.2> has joined #yocto18:15
-YoctoAutoBuilder- build #1194 of nightly-qa-extras is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-extras/builds/119418:22
*** zarzar_ <zarzar_!b84be93a@gateway/web/freenode/ip.184.75.233.58> has joined #yocto18:28
zarzar_hello, does anyone know how to change the config.txt file during the build process using yocto?18:28
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC18:31
*** VoegMi <VoegMi!56f3e370@gateway/web/freenode/ip.86.243.227.112> has joined #yocto18:36
*** xthunderheartx <xthunderheartx!~xthunderh@184.75.233.58> has joined #yocto18:36
*** _xthunderheartx_ <_xthunderheartx_!~xthunderh@184.75.233.58> has joined #yocto18:37
*** VoegMi <VoegMi!56f3e370@gateway/web/freenode/ip.86.243.227.112> has left #yocto18:37
*** zarzar__ <zarzar__!b84be93a@gateway/web/freenode/ip.184.75.233.58> has joined #yocto18:37
kergothzarzar_: no idea what config.txt even is18:38
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto18:40
zarzar_kergoth there is a config.txt file that hassettings like enable_uart=1 for raspberry pi 3, most of the time it is changed at runtime, i want to change at build time18:40
zarzar_kergoth i found it once in the yocto sources directory bit i did not note where it was\18:40
*** lostinsun <lostinsun!4a5c2ee5@gateway/web/freenode/ip.74.92.46.229> has joined #yocto18:40
lostinsunWould anybody happen to kow how to add the zgrep binary to the gzip package?18:42
lostinsunSo far I have a bbappend with a do_install_append() that copies that file to the same dir as the other files that do make it into the image, but that's not working.18:43
*** pohly <pohly!~pohly@p5DE8F841.dip0.t-ipconnect.de> has joined #yocto18:46
*** overdamped <overdamped!~overdampe@70-89-109-162-BusName-pittsburgh.hfc.comcastbusiness.net> has joined #yocto18:46
overdampedIs there a way to invoke the bitbake command with a particular BBVERSION?18:47
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has joined #yocto18:47
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMf0f249028110.cpe.net.cable.rogers.com> has quit IRC18:48
*** zarzar_ <zarzar_!b84be93a@gateway/web/freenode/ip.184.75.233.58> has quit IRC18:53
*** zarzar_ <zarzar_!b84be93a@gateway/web/freenode/ip.184.75.233.58> has joined #yocto18:56
zarzar_hello, does anyone know how to change the config.txt file during the build process using yocto? the config.txt file usually changed at runtime in boot18:56
zarzar_not in uboot18:56
*** _xthunderheartx_ <_xthunderheartx_!~xthunderh@184.75.233.58> has left #yocto19:00
*** lexano <lexano!~lexano@81.171.97.88> has joined #yocto19:01
* xthunderheartx waves19:02
*** zarzar__ <zarzar__!b84be93a@gateway/web/freenode/ip.184.75.233.58> has left #yocto19:02
zarzar_test19:03
*** Dreamville <Dreamville!d8880df2@gateway/web/freenode/ip.216.136.13.242> has joined #yocto19:03
kergothoverdamped: what do you mean?19:08
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has joined #yocto19:11
*** zarzar <zarzar!d8880df2@gateway/web/freenode/ip.216.136.13.242> has joined #yocto19:17
overdampedkergoth: I have a recipe with 3 BBVERSIONS. I would like to build it with bitbake19:17
overdampeda.k.a. something akin to bitbake "recipe-name(=myversion)"19:18
overdamped*3 BBVERSIONS should read 3 versions within BBVERSIONS19:19
*** zarzar_ <zarzar_!b84be93a@gateway/web/freenode/ip.184.75.233.58> has quit IRC19:19
overdampedBut I'm probably thinking about this wrong. I want to try and shim 3 different images into a single image recipe .bb. I have a feeling a bbclass is probably the easier way to do this.19:21
zarzari'm using yocto for custom rpi build, how is the config.txt file generated, config.txt file is usually changed at runtime, the file i am referring to is this: http://elinux.org/R-Pi_configuration_file19:22
majukzarzar: Try using fgrep or find to locate that file?19:23
*** c0rnel <c0rnel!~cornel@89.136.2.69> has quit IRC19:23
zarzarhi najuk the file doesn't exist until after the build, i am trying to change it as part of build19:25
zarzarmajuk*19:25
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto19:26
kergothoverdamped: the BBVERSIONS mechanism is deprecated, and as far as i know isn't used anywhere, by anyone19:31
kergothif you just mean how you specify which version of a recipe to use, see the PREFERRED_VERSION mechanism, read the yocto project docs19:31
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has quit IRC19:33
*** peacememories <peacememories!~textual@e245-202.eduroam.tuwien.ac.at> has quit IRC19:34
overdampedkergoth: Thanks for the pointer!19:38
*** overdamped <overdamped!~overdampe@70-89-109-162-BusName-pittsburgh.hfc.comcastbusiness.net> has quit IRC19:48
*** overdamped <overdamped!~overdampe@unaffiliated/overdamped> has joined #yocto19:48
*** hbruce <hbruce!~hbruce@134.134.139.77> has quit IRC19:55
*** MWelchUK <MWelchUK!~martyn@host86-161-18-99.range86-161.btcentralplus.com> has quit IRC20:00
*** Dreamville <Dreamville!d8880df2@gateway/web/freenode/ip.216.136.13.242> has quit IRC20:07
*** bluelightning <bluelightning!~paul@118.148.113.155> has joined #yocto20:08
*** bluelightning <bluelightning!~paul@118.148.113.155> has quit IRC20:08
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto20:08
majukHrmm... so I am trying to move my Yocto build environment over to an unRaid server's NFS. Mounted the NFS to my ~/yoctobuild/ directory, I got all the sources pulled, setup the build directory, but OE-core is complaining it can't find the build/tmp directory.20:11
majukhttps://pastebin.com/6FawD6WC20:12
majukThe way the error is phrased, it seems like it's looking for that path using the NFS as the root which, yea, that isn't valid.20:13
majukAny comments or questions appreciated.20:13
majuklol, it even wrote the log file for that error to the tmp directory.20:15
majukAlright then, mailing list tells me having the tmp dir on an nfs won't work. That... is not optimal for me. Wieners.20:18
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto20:24
*** igor <igor!~igor@189.112.127.230> has quit IRC20:28
*** marka <marka!~masselst@128.224.252.2> has quit IRC20:28
*** stefan__ <stefan__!~stefan@ipbcc3cc6c.dynamic.kabel-deutschland.de> has joined #yocto20:36
*** igor <igor!~igor@189.112.127.230> has joined #yocto20:41
*** pohly <pohly!~pohly@p5DE8F841.dip0.t-ipconnect.de> has quit IRC20:44
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC20:47
*** ant_home <ant_home!~ant__@host88-27-dynamic.5-87-r.retail.telecomitalia.it> has joined #yocto20:47
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-prmxqtsezzeeuouo> has joined #yocto20:49
*** overdamped <overdamped!~overdampe@unaffiliated/overdamped> has quit IRC20:51
zarzarwhat is python-native?20:53
fraypython version that runs on the host to assist with somethign during the build20:53
fray'python' would be the target version of python20:53
zarzar"python-native" versus "python" in openembedded-core20:54
frayas I said, python-native is the version to run on the host, python to run on the target..20:55
fraycompilation options and runtime environments are different.  There is (no name) this is target, then -cross, -native, -nativesdk20:55
zarzarhttps://layers.openembedded.org/layerindex/recipe/194/20:55
zarzarhttps://layers.openembedded.org/layerindex/recipe/191/20:55
frayeach of these would have a slightly differnt purpose.. -cross for cross compiling, -native to run on the host, and -nativesdk to run on the host w/in the SDK20:55
fraythis is what I just explained..20:56
zarzarmy god why is there such uncontrolled proliferation of options20:56
zarzarwhy would i cross compile python20:56
zarzarits interpreted isn't it?20:56
frayso you can run it on the target, how else would you get it onto the target?20:57
frayor do you mean 'python-cross'.  there is no such thing20:57
zarzarwhat? dude what are you talking about\20:57
zarzarto my knowledge python is not compiled20:57
frayIf you want to run python scripts on your target system, you need to cross compile 'python' for the target20:57
frayotherwise how can you run it?20:57
zarzarwhat?20:57
zarzarits a script dude\20:57
frayyour host (x86) binaries are not going to magically run on the target architecture20:58
zarzaryou don't compile scripts20:58
fraysomething must execute the scripts..20:58
zarzarthe python interpreter\20:58
zarzarnot compiled, not cross-compiled20:58
zarzarinterpreted20:58
frayThe recipe 'python' -is- the python 2.7 interpreter20:58
zarzarpython interpreter reads and interprets the file20:58
frayas well as modules and other items20:58
frayyou need the interpreter to be compiled for the target system and architecture you will run it on20:59
fraythe python -recipe- is the source code for python interpreter, modules and related items.20:59
zarzarok so do i need python or python-native to run python20:59
fraypython-native -recipe- is the soruce code for the python interpreter, modules and related items -- with instructions for building it to run on your host20:59
frayWhere do you want to -run- python?  host, or target?21:00
*** stefan__ <stefan__!~stefan@ipbcc3cc6c.dynamic.kabel-deutschland.de> has quit IRC21:00
zarzaron custom rpi321:00
fraythen 'python' that is the target version (once constructed)21:00
frayas I said 'python-native' is to run on your BUILD host..21:00
frayyou may need to do this in order to constrct the target version -- as python (target) may have dependencies on build environment that can only be satisfied by python-native (on your host)21:01
zarzarsounds like you don't know exactly21:02
frayno extension -- code that runs on the 'target'.  -native code that runs on the (build) host...21:02
zarzarbut thanks for the help21:02
fraythings that end in -cross, executes on the (build) host, but produces code for the 'target'.21:02
zarzarstop answering fray21:02
frayIn the case of 'python' for the target, you may need python-native to run on the HOST for the build environment, you will need a cross compiler (-cross) to build the software for the target.. and you will end up with a target set of binaries and erlated21:02
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has quit IRC21:03
*** gtristan <gtristan!~tristanva@mtlxpqak-1176248019.sdsl.bell.ca> has quit IRC21:06
*** vladb <vladb!18258172@gateway/web/freenode/ip.24.37.129.114> has joined #yocto21:09
*** stephano <stephano!~stephano@134.134.139.76> has quit IRC21:11
vladbHi, I'm wondering about this: in the case of a git SRC_URI, with BB_FETCH_PREMIRRORONLY= "1", is it normal that the upstream SRC_URI is still checked, silently, for extra commits?21:12
vladbI have a git tarball in the premirror... and new commits in my upstream... I was expecting the fetch to fail.21:13
frayin the normal case it is to make sure that the system is in sync.. but with premirroronly I would not have expected that..21:13
frayit sounds like a bug21:13
*** xthunderheartx <xthunderheartx!~xthunderh@184.75.233.58> has quit IRC21:16
*** igor <igor!~igor@189.112.127.230> has quit IRC21:26
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC21:26
*** stephano <stephano!~stephano@134.134.139.77> has joined #yocto21:32
*** sjolley <sjolley!~sjolley@134.134.137.71> has joined #yocto21:33
*** Trinners <Trinners!~Trinners@mail.validmanufacturing.com> has joined #yocto21:33
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has quit IRC21:33
*** bbhoss <bbhoss!sid18216@gateway/web/irccloud.com/x-ejtpecrcxqubcboe> has quit IRC21:34
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has joined #yocto21:35
*** bbhoss <bbhoss!sid18216@gateway/web/irccloud.com/x-jcbiqtfxzxjcmwhp> has joined #yocto21:36
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC21:39
*** scottrif <scottrif!~scottrif@2600-6c55-4600-1e9f-b57a-937b-27e4-897c.dhcp6.chtrptr.net> has joined #yocto21:40
*** lamego <lamego!jose@nat/intel/x-ldxvuplgutapzroc> has quit IRC21:52
*** lexano <lexano!~lexano@81.171.97.88> has quit IRC21:56
*** klynn <klynn!~klynn@2600-6c55-4600-1e9f-dc72-9622-6eac-1747.dhcp6.chtrptr.net> has joined #yocto22:03
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has quit IRC22:07
*** JaMa <JaMa!~martin@217.30.68.212> has quit IRC22:14
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMf0f249028110.cpe.net.cable.rogers.com> has joined #yocto22:14
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has quit IRC22:17
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has quit IRC22:18
*** berndhs <berndhs!~berndhs@xplr-104-249-227-92.xplornet.com> has quit IRC22:20
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has quit IRC22:22
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has joined #yocto22:25
*** k4jcw <k4jcw!~jcw@68-184-99-182.dhcp.dgls.ga.charter.com> has left #yocto22:36
*** stephano <stephano!~stephano@134.134.139.77> has quit IRC22:40
*** stephano <stephano!~stephano@134.134.139.77> has joined #yocto22:40
*** stephano <stephano!~stephano@134.134.139.77> has quit IRC22:41
*** stephano <stephano!~stephano@134.134.139.77> has joined #yocto22:41
*** stephano <stephano!~stephano@134.134.139.77> has quit IRC22:41
*** agust <agust!~agust@p4FCB664C.dip0.t-ipconnect.de> has quit IRC22:51
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC22:52
*** sjolley <sjolley!~sjolley@134.134.137.71> has quit IRC22:53
*** ant_home <ant_home!~ant__@host88-27-dynamic.5-87-r.retail.telecomitalia.it> has quit IRC23:02
*** Guma <Guma!~Guma@c-67-184-64-21.hsd1.il.comcast.net> has quit IRC23:13
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-vdusgzfysglpglws> has joined #yocto23:13
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto23:23
*** itseris <itseris!~emikulin@76.77.65.2> has quit IRC23:46
*** Trinners <Trinners!~Trinners@mail.validmanufacturing.com> has quit IRC23:47
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC23:47
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto23:48
*** sjolley <sjolley!sjolley@nat/intel/x-arnqnfytsfhtiqhl> has joined #yocto23:49
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC23:52
*** khem <khem!~khem@unaffiliated/khem> has quit IRC23:54
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto23:56
*** klynn <klynn!~klynn@2600-6c55-4600-1e9f-dc72-9622-6eac-1747.dhcp6.chtrptr.net> has left #yocto23:56

Generated by irclog2html.py 2.11.0 by Marius Gedminas - find it at mg.pov.lt!