*** klynn <klynn!~klynn@2600-6c55-4600-1e9f-51bd-d611-7e54-01b0.dhcp6.chtrptr.net> has quit IRC | 00:01 | |
*** phako[m] <phako[m]!phakomatri@gateway/shell/matrix.org/x-vsndhwowhubkqeqr> has quit IRC | 00:01 | |
*** rperier <rperier!~rperier@2001:41d0:52:100::44a> has quit IRC | 00:02 | |
*** phako[m] <phako[m]!phakomatri@gateway/shell/matrix.org/x-wgutjipodrpjcore> has joined #yocto | 00:02 | |
*** rperier <rperier!~rperier@2001:41d0:52:100::44a> has joined #yocto | 00:03 | |
*** klynn <klynn!~klynn@2600-6c55-4600-1e9f-51bd-d611-7e54-01b0.dhcp6.chtrptr.net> has joined #yocto | 00:05 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 00:30 | |
*** martinkelly <martinkelly!~martin@67.171.33.217> has quit IRC | 00:31 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 00:34 | |
*** martinkelly <martinkelly!~martin@67.171.33.217> has joined #yocto | 00:34 | |
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has joined #yocto | 00:42 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 00:45 | |
*** garbados <garbados!~garbados@2601:1c2:303:6b0:f54b:30ee:eb3e:3587> has joined #yocto | 00:48 | |
*** klynn <klynn!~klynn@2600-6c55-4600-1e9f-51bd-d611-7e54-01b0.dhcp6.chtrptr.net> has left #yocto | 00:50 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 00:52 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 01:01 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 01:13 | |
tcpdump | ls -la | 01:15 |
---|---|---|
* tcpdump realizes this is NOT the terminal. | 01:15 | |
tcpdump | kergoth: in re: "kergoth> tcpdump: just use cp. you'll have to correct the ownership afterward, though, to make sure it ends up owned by root rather than the build user" | 01:16 |
tcpdump | Can you literally use linux commands in your recipe? | 01:16 |
kergoth | functions in bitbake files are just shell scripts | 01:17 |
kergoth | unless they're explicitly marked as python, anyway | 01:17 |
kergoth | so yes, it's just a shell script | 01:17 |
kergoth | the 'install' command you were already using is a stock command on linux systems, not bitbake specific | 01:17 |
tcpdump | wow, thats good to know.. | 01:17 |
tcpdump | thats insane... | 01:17 |
tcpdump | so, could I do things like "systemctl enable nginx" rather than making and symlinking unit files... | 01:18 |
* tcpdump is going to cry... | 01:18 | |
kergoth | which is why you shouldn't be building anything, as root, ever | 01:18 |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 01:18 | |
kergoth | s/anything,/anything/ | 01:18 |
tcpdump | yea... | 01:18 |
tcpdump | wow, it all makes sense. | 01:19 |
tcpdump | Well, not all, but more. :) | 01:19 |
kergoth | also, you don't have to symlink and make unit files anyway, that's what the systemd bbclass is for, it handles all of that correctly for you | 01:19 |
*** winphone <winphone!sid83260@gateway/web/irccloud.com/x-igbwravezivihgky> has joined #yocto | 01:21 | |
tcpdump | Man, wish I had this chat earlier... | 01:21 |
tcpdump | So I can go ahead just cp the dir where it goes. | 01:21 |
tcpdump | Thats hugely helpful. | 01:21 |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 01:22 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 01:24 | |
kergoth | yep. jsut chown -R root.root ${D}/whatever afterward, since cp retains ownership, and the files are owned by you right now | 01:25 |
kergoth | install will correct it automatically | 01:25 |
tcpdump | let me grab my recipe real quick. | 01:25 |
*** hbruce1 <hbruce1!~hbruce@192.55.54.39> has quit IRC | 01:27 | |
*** hbruce <hbruce!hbruce@nat/intel/x-mgdfehovvujrqkgn> has joined #yocto | 01:27 | |
kergoth | tcpdump: http://www.aosabook.org/en/yocto.html and https://www.yoctoproject.org/docs/2.3/bitbake-user-manual/bitbake-user-manual.html may be of interest. the latter covers the file format | 01:28 |
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has joined #yocto | 01:30 | |
tcpdump | got it - thanks! | 01:30 |
kergoth | np | 01:30 |
kergoth | both of those are a lot shorter and potentially less intimidating than the rest of the yocto project docs. not tutorial / howto, though, more background and reference material | 01:31 |
kergoth | shouldn't take long to peruse, though | 01:31 |
tcpdump | install -m 755 ${WORKDIR}/git/api ${D}/home/root/api | 01:34 |
tcpdump | could that work for moving a directory thats commited to an included git repo to the /home/root/api dir? | 01:34 |
tcpdump | Would tha tbe recursive? | 01:34 |
tcpdump | or would I be better to do cp ${WORKDIR}/git/api /home/root ? | 01:36 |
tcpdump | ugh | 01:36 |
tcpdump | cp ${WORKDIR}/git/api ${D}/home/root | 01:36 |
*** hbruce <hbruce!hbruce@nat/intel/x-mgdfehovvujrqkgn> has quit IRC | 01:37 | |
kergoth | cp isn't recursive unless you cp -a | 01:40 |
kergoth | worth noting that there's a variable for root's home directory, you should use that instead of hardcoding /home/root | 01:40 |
* tcpdump has so much to learn. | 01:41 | |
tcpdump | Im also installing files in /usr/bin | 01:43 |
tcpdump | looks like I can use ${bindir} | 01:43 |
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-169-82.central.biz.rr.com> has joined #yocto | 01:44 | |
*** alimon1 <alimon1!~alimon@148.240.201.158> has quit IRC | 01:45 | |
kergoth | if you're curious about most of the common available variables, read meta/conf/bitbake.conf | 01:45 |
tcpdump | got it! Im quite curious.. | 01:45 |
tcpdump | I was googling that as we speak. | 01:46 |
tcpdump | Thx | 01:46 |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-cvdimruhodmdttbs> has joined #yocto | 01:47 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 01:49 | |
tcpdump | kergoth: sorry for the dumb question.. where exactly is meta/conf/bitbake? | 01:54 |
kergoth | oe-core or poky, depending on your setup | 01:54 |
kergoth | see also the 'find' command | 01:54 |
tcpdump | ah, my ba | 01:55 |
tcpdump | bad | 01:55 |
tcpdump | find . -name "meta" | 01:55 |
tcpdump | so it would e in recipes probably | 01:55 |
kergoth | i dont' understand what you're referring to | 01:57 |
kergoth | i just said it's in the conf folder of meta, not any of the recipes dirs | 01:57 |
tcpdump | yea, its in the recipes dir.. interesting. | 02:02 |
tcpdump | Found it | 02:02 |
tcpdump | ${D}/home/root looks like it could be replaced with ${D}$ROOT_HOME | 02:03 |
tcpdump | pretty cool | 02:03 |
kergoth | use bitbake variable reference syntax, not shell | 02:05 |
kergoth | that is, ${ROOT_HOME}, not $ROOT_HOME | 02:05 |
kergoth | the latter will only work for variables marked as 'export' | 02:05 |
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto | 02:07 | |
*** stephano <stephano!~stephano@134.134.139.76> has quit IRC | 02:08 | |
tcpdump | ${D}${ROOT_HOME} | 02:18 |
tcpdump | got it | 02:18 |
tcpdump | thx | 02:19 |
kergoth | np | 02:19 |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto | 02:33 | |
tcpdump | kergoth: so adding spaces/tabs in your install directive is OK? I have an OCD about disorganized code. :D | 02:35 |
kergoth | like i said, just a shell script | 02:38 |
kergoth | the convention is to use hard tabs in shell and spaces in python, but honestly i hate that and use 4 spaces everywhere in my own layers.. | 02:38 |
tcpdump | kergoth: well, its all refactored... | 02:45 |
tcpdump | So to see if it all works now. :) | 02:45 |
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC | 02:53 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has joined #yocto | 02:58 | |
tcpdump | kergoth: mind if I bug you with one more question (besides this one) :) | 02:59 |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 03:03 | |
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-169-82.central.biz.rr.com> has quit IRC | 03:03 | |
tcpdump | I made 7 custom recipes for python packages that seem to be OK for now. If I have a recipe that has a dependence on, python3-flask, for example, do I need to add IMAGE_INSTALL_append = " python3-flask" (which is already part of the yocto default recipes seemingly), or will it automatically fetch and install it form e? | 03:03 |
tcpdump | for me* | 03:05 |
kergoth | you'll most likely want to add to RDEPENDS_${PN} | 03:05 |
kergoth | that becomes the runtime dependencies of the binary package | 03:06 |
kergoth | DEPENDS = build time, RDEPENDS_<packagename> = runtime | 03:06 |
*** garbados <garbados!~garbados@2601:1c2:303:6b0:f54b:30ee:eb3e:3587> has quit IRC | 03:12 | |
tcpdump | But if you do RDEPENDS, doesnt that mean that you could potentially build it onto a device and it not work, due to missing dependencies? | 03:27 |
kergoth | you just said it has a dependency on it | 03:33 |
kergoth | if it doesn't need it, then no, rdepends wouldn't be appropriate. if it's optional, use RRECOMMENDS instead — that'll install it by default, but it can be uninstalled afterward | 03:33 |
kergoth | (or excluded via BAD_RECOMMENDATIONS) | 03:33 |
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto | 03:49 | |
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC | 03:54 | |
*** bananadev_ <bananadev_!~bananadev@117.6.99.240> has joined #yocto | 03:56 | |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto | 03:58 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has quit IRC | 04:00 | |
*** bananadev__ <bananadev__!~bananadev@118.70.128.150> has joined #yocto | 04:01 | |
*** bananadev_ <bananadev_!~bananadev@117.6.99.240> has quit IRC | 04:04 | |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC | 04:06 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-aswqfjilsjxsaewe> has quit IRC | 04:09 | |
*** catwr <catwr!~catwr@89.121.200.102> has joined #yocto | 04:44 | |
*** bananadev__ <bananadev__!~bananadev@118.70.128.150> has quit IRC | 04:54 | |
*** morphis_ <morphis_!~morphis@pD9ED7506.dip0.t-ipconnect.de> has joined #yocto | 05:02 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto | 05:07 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto | 05:10 | |
*** majuk <majuk!43ac9bb9@gateway/web/cgi-irc/kiwiirc.com/ip.67.172.155.185> has joined #yocto | 05:15 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC | 05:16 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto | 05:17 | |
*** lexano <lexano!~lexano@216.151.184.87> has quit IRC | 05:17 | |
*** majuk <majuk!43ac9bb9@gateway/web/cgi-irc/kiwiirc.com/ip.67.172.155.185> has quit IRC | 05:22 | |
*** hmwel <hmwel!~hmw@zimbra.welvaarts.com> has joined #yocto | 05:26 | |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC | 05:37 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto | 05:43 | |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto | 05:47 | |
*** catwr <catwr!~catwr@89.121.200.102> has quit IRC | 05:48 | |
*** agust <agust!~agust@p4FCB60EA.dip0.t-ipconnect.de> has joined #yocto | 05:53 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto | 06:05 | |
*** pohly <pohly!~pohly@p5DE8EE7A.dip0.t-ipconnect.de> has joined #yocto | 06:08 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto | 06:11 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has quit IRC | 06:13 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has joined #yocto | 06:15 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-untsgdrsmuhmsusw> has joined #yocto | 06:18 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has quit IRC | 06:22 | |
tcpdump | What exactly is ${WORKDIR}? | 06:24 |
tcpdump | I cant seem to find that... | 06:24 |
*** fl0v0 <fl0v0!~fvo@p4FC0A4C9.dip0.t-ipconnect.de> has joined #yocto | 06:24 | |
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has joined #yocto | 06:26 | |
*** luc4 <luc4!~luca@185.43.148.11> has joined #yocto | 06:28 | |
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto | 06:29 | |
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto | 06:34 | |
*** jku <jku!~jku@192.198.151.44> has joined #yocto | 06:46 | |
*** msvb-lab <msvb-lab!~michael@x55b543a4.dyn.telefonica.de> has joined #yocto | 06:47 | |
melonipoika | tcpdump: http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#var-WORKDIR | 06:52 |
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has quit IRC | 06:59 | |
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 07:00 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC | 07:10 | |
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto | 07:13 | |
*** TafThorne <TafThorne!~thomastho@81.128.174.58> has joined #yocto | 07:17 | |
*** florian_kc is now known as florian | 07:19 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has joined #yocto | 07:26 | |
*** morphis_ <morphis_!~morphis@pD9ED7506.dip0.t-ipconnect.de> has quit IRC | 07:32 | |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 07:38 | |
*** zero_note <zero_note!~zero@2.238.240.162> has joined #yocto | 07:38 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC | 07:46 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto | 07:46 | |
*** morphis_ <morphis_!~morphis@pD9ED7506.dip0.t-ipconnect.de> has joined #yocto | 07:48 | |
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has joined #yocto | 07:49 | |
*** ed21 <ed21!~Adium@192.198.151.45> has joined #yocto | 07:51 | |
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC | 08:00 | |
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto | 08:01 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has joined #yocto | 08:03 | |
*** jku <jku!~jku@192.198.151.44> has quit IRC | 08:07 | |
*** jku <jku!~jku@192.198.151.44> has joined #yocto | 08:07 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC | 08:10 | |
*** sameo <sameo!samuel@nat/intel/x-iibmaurilpukswaw> has joined #yocto | 08:20 | |
*** AndersD <AndersD!~anders@194.237.220.218> has joined #yocto | 08:26 | |
*** mihai <mihai!~mihai@unaffiliated/mihai> has joined #yocto | 08:28 | |
*** morphis_ <morphis_!~morphis@pD9ED7506.dip0.t-ipconnect.de> has quit IRC | 08:30 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto | 08:35 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto | 08:44 | |
*** fl0v01 <fl0v01!~fvo@p4FC0AEA5.dip0.t-ipconnect.de> has joined #yocto | 08:44 | |
*** fl0v0 <fl0v0!~fvo@p4FC0A4C9.dip0.t-ipconnect.de> has quit IRC | 08:44 | |
*** morphis <morphis!~morphis@pD9ED6E8A.dip0.t-ipconnect.de> has joined #yocto | 08:46 | |
*** nemequ <nemequ!~nemequ@2600:8801:d100:0:91b7:cf33:d97f:785c> has quit IRC | 08:53 | |
*** morphis <morphis!~morphis@pD9ED6E8A.dip0.t-ipconnect.de> has quit IRC | 08:55 | |
*** nemequ <nemequ!~nemequ@ip68-111-200-158.sd.sd.cox.net> has joined #yocto | 08:58 | |
*** morphis <morphis!~morphis@pD9ED6C65.dip0.t-ipconnect.de> has joined #yocto | 09:08 | |
*** pagios <pagios!~pagios@ip183.ip-5-196-177.eu> has quit IRC | 09:14 | |
*** clement <clement!~clement@lns-bzn-39-82-255-32-23.adsl.proxad.net> has quit IRC | 09:18 | |
*** morphis <morphis!~morphis@pD9ED6C65.dip0.t-ipconnect.de> has quit IRC | 09:20 | |
*** morphis_ <morphis_!~morphis@pD9ED60F0.dip0.t-ipconnect.de> has joined #yocto | 09:20 | |
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC | 09:20 | |
*** pagios <pagios!~pagios@77.42.250.220> has joined #yocto | 09:27 | |
*** quite <quite!quite@unaffiliated/quite> has quit IRC | 09:30 | |
*** catch22__ <catch22__!~catch22__@101.165.196.11> has joined #yocto | 09:36 | |
*** quite <quite!quite@unaffiliated/quite> has joined #yocto | 09:36 | |
*** clement <clement!~clement@LStLambert-657-1-76-184.w80-13.abo.wanadoo.fr> has joined #yocto | 09:40 | |
*** clement <clement!~clement@LStLambert-657-1-76-184.w80-13.abo.wanadoo.fr> has quit IRC | 09:42 | |
*** dlan <dlan!~dennis@embedstudio.com> has joined #yocto | 09:44 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 09:44 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has joined #yocto | 09:45 | |
*** clement <clement!~clement@LStLambert-657-1-76-184.w80-13.abo.wanadoo.fr> has joined #yocto | 09:46 | |
*** clement_ <clement_!~clement@lns-bzn-39-82-255-32-23.adsl.proxad.net> has joined #yocto | 09:48 | |
*** clement <clement!~clement@LStLambert-657-1-76-184.w80-13.abo.wanadoo.fr> has quit IRC | 09:48 | |
*** clement_ is now known as clement | 09:48 | |
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto | 09:51 | |
*** clement_ <clement_!~clement@LStLambert-657-1-76-184.w80-13.abo.wanadoo.fr> has joined #yocto | 09:54 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 09:58 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has quit IRC | 09:59 | |
*** clement_ <clement_!~clement@LStLambert-657-1-76-184.w80-13.abo.wanadoo.fr> has quit IRC | 10:02 | |
*** jonte <jonte!~Jonatan@h-79-136-12-196.NA.cust.bahnhof.se> has joined #yocto | 10:10 | |
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto | 10:10 | |
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto | 10:30 | |
*** egavin <egavin!~egavin@24.red-217-126-80.staticip.rima-tde.net> has joined #yocto | 10:34 | |
*** nemequ <nemequ!~nemequ@ip68-111-200-158.sd.sd.cox.net> has quit IRC | 10:36 | |
*** nemequ <nemequ!~nemequ@2600:8801:d100:0:91b7:cf33:d97f:785c> has joined #yocto | 10:38 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC | 10:42 | |
*** JoiF <JoiF!~jofr@193.182.166.3> has quit IRC | 10:54 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 10:54 | |
*** berndhs <berndhs!~berndhs@xplr-104-249-227-92.xplornet.com> has joined #yocto | 10:57 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 10:58 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 11:01 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 11:02 | |
*** robert__ <robert__!~lyang1@106.120.101.38> has quit IRC | 11:08 | |
*** robert__ <robert__!~lyang1@106.120.101.38> has joined #yocto | 11:09 | |
*** grumble <grumble!~grumble@freenode/staff/grumble> has quit IRC | 11:16 | |
*** grumble <grumble!~grumble@freenode/staff/grumble> has joined #yocto | 11:17 | |
*** JoiF <JoiF!~jofr@193.182.166.3> has joined #yocto | 11:20 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC | 11:21 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has quit IRC | 11:26 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has joined #yocto | 11:28 | |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC | 11:29 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 11:29 | |
*** gregd <gregd!~greg@195.159.234.190> has joined #yocto | 11:32 | |
*** gregd is now known as gregmender | 11:32 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto | 11:35 | |
*** Willy-- <Willy--!188a097e@gateway/web/freenode/ip.24.138.9.126> has joined #yocto | 11:43 | |
Willy-- | I am trying to build my first image for a orangepi zero. I have got the "quick start" build to work. I added the .conf file for the orangepi and the files it asked for to the /include directory. Getting the following error when I run bitbake. Any ideas? https://pastebin.com/VQYS34Kf | 11:46 |
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC | 11:47 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC | 11:50 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto | 11:50 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 11:52 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC | 11:58 | |
jku | Willy--: are you using matching git branches for your layers? | 11:59 |
*** caiortp <caiortp!~inatel@131.221.240.233> has joined #yocto | 12:01 | |
Willy-- | I was using the current poky release, but the orangepi stuff was from https://github.com/linux-sunxi/meta-sunxi | 12:01 |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto | 12:02 | |
jku | Willy--: and you followed the kernel uboot config advice in that layers readme? | 12:04 |
jku | hmm, it ddoesn't actually say it's required... | 12:05 |
Willy-- | jku: I did not see a layers readme, so no | 12:05 |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 12:05 | |
Willy-- | jku: I did nothing other than update my locale.conf, copy the orange_pi_zero.conf over, the /include directory and the /classes. | 12:06 |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 12:07 | |
*** grumble <grumble!~grumble@freenode/staff/grumble> has quit IRC | 12:07 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-cvdimruhodmdttbs> has quit IRC | 12:07 | |
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has quit IRC | 12:07 | |
*** Snert_ <Snert_!~LoginName@106-24-237-24.gci.net> has quit IRC | 12:07 | |
*** rodgort <rodgort!~rodgort@68.ip-149-56-14.net> has quit IRC | 12:07 | |
*** slips <slips!~slips@138.51-174-203.customer.lyse.net> has quit IRC | 12:07 | |
*** paulbarker <paulbarker!~quassel@2a01:4f8:c17:626::2> has quit IRC | 12:07 | |
*** lvb <lvb!~lvb@modemcable114.129-37-24.static.videotron.ca> has quit IRC | 12:07 | |
*** shauno <shauno!~soneil@pdpc/supporter/professional/shauno> has quit IRC | 12:07 | |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 12:07 | |
*** mattsm <mattsm!~mattsm@2602:304:b0d5:fea9:2126:8427:f617:f26d> has quit IRC | 12:07 | |
*** crazy_imp <crazy_imp!~mj@unaffiliated/crazy-imp/x-8704303> has quit IRC | 12:07 | |
*** todor <todor!~todor@134.134.139.82> has quit IRC | 12:07 | |
*** ulf` <ulf`!~ulf@134.134.139.82> has quit IRC | 12:07 | |
*** clsulliv <clsulliv!~clsulliv@134.134.139.74> has quit IRC | 12:07 | |
*** rewitt1 <rewitt1!~rewitt@134.134.139.77> has quit IRC | 12:07 | |
*** lsandov <lsandov!~lsandov1@134.134.139.76> has quit IRC | 12:07 | |
*** zeeblex <zeeblex!~zeeblex@gate-zro.freescale.com> has quit IRC | 12:07 | |
*** deva <deva!~deva@87.116.45.78> has joined #yocto | 12:07 | |
*** crazy_im1 <crazy_im1!~mj@ip4d141250.dynamic.kabel-deutschland.de> has joined #yocto | 12:07 | |
*** rewitt1 <rewitt1!~rewitt@134.134.139.77> has joined #yocto | 12:07 | |
*** lvb <lvb!~lvb@modemcable114.129-37-24.static.videotron.ca> has joined #yocto | 12:07 | |
*** grumble <grumble!~grumble@freenode/staff/grumble> has joined #yocto | 12:07 | |
rburton | Willy--: why did you copy stuff? checkout the layer, add it to bblayers, set machine in local.conf | 12:07 |
*** lsandov <lsandov!~lsandov1@134.134.139.76> has joined #yocto | 12:07 | |
*** clsulliv <clsulliv!clsulliv@nat/intel/x-qncezxrwnavepxqc> has joined #yocto | 12:08 | |
*** Snert_ <Snert_!~LoginName@106-24-237-24.gci.net> has joined #yocto | 12:08 | |
*** rodgort <rodgort!~rodgort@68.ip-149-56-14.net> has joined #yocto | 12:08 | |
*** zeeblex <zeeblex!~zeeblex@gate-zro.freescale.com> has joined #yocto | 12:08 | |
aurele | does anyone knows a package wich provides swh ladspa plugins? | 12:10 |
Willy-- | rburton: when I check out the layer, where should it sit in the directory structure? | 12:11 |
*** slips <slips!~slips@138.51-174-203.customer.lyse.net> has joined #yocto | 12:12 | |
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC | 12:12 | |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 12:12 | |
rburton | Willy--: wherever you want, as you update bblayers to point at it | 12:13 |
rburton | alongside the other layers is a fairly good suggestion | 12:13 |
*** ulf` <ulf`!~ulf@134.134.139.82> has joined #yocto | 12:17 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 12:17 | |
*** igor <igor!~igor@187.108.42.203> has joined #yocto | 12:18 | |
*** JoiF <JoiF!~jofr@193.182.166.3> has quit IRC | 12:19 | |
*** JoiF <JoiF!~jofr@193.182.166.3> has joined #yocto | 12:19 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has quit IRC | 12:21 | |
*** todor1 <todor1!~todor@134.134.139.82> has joined #yocto | 12:22 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-cvdimruhodmdttbs> has joined #yocto | 12:22 | |
*** paulbarker <paulbarker!~quassel@2a01:4f8:c17:626::2> has joined #yocto | 12:22 | |
*** shauno <shauno!~soneil@pdpc/supporter/professional/shauno> has joined #yocto | 12:22 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 12:22 | |
*** mattsm <mattsm!~mattsm@2602:304:b0d5:fea9:2126:8427:f617:f26d> has joined #yocto | 12:22 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-cvdimruhodmdttbs> has quit IRC | 12:22 | |
Willy-- | checkout the layer and edited bblayers.cong. I tried with core-image-sato argument and got https://pastebin.com/1kask31H However with core-image-minimal it is currently building. | 12:22 |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-gtxbqcbzkdllwivg> has joined #yocto | 12:23 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 12:23 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto | 12:29 | |
rburton | Willy--: those errors are because the bsp needs updating (or just doesn't support EGL, not used it before) | 12:30 |
Willy-- | rburton: oh yes, ok | 12:31 |
Willy-- | ty | 12:31 |
*** Artox <Artox!~Artox@79.124.7.87> has quit IRC | 12:35 | |
*** jku <jku!~jku@192.198.151.44> has quit IRC | 12:40 | |
*** Artox <Artox!~Artox@79.124.7.87> has joined #yocto | 12:42 | |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto | 12:43 | |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 12:44 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 12:44 | |
*** bguthro__ <bguthro__!~bguthro@72.22.182.166> has quit IRC | 12:46 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 12:47 | |
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has quit IRC | 12:47 | |
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMf0f249028110.cpe.net.cable.rogers.com> has joined #yocto | 12:47 | |
*** mdnneo <mdnneo!~umaucher@212.118.209.82> has joined #yocto | 12:49 | |
*** Artox <Artox!~Artox@79.124.7.87> has quit IRC | 12:49 | |
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC | 12:53 | |
*** kimtinh <kimtinh!~kimtinh@2405:4800:1096:c0f7:bc60:c762:fcf:b344> has joined #yocto | 12:56 | |
*** AndersD <AndersD!~anders@194.237.220.218> has quit IRC | 12:59 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has joined #yocto | 13:03 | |
*** lamego <lamego!~jose@134.134.139.83> has joined #yocto | 13:04 | |
*** stephano <stephano!~stephano@134.134.139.72> has joined #yocto | 13:13 | |
*** kimtinh <kimtinh!~kimtinh@2405:4800:1096:c0f7:bc60:c762:fcf:b344> has quit IRC | 13:18 | |
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has joined #yocto | 13:19 | |
*** deva <deva!~deva@87.116.45.78> has quit IRC | 13:37 | |
*** tach <tach!~tach@104.129.200.76> has joined #yocto | 13:52 | |
*** kimtinh <kimtinh!~kimtinh@2405:4800:1096:c0f7:bc60:c762:fcf:b344> has joined #yocto | 13:55 | |
*** AndersD <AndersD!~anders@h83-209-191-235.cust.se.alltele.net> has joined #yocto | 13:56 | |
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC | 13:59 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC | 14:00 | |
*** juvenal <juvenal!~juvenal@177.95.49.35> has quit IRC | 14:01 | |
*** fl0v01 <fl0v01!~fvo@p4FC0AEA5.dip0.t-ipconnect.de> has quit IRC | 14:04 | |
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has joined #yocto | 14:09 | |
*** crazy_im1 <crazy_im1!~mj@ip4d141250.dynamic.kabel-deutschland.de> has quit IRC | 14:10 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has left #yocto | 14:10 | |
*** crazy_imp <crazy_imp!~mj@ip4d141250.dynamic.kabel-deutschland.de> has joined #yocto | 14:10 | |
*** crazy_imp <crazy_imp!~mj@unaffiliated/crazy-imp/x-8704303> has joined #yocto | 14:10 | |
*** dvhart <dvhart!~dvhart@136.179.21.81> has joined #yocto | 14:11 | |
*** fl0v0 <fl0v0!~fvo@p4FC0AEA5.dip0.t-ipconnect.de> has joined #yocto | 14:11 | |
Willy-- | I have had my build for the Orangepi-zero fail (after a few hours of building), details https://pastebin.com/r3r6rtVK Any suggestions as to cause? | 14:18 |
*** stephano <stephano!~stephano@134.134.139.72> has quit IRC | 14:19 | |
rburton | Willy--: tempted to say run bitbake again and see what happens | 14:19 |
Willy-- | rburton: done. But are you saying that because by the time it fails again you won't be here? LOL | 14:20 |
Willy-- | oh.. it failed again with the same message | 14:20 |
rburton | never seen that. sort of blame the bsp if it worked with a qemu machine earlier. | 14:21 |
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC | 14:21 | |
Willy-- | any ideas for a solution? | 14:22 |
fray | where I have seen that type of error is when a package being build specifies a license file, but it doesn't actually exist.. | 14:22 |
fray | that should not be possible to get this far, but I've seen it before do that | 14:22 |
fray | looks like it's hte u-boot recipe.. based on the 'no such file or directory'.. | 14:22 |
fray | check that a LICENSE and LIC_FILES_CHKSUM is defined in the u-boot recipe being used | 14:23 |
fray | (and that whatever it is defined as is reasonable) | 14:23 |
*** top22 <top22!540ed2b2@gateway/web/freenode/ip.84.14.210.178> has quit IRC | 14:25 | |
*** dvhart <dvhart!~dvhart@136.179.21.81> has quit IRC | 14:28 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 14:29 | |
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto | 14:32 | |
*** cordlandwehr <cordlandwehr!~cordlandw@195.243.131.130> has joined #yocto | 14:32 | |
Willy-- | I went into the boot/tmp/deploy/licenses directory, and there is no u-boot directory, only a u-boot-mkimage-native | 14:32 |
*** CoLa|work <CoLa|work!~cordlandw@91.239.177.14> has quit IRC | 14:35 | |
*** jwessel <jwessel!~jwessel@128.224.252.2> has quit IRC | 14:36 | |
*** Puru <Puru!~purushoth@111.93.218.67> has quit IRC | 14:38 | |
*** CoLa|work <CoLa|work!~cordlandw@91.239.177.14> has joined #yocto | 14:39 | |
Willy-- | cd .. | 14:39 |
Willy-- | oooops | 14:39 |
*** cordlandwehr <cordlandwehr!~cordlandw@195.243.131.130> has quit IRC | 14:41 | |
fray | it would only get copied there if the recipe is setup properly.. so I suspect it's a recipe problem. the BSP probably provides a custom version of u-boot and something is broken there | 14:42 |
Willy-- | I am just looking under recipes-bsp/u-boot now | 14:44 |
fray | in which layer? | 14:44 |
fray | assuming this is what you have enabled (based on the pastebin) | 14:46 |
fray | https://github.com/linux-sunxi/meta-sunxi/blob/master/recipes-bsp/u-boot/u-boot_2017.03.bb | 14:46 |
fray | I'd verify that each of the LIC_FILES_CHECKSUM references files do indeed exist in your system.. | 14:46 |
Willy-- | yes, that is the layer I was looking in | 14:46 |
*** ed21 <ed21!~Adium@192.198.151.45> has quit IRC | 14:46 | |
fray | those files would be in the extracted source code unde Licenses.. 'I think' | 14:47 |
fray | been a while since I tried to debug this kind of issue | 14:47 |
Willy-- | It says in u-boot-sunxi.bb, "require recipes-bsp/u-boot/u-boot.inc" which I dont have | 14:51 |
fray | that is coming (most likely) from 'meta' (oe-core) | 14:51 |
fray | require and include are included from the path. The current (recipe) directory is searched first, and then it falls back to the other system defined directories.. each layer is usually listed in that path search | 14:52 |
fray | so look at meta/recipes-bsp/u-boot/u-boot.inc | 14:52 |
Willy-- | oh, yup I did not think of that.. that is there | 14:53 |
*** sbtkd85 <sbtkd85!~sbtkd85@ps3mwgproxy08-dmz.us.dell.com> has quit IRC | 14:53 | |
Willy-- | so the only file in the LIC_FILES_CHKSUM is file://Licenses/gpl-2.0.txt | 14:54 |
*** sbtkd85 <sbtkd85!~sbtkd85@ps3mwgproxy08-dmz.us.dell.com> has joined #yocto | 14:54 | |
Willy-- | So what path would it be searching for license files under? gpl-2.0.txt is in a couple of different build directorier | 14:56 |
fray | the source code path.. | 14:56 |
*** AndersD <AndersD!~anders@h83-209-191-235.cust.se.alltele.net> has quit IRC | 14:56 | |
fray | bitbake -c devshell <recipe> look around.. (you might have to go up one directory) | 14:56 |
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has quit IRC | 14:57 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 15:02 | |
*** stephano <stephano!stephano@nat/intel/x-eljomesgrquepcck> has joined #yocto | 15:02 | |
Willy-- | well it would appear as if I have had success.. will let you know in a few hours, or maybe in a few seconds. Gotta love this building stuff | 15:07 |
*** grma <grma!~gruberm@80.93.38.128> has quit IRC | 15:13 | |
tcpdump | Morning everyone | 15:17 |
tcpdump | cd ${ROOT_HOME} I did that in my recipe and I get this error: temp/run.do_install.63530: 149: cd: can't cd to /home/root | 15:18 |
tcpdump | Im not sure I understand why... | 15:18 |
tcpdump | Anyone have any ideas. | 15:18 |
tcpdump | Im trying to get to the right directory so I can do a tar -xvcf in the right location. | 15:18 |
tcpdump | Should I skip CD and just do a fully qualified tar command with the full output path? | 15:19 |
rburton | tcpdump: becayse you're trying to cd to /home/root on your *host* | 15:20 |
rburton | cd ${D}${HOME_ROOT}, assuming you've mkdir'd it first. | 15:20 |
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC | 15:25 | |
*** TuTizz <TuTizz!~TuTizz@46.18.96.158> has joined #yocto | 15:27 | |
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto | 15:27 | |
*** fl0v0 <fl0v0!~fvo@p4FC0AEA5.dip0.t-ipconnect.de> has quit IRC | 15:30 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 15:31 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 15:33 | |
*** Martian <Martian!~martian@92.247.20.94> has joined #yocto | 15:39 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has joined #yocto | 15:41 | |
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC | 15:42 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has quit IRC | 15:45 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC | 15:46 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto | 15:47 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 15:48 | |
tcpdump | thanks rburton so {D} i presume is something like remote device? | 15:55 |
rburton | tcpdump: no, its the path to the staging directory where the package is constructed | 15:55 |
rburton | you've a function called do_install() whose one job is to put files inside ${D} so that they can be packaged | 15:56 |
-YoctoAutoBuilder- build #1218 of nightly-ppc is complete: Failure [failed BuildImages_2 Running ESDK Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/1218 | 15:56 | |
rburton | ${HOME_ROOT} ${prefix} etc are paths on the target so inside do_install need to be prefixed with ${D} so they go to the right place. | 15:56 |
tcpdump | yea, that makes sense now. It obviously worked. | 15:57 |
*** ythl <ythl!8b5532f8@gateway/web/freenode/ip.139.85.50.248> has joined #yocto | 15:57 | |
tcpdump | I was just trying to understand what that variable was. | 15:57 |
ythl | How do I get bitbake to generate `tmp/work-shared`? | 15:57 |
ythl | I want to see the kernel-source that was used | 15:58 |
kergoth | the same way you'd get the source for any recipe? | 16:00 |
kergoth | bitbake -c patch virtual/kernel | 16:00 |
kergoth | it's still unpacked and patched with the same tasks as non-shared recipes | 16:00 |
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has quit IRC | 16:01 | |
*** Martian <Martian!~martian@92.247.20.94> has quit IRC | 16:01 | |
*** Jefro <Jefro!~josiermi@134.134.139.73> has joined #yocto | 16:02 | |
ythl | Thanks kergoth. That would have taken me a long time to figure out | 16:02 |
*** mihai <mihai!~mihai@unaffiliated/mihai> has quit IRC | 16:03 | |
kergoth | the official docs cover the basic tasks, afaik, but http://www.aosabook.org/en/yocto.html does as well | 16:03 |
*** luc4 <luc4!~luca@185.43.148.11> has quit IRC | 16:09 | |
*** yates <yates!~user@rrcs-96-10-234-158.midsouth.biz.rr.com> has joined #yocto | 16:10 | |
yates | is it permissible to run two yocto operations at once, as long as they are in different build dirs? | 16:11 |
*** hmwel <hmwel!~hmw@zimbra.welvaarts.com> has quit IRC | 16:11 | |
fray | yes | 16:11 |
yates | ok, thanks | 16:14 |
yates | ERROR: recipe linux-variscite is already in your workspace | 16:14 |
yates | why am i getting this? | 16:16 |
yates | i've done the same thing a dozen times without this error.. | 16:16 |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC | 16:17 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto | 16:18 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-untsgdrsmuhmsusw> has quit IRC | 16:28 | |
*** zero_note <zero_note!~zero@2.238.240.162> has quit IRC | 16:31 | |
*** TafThorne <TafThorne!~thomastho@81.128.174.58> has quit IRC | 16:32 | |
*** hbruce <hbruce!~hbruce@192.55.54.38> has joined #yocto | 16:37 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 16:38 | |
*** egavin <egavin!~egavin@24.red-217-126-80.staticip.rima-tde.net> has quit IRC | 16:39 | |
-YoctoAutoBuilder- build #1203 of nightly-x86-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-lsb/builds/1203 | 16:49 | |
*** mckoan|away is now known as mckoan | 16:52 | |
*** mckoan is now known as mckoan|away | 16:52 | |
*** mdnneo <mdnneo!~umaucher@212.118.209.82> has quit IRC | 16:58 | |
yates | ok i guess i never did a "devtool finish" of a previous "devtool modify". my bad. | 17:00 |
*** Jefro <Jefro!~josiermi@134.134.139.73> has quit IRC | 17:00 | |
*** Jefro <Jefro!~josiermi@134.134.139.73> has joined #yocto | 17:00 | |
*** hbruce <hbruce!~hbruce@192.55.54.38> has left #yocto | 17:01 | |
*** hbruce <hbruce!~hbruce@192.55.55.37> has joined #yocto | 17:02 | |
*** Jefro <Jefro!~josiermi@134.134.139.73> has quit IRC | 17:04 | |
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC | 17:04 | |
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto | 17:05 | |
crazy_imp | in case of a successful build of a recipe - are there any logs kept from the build process? | 17:05 |
-YoctoAutoBuilder- build #555 of nightly-no-x11 is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-no-x11/builds/555 | 17:06 | |
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC | 17:11 | |
*** garbados <garbados!~garbados@2601:1c2:303:6b0:118c:6870:69f7:dc2> has joined #yocto | 17:12 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 17:16 | |
garbados | hey, on a clean poky/morty, building core-image-sato fails during the 'rpmjs.lo' step, but i don't have the knowledge to debug the error or understand what has gone wrong? | 17:22 |
*** martinkelly <martinkelly!~martin@65-122-179-226.dia.static.qwest.net> has joined #yocto | 17:23 | |
*** rdanter <rdanter!~rad@cpc76236-cosh15-2-0-cust704.6-1.cable.virginm.net> has quit IRC | 17:23 | |
*** Zazza_ <Zazza_!~Zazza@c-66-41-19-68.hsd1.mn.comcast.net> has joined #yocto | 17:23 | |
*** rdanter <rdanter!~rad@cpc76236-cosh15-2-0-cust704.6-1.cable.virginm.net> has joined #yocto | 17:26 | |
*** Zazza <Zazza!~Zazza@c-66-41-19-68.hsd1.mn.comcast.net> has quit IRC | 17:26 | |
*** pohly <pohly!~pohly@p5DE8EE7A.dip0.t-ipconnect.de> has quit IRC | 17:28 | |
*** Jefro <Jefro!~josiermi@134.134.139.75> has joined #yocto | 17:30 | |
*** kimtinh <kimtinh!~kimtinh@2405:4800:1096:c0f7:bc60:c762:fcf:b344> has quit IRC | 17:45 | |
*** ythl <ythl!8b5532f8@gateway/web/freenode/ip.139.85.50.248> has quit IRC | 17:46 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC | 17:50 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto | 17:51 | |
*** sameo <sameo!samuel@nat/intel/x-iibmaurilpukswaw> has quit IRC | 17:52 | |
*** Zazza__ <Zazza__!~Zazza@2601:444:8100:9900:c044:8b7d:8c01:42be> has joined #yocto | 17:53 | |
*** Zazza_ <Zazza_!~Zazza@c-66-41-19-68.hsd1.mn.comcast.net> has quit IRC | 17:57 | |
-YoctoAutoBuilder- build #1220 of nightly-multilib is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/1220 | 17:58 | |
*** Jefro <Jefro!~josiermi@134.134.139.75> has quit IRC | 18:03 | |
*** Puru <Puru!~purushoth@223.186.122.167> has joined #yocto | 18:14 | |
-YoctoAutoBuilder- build #1199 of buildtools is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/buildtools/builds/1199 | 18:15 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 18:18 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 18:19 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 18:23 | |
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC | 18:23 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 18:26 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 18:26 | |
*** AndersD <AndersD!~anders@h83-209-191-235.cust.se.alltele.net> has joined #yocto | 18:33 | |
*** Puru <Puru!~purushoth@223.186.122.167> has quit IRC | 18:33 | |
*** Artox <Artox!~Artox@79.124.7.87> has joined #yocto | 18:41 | |
*** Jefro <Jefro!~josiermi@134.134.139.83> has joined #yocto | 18:48 | |
*** Jefro1 <Jefro1!~josiermi@134.134.139.83> has joined #yocto | 18:49 | |
*** Jefro <Jefro!~josiermi@134.134.139.83> has quit IRC | 18:49 | |
-YoctoAutoBuilder- build #1233 of nightly-arm is complete: Failure [failed BuildImages_2 BuildImages_3 Running ESDK Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/1233 | 18:55 | |
-YoctoAutoBuilder- build #67 of nightly-refkit is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-refkit/builds/67 | 18:56 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 18:56 | |
tcpdump | I dont see python3 defined in any of my recipes, however, it appears to be broken out of the box but present. Can I just offically add IMAGE_INSTALL_append = " python3" to my main recipe and hopefully that just makes it work? | 19:08 |
tcpdump | would that "reinstall" it (of sorts)? | 19:09 |
*** garbados <garbados!~garbados@2601:1c2:303:6b0:118c:6870:69f7:dc2> has quit IRC | 19:09 | |
khem | you could do that via image recipe yes | 19:10 |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 19:10 | |
khem | crazy_imp: yes logs are generally in tmp/log/cooker | 19:11 |
rburton | tcpdump: for master yes, but for older releases you'll need to install python3-modules to get the entire python3 | 19:11 |
tcpdump | ah | 19:12 |
tcpdump | makes sense. | 19:12 |
rburton | tcpdump: otherwise you get the bits you need to run everythign in the image which may not be a full install (and in older releases was fairly broken as we didn't do py3 out of the box) | 19:12 |
rburton | latest code has python3 be "all of python", so it does what you expect | 19:12 |
tcpdump | rburton: Morty | 19:13 |
tcpdump | So looks like 2.2 | 19:13 |
*** AndersD <AndersD!~anders@h83-209-191-235.cust.se.alltele.net> has quit IRC | 19:14 | |
crazy_imp | khem: ok | 19:14 |
-YoctoAutoBuilder- build #827 of nightly-arm64 is complete: Failure [failed BuildImages_1 Running ESDK Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm64/builds/827 | 19:15 | |
*** xthunderheartx <xthunderheartx!~x_xthunde@vpn.noregon.com> has joined #yocto | 19:17 | |
tcpdump | https://www.irccloud.com/pastebin/4n5G4xn0/ | 19:18 |
tcpdump | Thats th error im getting.. dont have python3-modules yet. | 19:18 |
tcpdump | That seem to line up | 19:18 |
tcpdump | ? | 19:18 |
*** jwessel <jwessel!~jwessel@128.224.252.2> has joined #yocto | 19:18 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 19:20 | |
xthunderheartx | Is there YP document that maps kernel version to project (or possibly poky) version? | 19:20 |
*** msvb-lab <msvb-lab!~michael@x55b543a4.dyn.telefonica.de> has quit IRC | 19:20 | |
khem | https://wiki.yoctoproject.org/wiki/Linux_Yocto | 19:20 |
xthunderheartx | @khem thx dood ... not sure how I missed that. | 19:21 |
*** jmcruzal <jmcruzal!jmcruzal@nat/intel/x-fifsajupmprlhmdh> has joined #yocto | 19:24 | |
tcpdump | "* Migrated BitBake and python functions in the OE metadata to Python 3" - looks like thats in 2.2 | 19:24 |
tcpdump | So thats good. | 19:24 |
*** gtristan <gtristan!~tristanva@mtlxpqak-1176248019.sdsl.bell.ca> has joined #yocto | 19:28 | |
-YoctoAutoBuilder- build #533 of nightly-musl is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-musl/builds/533 | 19:29 | |
tcpdump | Hmm, so I've added python3 and python3-modules and still get the error. WIll I need to do a completely clean build? | 19:29 |
tcpdump | or should doing a repo sync and bitbake build-my-image be sufficient? | 19:29 |
-YoctoAutoBuilder- build #1225 of nightly-x86 is complete: Failure [failed BuildImages_2 Running ESDK Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/1225 | 19:31 | |
-YoctoAutoBuilder- build #1185 of nightly-ppc-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc-lsb/builds/1185 | 19:37 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto | 19:39 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC | 19:46 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto | 19:47 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has joined #yocto | 19:47 | |
*** bluelightning <bluelightning!~paul@118.148.113.155> has joined #yocto | 20:01 | |
*** bluelightning <bluelightning!~paul@118.148.113.155> has quit IRC | 20:01 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 20:01 | |
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto | 20:02 | |
yates | how do i abort if i was in the middle of a devtool modify procedure? | 20:04 |
otavio | zeddii: I am working with QEMU a9 emulation and I am using linux-yocto KMACHINE as "qemuarma9" | 20:04 |
otavio | zeddii: I am getting some warnings of missing config settings | 20:04 |
yates | devtool reset <recipe> ? | 20:04 |
otavio | zeddii: is it possible for you to take a look on this or give me a hint how to fix it myself? | 20:06 |
*** Willy-- <Willy--!188a097e@gateway/web/freenode/ip.24.138.9.126> has quit IRC | 20:07 | |
*** stephano <stephano!stephano@nat/intel/x-eljomesgrquepcck> has quit IRC | 20:11 | |
aehs29 | otavio: IIRC qemu wasnt compatible with arm > a6 | 20:12 |
*** stephano <stephano!~stephano@134.134.139.82> has joined #yocto | 20:12 | |
*** stephano <stephano!~stephano@134.134.139.82> has quit IRC | 20:14 | |
*** stephano <stephano!~stephano@134.134.139.82> has joined #yocto | 20:14 | |
lsandov | yates: right. AFAIK, devtool reset just cleans up the bb part, but your changes in source code remains | 20:15 |
aehs29 | tcpdump: idk what youre using, but we dont use repo sync, python3-modules should have solved not finding encodings, although the previous error is what actually caughts my attention, it looks like an error during build time on which you specify where your modulea are going to be, hence why it cant find encodings | 20:15 |
*** Jefro1 <Jefro1!~josiermi@134.134.139.83> has quit IRC | 20:16 | |
*** Jefro <Jefro!~josiermi@134.134.139.83> has joined #yocto | 20:16 | |
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC | 20:17 | |
aehs29 | tcpdump: it seems to me that your python build is corrupt, at first sight it looks like some of the patches we apply to python so we can cross compile it are not being applied, but I cant be sure without loioking at your recipe' | 20:17 |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 20:17 | |
*** Jefro1 <Jefro1!josiermi@nat/intel/x-kvfcohnqcpksbvsl> has joined #yocto | 20:20 | |
*** Jefro <Jefro!~josiermi@134.134.139.83> has quit IRC | 20:21 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC | 20:25 | |
*** Jefro1 <Jefro1!josiermi@nat/intel/x-kvfcohnqcpksbvsl> has quit IRC | 20:25 | |
aehs29 | caught* | 20:26 |
zeddii_home | otavio: I can have a look at it tomorrow. I didn’t boot it in this uprev cycle, but can do that as an extra test. | 20:30 |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 20:34 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 20:35 | |
*** caiortp <caiortp!~inatel@131.221.240.233> has quit IRC | 20:36 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 20:44 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 20:44 | |
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC | 20:45 | |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 20:45 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 20:49 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 20:51 | |
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto | 20:52 | |
*** stephano <stephano!~stephano@134.134.139.82> has quit IRC | 20:56 | |
*** stephano <stephano!~stephano@134.134.139.82> has joined #yocto | 20:56 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has quit IRC | 20:57 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 21:04 | |
-YoctoAutoBuilder- build #1181 of build-appliance is complete: Failure [failed BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/build-appliance/builds/1181 | 21:13 | |
*** mattsm <mattsm!~mattsm@2602:304:b0d5:fea9:2126:8427:f617:f26d> has quit IRC | 21:18 | |
*** lamego <lamego!~jose@134.134.139.83> has quit IRC | 21:20 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 21:21 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 21:21 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 21:23 | |
*** mattsm <mattsm!~mattsm@75-13-95-234.lightspeed.austtx.sbcglobal.net> has joined #yocto | 21:24 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 21:25 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 21:27 | |
*** mattsm <mattsm!~mattsm@75-13-95-234.lightspeed.austtx.sbcglobal.net> has quit IRC | 21:27 | |
*** mattsm <mattsm!~mattsm@2602:304:b0d5:fea9:49eb:1f9a:cd49:e3a1> has joined #yocto | 21:32 | |
tcpdump | If I wanted to copy my directory and subs to /home/root I could do this? cp ${WORKDIR}/git/api ${D}${ROOT_HOME} and that would give me /home/root/api ? | 21:33 |
tcpdump | cp -a? | 21:34 |
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has joined #yocto | 21:36 | |
kergoth | only if ${D}${ROOT_HOME} already existed. mkdir -p ${D}${ROOT_HOME} first. | 21:36 |
kergoth | this is basic linux commands and scripting now, see the man pages | 21:36 |
tcpdump | yea, it does, I made that earlier in my recipe. | 21:38 |
kergoth | the other issue is that path is almost certainly not packaged by default, you'll get a warning about unpackaged files, unless you do a FILES_${PN} += "${ROOT_HOME}" | 21:39 |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC | 21:42 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has joined #yocto | 21:49 | |
*** igor <igor!~igor@187.108.42.203> has quit IRC | 21:50 | |
mtahmed | Does yocto force using absolute paths for native binaries (e.g. curl) within a package task (I am on pyro)? | 21:54 |
*** stephano <stephano!~stephano@134.134.139.82> has quit IRC | 21:56 | |
mtahmed | I am unable to use binaries from /usr/bin but binaries from /bin are found without specifying the absolute path | 21:56 |
RP | mtahmed: it prunes down PATH to only include things listed in HOSTTOOLS. You likely need a DEPENDS += "curl-native" | 21:58 |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 21:59 | |
aehs29 | mtahmed: you should use the ones provided by yocto (native recipes) since they're the ones tested for compilation | 22:00 |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 22:01 | |
*** jmcruzal <jmcruzal!jmcruzal@nat/intel/x-fifsajupmprlhmdh> has quit IRC | 22:01 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has quit IRC | 22:01 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 22:01 | |
*** SoniaLeon <SoniaLeon!~sleonbau@134.134.137.71> has joined #yocto | 22:07 | |
*** jmcruzal <jmcruzal!~jmcruzal@192.55.54.40> has joined #yocto | 22:08 | |
*** Phanes <Phanes!Phanes@surro/founder/phanes> has quit IRC | 22:12 | |
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has quit IRC | 22:12 | |
*** Phanes <Phanes!Phanes@2600:3c02::f03c:91ff:fe92:354e> has joined #yocto | 22:12 | |
*** Phanes <Phanes!Phanes@surro/founder/phanes> has joined #yocto | 22:12 | |
*** neverpan1c <neverpan1c!~clemens@towel.neverpanic.de> has joined #yocto | 22:14 | |
*** neverpanic <neverpanic!~clemens@towel.neverpanic.de> has quit IRC | 22:15 | |
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto | 22:16 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-japzsaqatwbgczot> has joined #yocto | 22:27 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.45> has quit IRC | 22:30 | |
*** sjolley1 <sjolley1!~sjolley@134.134.139.83> has joined #yocto | 22:33 | |
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC | 22:36 | |
*** agust <agust!~agust@p4FCB60EA.dip0.t-ipconnect.de> has quit IRC | 22:36 | |
*** jmcruzal1 <jmcruzal1!jmcruzal@nat/intel/x-usaffcxjmwibxmmg> has joined #yocto | 22:45 | |
*** jmcruzal <jmcruzal!~jmcruzal@192.55.54.40> has quit IRC | 22:45 | |
-YoctoAutoBuilder- build #1198 of nightly-qa-extras is complete: Failure [failed BuildImages_4 BuildImages_5 BuildImages_8 Running Sanity Tests_2 Running Sanity Tests_3 BuildImages_12 Running Sanity Tests_7] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-extras/builds/1198 | 22:47 | |
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC | 22:51 | |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 22:52 | |
*** SoniaLeon <SoniaLeon!~sleonbau@134.134.137.71> has quit IRC | 22:57 | |
*** alimon1 <alimon1!~alimon@148.240.201.158> has joined #yocto | 23:12 | |
-YoctoAutoBuilder- build #1204 of nightly-world is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/1204 | 23:19 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 23:30 | |
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC | 23:30 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 23:30 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 23:35 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 23:36 | |
*** alimon1 <alimon1!~alimon@148.240.201.158> has quit IRC | 23:37 | |
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto | 23:45 | |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC | 23:45 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 23:48 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!