Tuesday, 2018-02-13

*** lamego <lamego!~lamego@134.134.139.73> has quit IRC00:01
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto00:04
*** t0mmy <t0mmy!~tprrt@132.110.153.77.rev.sfr.net> has quit IRC00:05
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC00:07
*** bodangly_ is now known as bodangly00:09
*** Jefro1 <Jefro1!~josiermi@134.134.139.72> has quit IRC00:14
*** gtristan_ <gtristan_!~tristanva@110.11.179.89> has joined #yocto00:27
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC00:28
*** quite <quite!quite@unaffiliated/quite> has quit IRC00:33
*** quite <quite!quite@unaffiliated/quite> has joined #yocto00:34
*** learningc <learningc!~User@mti-37-145.tm.net.my> has joined #yocto00:54
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto00:57
*** majuk_ <majuk_!~majuk@75-163-148-173.clsp.qwest.net> has quit IRC00:58
*** learningc <learningc!~User@mti-37-145.tm.net.my> has quit IRC01:03
*** kpo_ <kpo_!~bob@user-94-254-248-62.play-internet.pl> has joined #yocto01:04
*** learningc <learningc!~User@mti-37-145.tm.net.my> has joined #yocto01:04
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC01:08
*** stephano <stephano!~stephano@134.134.139.73> has quit IRC01:17
*** stephano <stephano!stephano@nat/intel/x-vqladsmxslrgbbgi> has joined #yocto01:17
*** stephano <stephano!stephano@nat/intel/x-vqladsmxslrgbbgi> has quit IRC01:20
*** stephano <stephano!~stephano@134.134.139.73> has joined #yocto01:20
*** stephano <stephano!~stephano@134.134.139.73> has quit IRC01:20
*** martinkelly1 <martinkelly1!~martin@205.175.118.15> has quit IRC01:21
*** scottrif <scottrif!~scottrif@47.39.44.219> has quit IRC01:25
*** kpo_ <kpo_!~bob@user-94-254-248-62.play-internet.pl> has quit IRC01:28
*** scottrif <scottrif!~scottrif@47.39.44.219> has joined #yocto01:29
spierepfCan anyone help me add a kernel module to my image?01:29
*** gtristan <gtristan!~tristanva@110.11.179.89> has quit IRC01:33
*** bavery_fn <bavery_fn!~bavery@134.134.139.72> has quit IRC01:44
*** bavery_fn <bavery_fn!~bavery@134.134.139.76> has joined #yocto01:46
*** Willy-- <Willy--!~william@156.34.161.186> has joined #yocto01:51
*** learningc <learningc!~User@mti-37-145.tm.net.my> has quit IRC01:56
*** learningc <learningc!~User@mti-37-145.tm.net.my> has joined #yocto01:56
*** learningc <learningc!~User@mti-37-145.tm.net.my> has quit IRC02:06
*** learningc <learningc!~User@mti-37-145.tm.net.my> has joined #yocto02:06
*** scottrif <scottrif!~scottrif@47.39.44.219> has quit IRC02:08
*** bavery_fn <bavery_fn!~bavery@134.134.139.76> has quit IRC02:15
spierepfHow do I add a standard kernel module like xt_addrtype to my yocto image?02:15
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto02:24
*** Willy-- <Willy--!~william@156.34.161.186> has quit IRC02:29
*** mattsm <mattsm!~mattsm@75-13-95-234.lightspeed.austtx.sbcglobal.net> has quit IRC02:32
*** marka <marka!~masselst@184.175.21.48> has quit IRC02:38
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC02:41
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto02:47
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto02:55
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-raecojhfzphzqmte> has joined #yocto03:01
khemspierepf: firstly you need to check if its enabled in your kernel .config if it is then its is being generated as a separate ipk already and you need to add that ipk to your MACHINE_EXTRA_RRECOMMENDS in your local.conf03:01
moto-timokernel-module-foo or something like that03:02
khemI think you need to enable NETFILTER_XT_MATCH_ADDRTYPE = "m"03:02
khemmay be via a netfliter.cfg or somesuch03:02
moto-timo:)03:03
khemand IIRC we had a session in YPDD om this in past03:03
khemhttps://www.yoctoproject.org/sites/yoctoproject.org/files/elc2013-kernel-lab.pdf03:03
khemit might be dated by now though03:04
* moto-timo intends to redo the materials for that at some point03:04
moto-timoit was updated by tom zanussi not too long ago03:04
*** bavery_fn <bavery_fn!bavery@nat/intel/x-nicrzjktqaiknrgu> has joined #yocto03:04
khemWe should just create living documents with branches in git03:05
moto-timoah, it was krogoth03:05
moto-timohttps://www.yoctoproject.org/training/kernel-lab03:05
khemah ok03:05
moto-timo+1 khem03:05
moto-timowe do have living documents, but maybe we could make it more agile03:05
spierepfkhem: I've definitely enabled it in my kernel recipe. I've got an xt_addrtype.cfg file that is being included by a SRC_URI and everything.03:16
spierepfkhem: the .ko is getting built.03:17
khemok then whats remaining is adding it to image03:17
spierepfkhem: just not included in the rootfs image, or tarball.03:17
spierepfIndeed.03:17
spierepfThat is the bit I am missing.03:18
khemso you add it IMAGE_INSTALL via a bbappend or03:18
khemwhich distro are you using and machine ?03:18
spierepfI am using yocto/poky/pyro, and the adzs-sc589-ezlite machine layer I created myself.03:19
spierepfI added an IMAGE_INSTALL += "xt_addrtype.ko" entry to my linux-yocto_%.bbappend file. but it had no effect.03:22
khemnot the bare filename03:26
spierepfI tried changing it to IMAGE_INSTALL += "not-a-thing.ko" and it didn't barf, so I don't know what to do with that.03:26
khemyou need to add ipk/package name03:26
khemwhere this goes into03:26
spierepfHow can I determing the ipk/package name?03:26
khemyeah IMAGE_INSTALL is an image thing so a package recipe like kernel wont entertain it at all03:27
khemthats why you dont see it03:27
khemmay be you can first find out to which .ipk is it going to03:27
spierepfIs there a document somewhere that identifies which kernel modules are assigned to which .ipks?03:28
zeddii_homethey follow a pattern: kernel-module-<name>03:30
spierepfso like kernel-module-xt_addrtype?03:31
zeddii_homeIIRC, it is a dash instead of _03:31
zeddii_homeso kernel-module-xt-addrtype03:32
zeddii_homeclasses/kernel-module-split.bbclass takes care of it, I was checking the code, but the regex’s aren’t easy to read :D03:32
spierepfCool, at least is barfed on kernel-module-xt_addrtype.03:34
spierepfNope. "No package kernel-module-xt-addrtype available."03:35
zeddii_homehead into <your build>/tmp/work/<your machine>/linux-yocto/<your version>/pkgdata/runtime03:35
zeddii_homeor better:  <your build>/tmp/work/<your machine>/linux-yocto/<your version>/deploy-ipks/<your machine>/03:36
zeddii_homeor deploy-rpms if you are using rpms03:36
zeddii_homeand you’ll see all the modules that were built and packaged.03:36
spierepfYes. I have kernel-module-xt-addrtype-...-yocto-standard03:36
spierepfand .packaged03:36
zeddii_homethere’s been a bunch of patches that have been merged recently for alternate kernel names, suffixes, and prefixes .. I wonder if they busted something. what ifyou use that entire name as the install name ?03:38
zeddii_homeif you look at: recipes-core/packagegroups/packagegroup-base.bb in oe-core03:38
zeddii_homeyou’ll see it should just be: kernel-module-<foo> for the install03:38
zeddii_homebut those are just RRECOMMENDS, so if something broke, I don’t think it would throw an error. so something may be busted.03:39
spierepfwith or without the .packaged?03:39
zeddii_homewithout03:39
zeddii_homeare you using rpm or ipk ? you can always peek at the packaged module to confirm that it RPROVIDES what the install might be looking for.03:40
* zeddii_home is not a packaging guy though, so I get out of my depth :D03:40
spierepfI don't suppose there is a flag for "Install all the kernel modules you are directed to build"?03:42
zeddii_homeyup. “kernel-modules"03:42
spierepfAWESOME03:42
zeddii_homethat’s basically a package that has nothing in it, but has a RDEPENDS on every individual module package03:42
zeddii_homeso when you install it, you get them all.03:42
spierepfPerfect. Let me try that.03:43
* zeddii_home almost always uses it .. since I’m working with more than really small systems.03:43
spierepfThanks so much zeddi_home!03:47
*** Jefro <Jefro!~josiermi@134.134.139.73> has joined #yocto03:49
*** spierepf <spierepf!188a185f@gateway/web/freenode/ip.24.138.24.95> has quit IRC04:06
*** spierepf <spierepf!188a185f@gateway/web/freenode/ip.24.138.24.95> has joined #yocto04:11
spierepfzeddi_home: and khem: if there is any way I can buy you guys some beers, just let me know.04:11
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-syqywsvogqhomkic> has joined #yocto04:12
*** armpit <armpit!~armpit@2601:202:4000:1184:951e:6cdd:3fc8:9b4> has quit IRC04:20
khemheh zeddii_home is taking you into the crawl space to show you all plumbing04:20
khembut we have some porcelain stuff too04:21
khemsee https://gist.github.com/d699532ee252c004d476ba7ef69aab6804:21
khemoe-pkgdata-util is quite handy tool04:21
khemI wish more people knew about it04:21
*** armpit <armpit!~armpit@2601:202:4000:1184:44c8:48fa:566e:84f9> has joined #yocto04:32
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC04:57
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has quit IRC05:17
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC05:30
*** mbourhis <mbourhis!~mbourhis@glo44-1-82-67-130-147.fbx.proxad.net> has quit IRC05:46
*** clement <clement!~clement@static-css-ccs-204145.business.bouyguestelecom.com> has quit IRC05:46
*** mbourhis <mbourhis!~mbourhis@glo44-1-82-67-130-147.fbx.proxad.net> has joined #yocto05:47
*** clement <clement!~clement@static-css-ccs-204145.business.bouyguestelecom.com> has joined #yocto05:48
*** MJ <MJ!cebfaad1@gateway/web/freenode/ip.206.191.170.209> has joined #yocto05:48
*** MJ is now known as Guest1088705:48
Guest10887Hi all, is there a list if open issues I can go though (I am interested in contributing)05:49
Guest10887Hi all, is there a list of open issues I can go though (I am interested in contributing)05:49
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC06:04
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC06:10
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto06:15
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC06:19
silviofkhem: There are a list and **short** explanation of all oe prodivded tools? I'm using yocto/oe with some timeouts for more than 7 years. But I don't know this tool. ^^06:28
*** Guest10887 <Guest10887!cebfaad1@gateway/web/freenode/ip.206.191.170.209> has quit IRC06:33
*** agust <agust!~agust@p4FCB54C8.dip0.t-ipconnect.de> has joined #yocto06:37
*** hastake <hastake!~ack@cable-78.29.214.214.coditel.net> has quit IRC06:47
*** hastake <hastake!~ack@cable-78.29.214.214.coditel.net> has joined #yocto06:48
*** frieder <frieder!~frieder@2003:a:e7a:6200:246c:2a8b:f45a:a33d> has joined #yocto06:55
*** open-nandra_ <open-nandra_!~marek@81.89.61.168.host.vnet.sk> has joined #yocto07:22
*** Jefro <Jefro!~josiermi@134.134.139.73> has quit IRC07:22
*** spierepf <spierepf!188a185f@gateway/web/freenode/ip.24.138.24.95> has quit IRC07:22
*** hnje <hnje!~hnje@193.106.123.182> has joined #yocto07:27
*** morphis <morphis!~morphis@pD9ED736E.dip0.t-ipconnect.de> has joined #yocto07:30
*** Kakounet <Kakounet!~Thunderbi@LFbn-1-5212-236.w90-105.abo.wanadoo.fr> has joined #yocto07:44
*** pohly <pohly!~pohly@p548497B7.dip0.t-ipconnect.de> has joined #yocto07:49
*** robert_yang <robert_yang!~robert@106.120.101.38> has quit IRC07:52
*** fl0v0 <fl0v0!~fvo@mue-88-130-106-254.dsl.tropolys.de> has joined #yocto07:58
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto08:09
*** vdehors <vdehors!~vdehors@37.170.20.53> has joined #yocto08:10
*** rajm <rajm!~robertmar@167.98.27.229> has joined #yocto08:12
*** pn <pn!~pn@62.91.23.180> has quit IRC08:19
*** mckoan|away is now known as mckoan08:20
*** t0mmy <t0mmy!~tprrt@htr06-1-82-227-229-112.fbx.proxad.net> has joined #yocto08:24
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto08:25
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC08:31
*** gtristan <gtristan!~tristanva@221.147.85.155> has joined #yocto08:45
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto08:47
*** joshuagl <joshuagl!joshuagl@nat/intel/x-uuekhnbqovwdrhvf> has joined #yocto08:47
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto08:54
*** pn <pn!~pn@62.91.23.180> has joined #yocto08:55
yoctiNew news from stackoverflow: Bitbake: "The metadata is not deterministic and this needs to be fixed" <https://stackoverflow.com/questions/48762459/bitbake-the-metadata-is-not-deterministic-and-this-needs-to-be-fixed>08:57
pnhi all, Doubt is regarding wic image creation. In source plugins (like rootfs.py), class pluginbase.py provides ways to prepare the partition using --source option. There are also ways to do some operations prior to creating the partition (like stage/configure).09:03
pnBut I would like to do some specific operations after the partition is created. Say for example, I want to ass signature to the end of my rootfs partition.09:04
pnAre there any ways to define some works after "do_prepare_partition" is called? How can I add signature to each partition after it has been created?09:05
hundebollwas is the reason to put systemd files in /lib/systemd instead of /usr/lib/systemd ?09:11
hundebolls/was/what09:21
*** kebianizao|work is now known as Kebianizao09:42
*** t0mmy <t0mmy!~tprrt@htr06-1-82-227-229-112.fbx.proxad.net> has quit IRC09:57
*** xtron <xtron!~xtron@110.93.212.98> has quit IRC10:02
*** t0mmy <t0mmy!~tprrt@htr06-1-82-227-229-112.fbx.proxad.net> has joined #yocto10:09
*** t0mmy <t0mmy!~tprrt@htr06-1-82-227-229-112.fbx.proxad.net> has joined #yocto10:09
*** rovanceo <rovanceo!~rovanceo@80.97.64.55> has quit IRC10:22
*** rajm <rajm!~robertmar@167.98.27.229> has quit IRC10:25
*** rovanceo <rovanceo!~rovanceo@80.97.64.55> has joined #yocto10:26
*** rajm <rajm!~robertmar@167.98.27.229> has joined #yocto10:26
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto10:36
*** alinucs <alinucs!~abo@bgn92-1-82-67-207-244.fbx.proxad.net> has quit IRC10:39
*** alinucs <alinucs!~abo@bgn92-6-88-179-202-174.fbx.proxad.net> has joined #yocto10:41
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC10:45
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto10:57
*** xtron <xtron!~xtron@110.93.212.98> has joined #yocto10:59
*** wolf <wolf!d9f80f64@gateway/web/freenode/ip.217.248.15.100> has joined #yocto11:01
*** wolf is now known as Guest650211:01
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:03
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has joined #yocto11:05
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto11:06
*** bluelightning <bluelightning!~paul@2406:e007:6d3e:1:5e51:4fff:febb:401d> has joined #yocto11:07
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto11:07
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC11:10
*** khem <khem!~khem@unaffiliated/khem> has quit IRC11:17
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto11:20
*** vdehors <vdehors!~vdehors@37.170.20.53> has quit IRC11:21
*** vishnu_nk <vishnu_nk!~vishnunk@2001:420:5246:1300:d57c:1a60:ce7f:935e> has joined #yocto11:22
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC11:26
*** sjolley <sjolley!~sjolley@134.134.139.73> has quit IRC11:32
*** sjolley <sjolley!sjolley@nat/intel/x-yhbmjmcgojvkpijd> has joined #yocto11:32
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto11:41
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-raecojhfzphzqmte> has quit IRC11:57
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:58
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-dcaugtkacyhgvden> has joined #yocto11:59
*** learningc <learningc!~User@mti-37-145.tm.net.my> has quit IRC11:59
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto12:02
*** mattsm <mattsm!~mattsm@75-13-95-234.lightspeed.austtx.sbcglobal.net> has joined #yocto12:15
*** ZubairLK <ZubairLK!~Thunderbi@unaffiliated/zubairlk> has quit IRC12:15
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto12:24
*** ZubairLK <ZubairLK!~Thunderbi@unaffiliated/zubairlk> has joined #yocto12:27
hundebollhttp://lists.openembedded.org/pipermail/openembedded-core/2014-December/099483.html12:43
hundebollguess that is why12:43
*** vishnu_nk <vishnu_nk!~vishnunk@2001:420:5246:1300:d57c:1a60:ce7f:935e> has quit IRC12:46
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC12:57
*** vdehors <vdehors!~vdehors@37.170.20.53> has joined #yocto13:00
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC13:06
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto13:11
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC13:18
MarexRP: hey, any plan to bump the -rt patch to latest in linux-yocto-4.9 ?13:18
MarexRP: it's currently on -rt18 while the latest is -rt61 and with -rt18 I'm triggering a BUG() in scheduler13:19
MarexRP: with -rt61 the bug isn't there13:19
*** ladidadida <ladidadida!~ladidadid@ipbcc2211a.dynamic.kabel-deutschland.de> has joined #yocto13:26
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto13:27
yoctiNew news from stackoverflow: kernel fragment not applied while other fragments are applied <https://stackoverflow.com/questions/48767937/kernel-fragment-not-applied-while-other-fragments-are-applied>13:28
*** vishnu_nk <vishnu_nk!~vishnunk@106.203.105.93> has joined #yocto13:28
*** hnje <hnje!~hnje@193.106.123.182> has quit IRC13:33
*** luneff <luneff!~yury@95.174.104.43> has joined #yocto13:36
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has joined #yocto13:37
luneffhello everyone! Could anyone help me with tricking udev into thinking about my touchscreen as a keyboard as well? I need to trigger specific part of wayland/weston that enables focus, and it happens only with a keyboard attached :-) And I can't really have one. Saw adding ID_INPUT_KEYBOARD=1 as a workaround for such issues, but really not sure where it is an appropriate place to put that given we have rules chain. Please :-D13:39
*** wooosaiiii <wooosaiiii!~woo@cpe-90-157-180-95.static.amis.net> has joined #yocto13:40
*** architekt <architekt!archi@i.love.coding4.coffee> has joined #yocto13:40
architektIs there some rfkill unblock systemd service in yocto?13:40
*** marka <marka!~masselst@128.224.252.2> has joined #yocto13:41
*** RP <RP!~richard@5751f4a1.skybroadband.com> has left #yocto13:49
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto13:50
RPmarex: you need input from zeddii/zeddii_home13:50
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC13:55
luneffarchitekt, just use connman for that; enable wifi :-)13:56
MarexRP: oh, that's Bruce's nick, thanks14:02
* zeddii reads.14:04
zeddiiyah. I have updates to the various -rt integrations under test now.14:04
zeddii4.14 and 4.9 mainly, but some of the older ones as well.14:04
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC14:04
zeddiiI had to survive all of the -stable (CVE fun), 4.14 and 4.15 before I had enough time to loop back around and refresh -rt. I'll follow things closely from this point on.14:05
zeddiiIf all goes well, should be something in a day or so, I have to run some boot + latency tests.14:05
Marexzeddii: super !14:07
Marexzeddii: Im in no haste, for now I have a patch locally anyway14:07
RPzeddii: while I have you here, are you aware of the problem with kernel-devsrc?14:08
zeddiicool. the ping was well timed, since I was at it.14:08
zeddiiRP: about the size blowing out some of the images. yah.14:08
zeddiiI was looking into stripping it down to just enough to build modules.14:08
RPzeddii: right, trying to figure out what to do about it...14:08
Marexzeddii: btw linux-yocto-4.14 repo is not out yet ?14:08
RPzeddii: that would help a lot if we could figure out how to do it. I was toying with the idea of binning the drivers/ directory14:09
*** gtristan <gtristan!~tristanva@221.147.85.155> has quit IRC14:09
RPzeddii: We have some confusion about what that code is actually meant to do, its uses are ill defined :/14:09
RPzeddii: Juro was suggesting we remove the used arch/* != $ARCH directories and the generated files, I was nervous about the latter14:10
zeddiiMarex. It is there, just in a different format this time. I was getting complaints over time about all of the kernel downloads, so I put 4.14 and 4.15 into a single repo and made them available. v4.14/* and v4.15/* along with an old v4.8/* that I did about two years ago. All in a linux-yocto.git repo.14:10
zeddiiRP: yah. let me poke at it a bit. There's a forumla for stripping it down into just what you need.14:10
zeddiiI used to do just that with the ancient LDAT build system, I just have to look and see how it applies to the modern kernel now.14:10
RPzeddii: ok, its blocking the other kernel changes getting in right now14:11
RPzeddii: I say that not as pressure, just a statement on where we are!14:11
zeddiiyou really want two packages. one that is "all the source" and one that  is "enough to build modules", but as you know, the entire kernel packaging is chaos and a tangled mess. so I'll be less ambitious and just get it working.14:11
zeddiiRP: no worries. I'm letting -rt kernels build and run in the background today, so I  can poke at it.14:12
RPzeddii: on the plus side, kernel-devsrc is now a separate recipe so we can more easily tweak it (or create two of them for different purposes if we really had to)14:12
RPzeddii: I'd be tempted to strip back the current set of files, see who screams ;-)14:12
zeddiithat was my plan as well. go for 'just enough' and let other use cases lazy initialize :D14:13
RPzeddii: good news is creating a new recipe like kernel-devsrc should be easy for people too14:13
*** gtristan <gtristan!~tristanva@110.11.179.89> has joined #yocto14:14
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto14:14
*** droman0 <droman0!uid238456@gateway/web/irccloud.com/x-hwjxzbyjfqteutum> has quit IRC14:17
*** droman0 <droman0!sid238456@gateway/web/irccloud.com/x-pvdhpnurenwnhhbz> has joined #yocto14:19
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto14:22
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has quit IRC14:24
*** stephano <stephano!stephano@nat/intel/x-pkfbvlpvslhbdkhe> has joined #yocto14:24
Marexzeddii: oh14:26
*** rmmr <rmmr!sid240755@gateway/web/irccloud.com/x-gdlcpuvujzaephsm> has quit IRC14:26
*** rmmr <rmmr!sid240755@gateway/web/irccloud.com/x-fwfnzymtyrgltbyz> has joined #yocto14:26
*** vishnu_nk <vishnu_nk!~vishnunk@106.203.105.93> has quit IRC14:29
*** micka <micka!~micka@reverse-75.fdn.fr> has quit IRC14:37
*** micka <micka!~micka@reverse-75.fdn.fr> has joined #yocto14:44
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC14:49
*** luneff <luneff!~yury@95.174.104.43> has quit IRC14:57
*** andycooper <andycooper!uid246432@gateway/web/irccloud.com/x-rwdlrptgqbkvbipx> has quit IRC14:59
*** andycooper <andycooper!uid246432@gateway/web/irccloud.com/x-tpkcxcayyfbqjdje> has joined #yocto15:00
*** bodangly <bodangly!~bodangly@12.178.87.98> has joined #yocto15:08
*** aratiu <aratiu!~adi@80.97.64.55> has quit IRC15:09
*** rovanceo_ <rovanceo_!~rovanceo@80.97.64.55> has joined #yocto15:09
*** rovanceo <rovanceo!~rovanceo@80.97.64.55> has quit IRC15:10
*** aratiu <aratiu!~adi@80.97.64.55> has joined #yocto15:10
*** vishnu_nk <vishnu_nk!~vishnunk@106.203.85.154> has joined #yocto15:10
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has joined #yocto15:14
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto15:20
*** bodangly <bodangly!~bodangly@12.178.87.98> has quit IRC15:22
*** morphis <morphis!~morphis@pD9ED736E.dip0.t-ipconnect.de> has quit IRC15:23
*** open-nandra_ <open-nandra_!~marek@81.89.61.168.host.vnet.sk> has quit IRC15:33
*** vishnu_nk <vishnu_nk!~vishnunk@106.203.85.154> has quit IRC15:50
zeddiiRP: what sizes are you seeing for the kernel-devsrc package at the moment ? mine come in around 109M for rpm. I just want to make sure I'm starting from the same baseline when I start tearing it apart.15:53
RPzeddii: compressed rpm is around 110MB, yes. Uncompressed is obviously larger and where the problem comes in15:55
zeddiiok. cool. so my baseline is comparable. digging in now.15:56
RPzeddii: drivers alone is 500MB uncompressed15:57
zeddii./amd/include/asic_reg is 89M !!15:58
* zeddii starts running the right clean targers15:59
zeddiitargets even15:59
paulgshame we don't know anyone who likes deleting ancient crap drivers....16:11
*** Snert__ <Snert__!~snert_@65.74.8.146> has quit IRC16:31
*** Snert_ <Snert_!~snert_@65.74.8.146> has joined #yocto16:31
*** bodangly <bodangly!~bodangly@12.178.87.98> has joined #yocto16:32
*** bodangly <bodangly!~bodangly@12.178.87.98> has quit IRC16:34
*** User__ <User__!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto16:34
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC16:34
*** bodangly <bodangly!~bodangly@12.178.87.98> has joined #yocto16:34
*** vishnu_nk <vishnu_nk!~vishnunk@106.203.87.178> has joined #yocto16:36
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto16:37
*** scottrif <scottrif!~scottrif@47.39.44.219> has joined #yocto16:42
*** User__ <User__!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC16:45
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto16:45
*** bodangly <bodangly!~bodangly@12.178.87.98> has quit IRC16:46
*** bodangly <bodangly!~bodangly@12.178.87.98> has joined #yocto16:48
*** yann <yann!~yann@178.208.16.32> has joined #yocto16:48
*** sjolley <sjolley!sjolley@nat/intel/x-yhbmjmcgojvkpijd> has quit IRC16:52
*** bavery_fn <bavery_fn!bavery@nat/intel/x-nicrzjktqaiknrgu> has quit IRC16:54
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC16:54
*** JPEWhacker_ <JPEWhacker_!cc4da373@gateway/web/freenode/ip.204.77.163.115> has quit IRC16:56
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto16:59
seppeDoes anyone know if it's possible to create a disto based on fslc-base (freescale i.mx) and poky-tiny?17:00
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC17:01
*** armpit <armpit!~armpit@2601:202:4000:1184:44c8:48fa:566e:84f9> has quit IRC17:05
*** fl0v0 <fl0v0!~fvo@mue-88-130-106-254.dsl.tropolys.de> has quit IRC17:06
*** Kakounet <Kakounet!~Thunderbi@LFbn-1-5212-236.w90-105.abo.wanadoo.fr> has quit IRC17:09
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC17:09
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto17:09
*** sjolley <sjolley!sjolley@nat/intel/x-gsqjcqmvppfqyitt> has joined #yocto17:10
*** rajm <rajm!~robertmar@167.98.27.229> has quit IRC17:10
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC17:11
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto17:12
*** frieder <frieder!~frieder@2003:a:e7a:6200:246c:2a8b:f45a:a33d> has quit IRC17:14
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC17:16
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto17:19
binarymseppe: the concept of distro is totally NOT linked to any machine so i guess yes.17:22
binarymfind/write the meta implementing the BSP for your board17:22
binarymand simply set MACHINE=<your machine> in build/conf/local.conf17:23
kergoththat's true unless the distro creator did bad things, yes :)17:23
binarym:)17:24
binarymseppe: i would add that you mustn't use fslc-base but https://github.com/Freescale/meta-freescale which is the meta that have the BSP17:24
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC17:26
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto17:26
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC17:28
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto17:29
*** bavery_fn <bavery_fn!~bavery@134.134.139.76> has joined #yocto17:30
*** vdehors <vdehors!~vdehors@37.170.20.53> has quit IRC17:33
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC17:40
*** mckoan is now known as mckoan|away17:41
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto17:41
*** lamego <lamego!~lamego@134.134.139.76> has joined #yocto17:53
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC17:58
*** kpo_ <kpo_!~bob@user-94-254-255-12.play-internet.pl> has joined #yocto18:03
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto18:07
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC18:11
*** dreyna <dreyna!~dreyna@2601:646:4201:b1a0:e8f0:290:15a3:819a> has joined #yocto18:12
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC18:17
*** yann <yann!~yann@178.208.16.32> has quit IRC18:22
*** dreyna <dreyna!~dreyna@2601:646:4201:b1a0:e8f0:290:15a3:819a> has quit IRC18:25
*** rfried <rfried!~rfried@207.154.200.205> has quit IRC18:26
*** rfried <rfried!~rfried@207.154.200.205> has joined #yocto18:26
*** ephraim613 <ephraim613!ad2e404a@gateway/web/freenode/ip.173.46.64.74> has joined #yocto18:28
ephraim613Hi18:29
ephraim613I am in need of some assistance regarding an issue with user permissions18:29
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto18:29
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto18:29
ephraim613is this the right place to ask18:29
ephraim613?18:29
ephraim613:-)18:29
ephraim613I am using the meta-skeleton meta layer18:30
ephraim613in this I am using the useradd-example.bb recipe18:30
ephraim613I can add users but cannot change ownership of files18:31
ephraim613the created files are with correct ownership at the do_install() time but revert to root:root at run time on the target18:32
ephraim613has anyone encountered this issue ?18:32
*** Crofton|work <Crofton|work!~balister@2601:5c0:c100:b84:c22d:c40:ab44:9e37> has quit IRC18:50
*** Crofton|work <Crofton|work!~balister@2601:5c0:c100:b84:c22d:c40:ab44:9e37> has joined #yocto18:50
*** spierepf <spierepf!18de02de@gateway/web/freenode/ip.24.222.2.222> has joined #yocto18:54
spierepfI keep approaching success asymptotically. :D18:55
spierepfDoes anyone recognize this error: https://pastebin.com/cPmJ6ckJ18:55
spierepfI believe that it has to do with a missing kernel config.18:55
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto18:58
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has joined #yocto19:04
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC19:05
*** armpit <armpit!~armpit@50-233-148-156-static.hfc.comcastbusiness.net> has joined #yocto19:07
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto19:15
*** sgw1 is now known as sgw19:16
*** halstead <halstead!~halstead@crown.incitedev.com> has quit IRC19:27
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has joined #yocto19:27
*** t0mmy <t0mmy!~tprrt@htr06-1-82-227-229-112.fbx.proxad.net> has quit IRC19:30
*** ephraim613 <ephraim613!ad2e404a@gateway/web/freenode/ip.173.46.64.74> has quit IRC19:42
*** bodangly <bodangly!~bodangly@12.178.87.98> has quit IRC20:01
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto20:11
*** marka <marka!~masselst@128.224.252.2> has quit IRC20:15
*** yann <yann!~yann@LFbn-1-527-224.w86-245.abo.wanadoo.fr> has joined #yocto20:20
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has quit IRC20:23
*** learningc <learningc!~User@13.25.50.60.kmr03-home.tm.net.my> has joined #yocto20:23
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC20:29
*** joshuagl <joshuagl!joshuagl@nat/intel/x-uuekhnbqovwdrhvf> has quit IRC20:30
*** rwoolley__ <rwoolley__!~rwoolley@128.224.252.2> has joined #yocto20:39
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has quit IRC20:42
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC20:56
*** vishnu_nk <vishnu_nk!~vishnunk@106.203.87.178> has quit IRC21:01
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC21:11
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto21:11
*** bluelightning_ <bluelightning_!~paul@243.21.255.123.dynamic.snap.net.nz> has joined #yocto21:14
*** bluelightning_ <bluelightning_!~paul@243.21.255.123.dynamic.snap.net.nz> has quit IRC21:14
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto21:14
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC21:15
*** bluelightning_ is now known as bluelightning21:16
*** mattsm <mattsm!~mattsm@75-13-95-234.lightspeed.austtx.sbcglobal.net> has quit IRC21:45
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC21:47
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto21:48
*** rstreif <rstreif!~rstreif@ip68-7-63-100.sd.sd.cox.net> has joined #yocto21:49
*** zarzar <zarzar!~zarzar@184.75.233.58> has quit IRC21:50
*** JaMa <JaMa!~martin@217.30.68.212> has quit IRC21:53
*** rwoolley__ <rwoolley__!~rwoolley@128.224.252.2> has quit IRC22:09
*** pohly <pohly!~pohly@p548497B7.dip0.t-ipconnect.de> has quit IRC22:22
*** armpit <armpit!~armpit@50-233-148-156-static.hfc.comcastbusiness.net> has quit IRC22:31
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC22:34
*** dreyna <dreyna!~dreyna@96-86-183-129-static.hfc.comcastbusiness.net> has joined #yocto22:47
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto22:51
*** dreyna <dreyna!~dreyna@96-86-183-129-static.hfc.comcastbusiness.net> has quit IRC22:52
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC22:56
*** stephano <stephano!stephano@nat/intel/x-pkfbvlpvslhbdkhe> has quit IRC23:06
*** stephano <stephano!~stephano@134.134.139.73> has joined #yocto23:07
*** rcw <rcw!~rwoolley@107-179-156-26.cpe.teksavvy.com> has joined #yocto23:10
*** lamego <lamego!~lamego@134.134.139.76> has quit IRC23:17
*** bavery_fn <bavery_fn!~bavery@134.134.139.76> has quit IRC23:25
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC23:51
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto23:52
*** stephano <stephano!~stephano@134.134.139.73> has quit IRC23:54
*** stephano <stephano!~stephano@134.134.139.73> has joined #yocto23:54
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has quit IRC23:56
*** ntl <ntl!~nathanl@65-36-80-8.dyn.grandenetworks.net> has joined #yocto23:56
*** rcw <rcw!~rwoolley@107-179-156-26.cpe.teksavvy.com> has quit IRC23:58

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