**** BEGIN LOGGING AT Thu Nov 24 03:00:00 2016 Nov 24 06:37:56 Can anybody point me at advice on specs for a development system for yocto? Nov 24 10:09:22 How it's supposed to use make-image-headers.sh from psplash? I'm unable to create the c-source image Nov 24 10:11:36 aV_V: hey Nov 24 10:12:11 I'm using the dylan release, so I don't know whether the following information is still applicable... Nov 24 10:12:42 T_UNIX: ?¿ Nov 24 10:13:19 i added a psplash_git.bbappend to a layer that appends SRC_URI for a logo.pnd and a psplash-colors.h Nov 24 10:13:27 -pnd+png Nov 24 10:14:15 aV_V: I use a do_configure_append task to overwrite the psplash-colors.h of the original source Nov 24 10:15:10 so in summary: Add a .bbappend that contains your png and psplash-colors.h, then use the .bbappend to overwrite the psplash-colors.h Nov 24 10:15:42 "contains" as in SRC_URI += "file://logo.png file:psplash-colors.h" Nov 24 10:22:08 T_UNIX: I made work the script I needed to install libgtk2.0-dev Nov 24 10:22:27 ah, for the gdk pixmap tool? Nov 24 10:22:32 yes Nov 24 10:22:45 btw, why do u need psplash-colors.h? Nov 24 10:22:50 aV_V: alright. Then I missunderstood your issue :D Nov 24 10:23:10 aV_V: because I want the progress bar to use different colors Nov 24 11:17:05 hello Nov 24 11:18:06 can i have a SRC_URI ="file name with spaces in it;md5sum-=...;subdir=..." ? Nov 24 11:18:29 as SRC_URIs are URLs, and whitespace separated, you'll need to escape the spaces Nov 24 11:18:53 like #20 ? Nov 24 11:18:57 %20 ? Nov 24 11:19:02 iirc yes Nov 24 11:19:40 thank you rburton Nov 24 11:54:01 this append from meta-poky: http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta-poky/recipes-core/busybox Nov 24 11:54:42 it only applies if DISTRO = "poky-tiny" ? Nov 24 11:55:07 yes Nov 24 11:55:39 rburton: thx Nov 24 12:08:57 rburton, the maga manual seems to sisagree with us, it says that obs "does not support file or directory names that contain spaces" :( Nov 24 12:09:03 disagree Nov 24 12:09:28 cornel: that's obs Nov 24 12:10:00 rburton, sorry, i meant openembedded build system Nov 24 12:10:10 what's the contetx Nov 24 12:10:12 bad acronym Nov 24 12:10:17 we don't support build paths with spaces in Nov 24 12:10:57 rburton, http://www.yoctoproject.org/docs/2.2/mega-manual/mega-manual.html , "Source directory" Nov 24 12:11:35 yes that's the place where oe is checked out Nov 24 12:12:00 the pedantic form is "build directory can't have spaces in as too much breaks so we just refuse to build there" Nov 24 12:14:25 so it does not apply to the SRC_URI question above? Nov 24 12:14:45 correct Nov 24 12:14:55 thank you rburton Nov 24 12:14:56 the context of that statement is "where you put the checkout of oe" Nov 24 12:15:27 like after running source poky/oe* script? Nov 24 12:15:49 the directory name that you put those in Nov 24 12:16:00 no checking poky out in ~/my work/poky Nov 24 12:16:32 so "my work" is not acceptable, but my_work is Nov 24 12:22:20 yeah Nov 24 12:22:37 too much of the world just expects to be able to use paths without quotes Nov 24 12:22:45 disable the sanity check if you want and see how quickly it explodes Nov 24 12:23:02 :) Nov 24 12:24:48 wonder how much stuff breaks with unicode path names :) Nov 24 12:25:50 less probably :) Nov 24 12:26:17 the bulk of the breakage is scripts just doing $1 in sh without quotes Nov 24 12:28:04 ross@flashheart ~/Yocto/poky/☃ (uninative %) Nov 24 12:28:04 $ bitbake bash Nov 24 12:28:06 lets find out! Nov 24 12:28:28 i'd be surprised if anything breaks Nov 24 12:28:33 its "just" utf8 Nov 24 12:28:48 sure, but there might be some programs that hate non-ascii args Nov 24 12:30:23 i'd have though those would have been weeded out by now Nov 24 12:31:09 possibly. tbh i have not tested this. So i guess we will see with your test run :) Nov 24 12:38:43 git status gets all boring with it though Nov 24 12:38:52 show "\342\230\203/" in untracked files Nov 24 12:39:12 aww rpm fails to pass configure Nov 24 12:39:20 shocked that it was rpm i tell you, shocked! Nov 24 12:46:03 rburton, my problem is like this: Nov 24 12:48:25 https://paste.fedoraproject.org/489128/79991690/ Nov 24 12:49:19 so there it seems to be a real problem in poky Nov 24 12:49:30 did you forget to put file:// in the URLs? Nov 24 12:49:45 hmmm Nov 24 12:49:48 good point Nov 24 12:49:51 let me check Nov 24 12:50:54 no, it does have file:// Nov 24 12:51:16 my paste is tainted, of course, but in the real recipe the file:// is there Nov 24 12:51:52 same recipe is ok if i change the file names into nospace version Nov 24 12:51:53 all i can suggest is throwing some more debugging in Nov 24 12:52:53 so makeinfo can't handle unicode paths :( Nov 24 12:52:57 oh! Nov 24 12:53:04 it passes LC_ALL=C before running makeinfo :) Nov 24 12:54:37 gee its almost like we need C.UTF-8 Nov 24 12:54:43 * rburton glares at glibc Nov 24 13:21:00 Whats a good way which recpie generated a specific file in the target rootfs Nov 24 13:21:20 I'm searching for the package which is creating the file /etc/hostname Nov 24 13:26:51 use oe-pkgdata-util Nov 24 13:31:02 rburton: thank you :) Nov 24 13:34:21 rburton: is it enought to just bbappend the base-file recpie and re-set the hostname? Nov 24 13:39:38 no need Nov 24 13:39:53 hostname_pn-base-files = "bob" in a local.conf or distro.conf will set a global hostname Nov 24 13:39:59 yes, all my builds are called bob Nov 24 13:40:19 they've also all got avahi in so ssh bob.local will find an image running, be it on real hw or qemu Nov 24 13:41:37 rburton: how does this work? "hostname_pn-base-files" injects the variable into this script? Nov 24 13:42:31 no, it overrides the value in the base-files recipe Nov 24 13:42:40 base-files has a variable called hostname Nov 24 13:42:57 so hostname_pn-basefiles sets hostname in the pn-basefiles override, whicih is set by the basefiles recipe Nov 24 13:46:01 ok, and for what is this pn? I never saw this Nov 24 13:46:43 pn, as in ${PN} Nov 24 13:46:48 package name Nov 24 14:13:01 rburton: if I'm using the same yocto/bitbake project to generate two different images (only theoretical) where should I place this local.conf? Nov 24 14:13:19 rburton: if I just place them in the depending meta folders (meta-foo and meta-bar) I have a collision Nov 24 14:13:36 if its a customisation that *you* want then local.conf is the place Nov 24 14:28:37 rburton: I have two hostnames for two images where should I place then the configuration? Nov 24 14:30:18 HyP3r: then you need to tweak the images in a post-rootfs phase Nov 24 14:30:57 just write a rootfs postprocess command Nov 24 14:35:57 ok, and the other way is to enable and disalbe the depending layers which are containting the local.conf file? Nov 24 15:01:34 rburton: are you around? Nov 25 00:30:45 can anyone tell me why poky core-image-base systemd doesn't have the systemd-nspawn command? **** ENDING LOGGING AT Fri Nov 25 02:59:59 2016