**** BEGIN LOGGING AT Wed Mar 13 02:59:58 2013 Mar 13 05:56:14 Good Morning all Mar 13 05:56:48 i have one config file for my module, which is having variable macro name MACHINE Mar 13 05:57:06 that machine i need to select in recipee Mar 13 05:57:18 what i set in reci[pee it should take in bb file Mar 13 05:57:39 sorry it should take in config file Mar 13 05:57:47 its kind of env variable Mar 13 05:57:56 how i can set in bb file? Mar 13 06:10:06 morning. Mar 13 06:24:44 anyone compiled the recipes in meta-qt5 lately? qtbase, qtjsbackend and qtdeclarative all fail to compile on my system. Mar 13 06:28:59 tasslehoff: on my side qtbase 5.0.1 works well Mar 13 06:29:13 tasslehoff: what is your problem? Mar 13 06:30:04 silviof: did a cleansstate now. will post the error after a rebuild Mar 13 06:31:27 tasslehoff: ok Mar 13 06:33:32 silviof: http://pastebin.com/NZwFBqiV Mar 13 06:35:01 tasslehoff: what is your commitid of the meta-qt5 - I will rebuild my qt for you :-) Mar 13 06:37:00 silviof: 488949b8cb6235285dffc9e42bc8d97df5aac5cb :) Mar 13 06:37:50 I'm on jansa/test, since it has a couple of fixes I needed for qtbase-native to compile Mar 13 06:38:31 btw I am currently on denzil, since I had other compile errors on danny. Mar 13 06:43:43 tasslehoff: build meta-qt5 on this commitid: 2f9ffe2516ca2c72a860a1d3da9de64975918f72 ? .. because the last commit (488949b) manipulate the configuration files for compiler settings Mar 13 06:55:39 silviof: are you on danny or denzil (or something else)? Mar 13 06:56:21 I got some compile errors now as well, but wonder if I should checkout danny instead Mar 13 06:56:56 tasslehoff: ich bin bei (7e9cb437b1b) Mar 13 06:58:32 hum. now I get stuff like: unrecognized command line option "-msse2". /me goes to google Mar 13 07:16:51 HI Mar 13 07:17:34 in my bb file i am exporting MACHINE1 variable, that variable i want use in my source code Mar 13 07:17:55 but i am not able to access that value in my source code which i have exported in bb file Mar 13 07:18:00 how we can do Mar 13 07:18:08 please can any one help me Mar 13 07:18:39 blk: you need to set your variable in a .conf-file Mar 13 07:19:54 MACHINE1 =${TARGET_SYS} Mar 13 07:20:27 in this case i am selecting MACHINE1 in bb file with target name Mar 13 07:20:41 so in my config file i am using MACHINE1 variable Mar 13 07:21:25 i want to set environemnt MACHINE1 = run time value not fixed Mar 13 07:21:34 so in config i can access that Mar 13 07:22:45 blk: how transmit your variable to compiler? With -D or? Mar 13 07:24:09 yaa similer Mar 13 07:24:33 like for make we give -D MACHINE1=x86 Mar 13 07:24:48 but now i want it for config Mar 13 07:29:05 ya i got it Mar 13 07:29:24 if i do export inside do_configure() function its working out Mar 13 07:30:07 but is it taht export MACHINE variable scope only for this bb file to run or it will be there always? Mar 13 07:41:39 blk: its only known in the bb-file. If you need it somewher you need it in a conf-file. Mar 13 07:41:59 is there some standardized way of adding user into an image at build time? Mar 13 07:43:27 thanks silvof.... i need only in that module Mar 13 07:48:22 blk: np Mar 13 08:03:51 tasslehoff: i got the same failures like you if I'm on meta-tq5:488949b Mar 13 08:08:15 erbo: i do that in my own function in the image recipe Mar 13 08:08:31 rootfs post process i think Mar 13 08:10:42 fakeroot add_users() { do your stuff } Mar 13 08:11:26 also made a pwgen-native recipe to make passwords Mar 13 08:17:19 nerdboy: ok, thanks Mar 13 08:29:39 silviof: new compile error, on the sha you adviced: http://pastebin.com/5xNbbkFr Mar 13 08:33:58 morning all Mar 13 08:35:56 hii alll Mar 13 08:36:15 any body worked on external toolchain?? Mar 13 08:36:26 i need some help Mar 13 08:44:08 tasslehoff: yes - the last working commit on the meta-qt5 is a376cc61ed0 for me. Mar 13 08:56:42 good morning all Mar 13 08:59:34 silviof: going round in circles. I believe that is where I started my compile error round :) Mar 13 09:23:37 :-) Mar 13 09:27:20 right this is where I get an out of memory from cc1plus, even though I have plenty of memory available Mar 13 09:35:53 Hi all Mar 13 09:36:32 Anybody had working experience in addding external toolchain? Mar 13 09:46:11 Sj: bbla and Guest12557 it is not the name why you become no answer :-) Mar 13 09:48:07 Sj: take the meta/conf/distro/include/tcmode-default.inc or meta/conf/distro/include/tcmode-external-sourcery.inc file and set this up for you external compiler Mar 13 11:31:13 hi. i'm looking for a bitbake-variable that expands to the actual directory where an append-recipe is located. using ${THISDIR} in a .bbappend expands to the directory of the originating .bb file Mar 13 11:31:56 i simply want to run an installer in ROOTFS_POSTPROCESS_COMMAND, so there is no need that it is handled by bitbake or copied again to the WORKDIR or such, i just need its path in order to run it Mar 13 11:34:43 schramae: use somevar := "${THISDIR}" and then ${somevar} in the bbappend Mar 13 11:35:54 ensc|w_: will try (after lunch), thanks :) Mar 13 11:59:37 what is the best way to override fstab in base-files? Mar 13 12:12:36 jackmitchell: a combination of FILESEXTRAPATHS_prepend and SRC_URI should work AFAIK Mar 13 12:13:16 I've just got this at the moment SRC_URI_append = "file://fstab" Mar 13 12:13:25 and hoping that it will take precedence Mar 13 12:13:40 it's in a bbappend in my own layer Mar 13 12:14:49 i think you'll need FILESEXTRAPATHS_prepend := "${THISDIR}/files:" as well and files/fstab must exist Mar 13 12:14:51 I've changed it to FILESEXTRAPATHS: Mar 13 12:15:09 I've seen it in the manual now I know what to look for :) Mar 13 13:13:12 ok, now I'm struggling to add an extra directory in the filesystem, I've got the following Mar 13 13:13:28 dirs775 += " /opt/tmp" Mar 13 13:13:33 and I've also tried Mar 13 13:13:41 dirs775_append " /opt/tmp" Mar 13 13:14:47 ah, that's cause its dirs755! doh! Mar 13 13:31:06 libgcc rdepends on xxxxx what is this error?? :-( Mar 13 13:34:38 is it valid to have a .bb and a corresponding .bbappend in the same layer, I know it sounds mad but it's a valid use case Mar 13 13:35:27 does someone has powertop recipe? Mar 13 13:35:32 I get the following 'note' Mar 13 13:35:34 NOTE: ['/mnt/SSD/oe-r0005/meta-db/recipes-conf/php/php_5.3.19.bbappend'] to [] Mar 13 13:36:36 libgcc rdepends on xxxxx what is this error?? :-( any body help me out please Mar 13 13:39:56 Sj: pastebin the whole log, all that means is that a libgcc dependancy hasn't been met Mar 13 13:40:03 i'm working on external tool chain in OE-core Mar 13 13:40:24 Sj: well you need to provide whatever xxxxxx is Mar 13 13:40:53 in mytoolchain.bb i have written PREFERRED_PROVIDER_libgcc = "mytoolchain" Mar 13 13:41:20 in work dir packagesplit i got the so file Mar 13 13:43:07 Sj: this is a very good talk, it should explain everything, I am no external toolchain expert Mar 13 13:43:07 http://www.youtube.com/watch?v=FZpKbSHRJro Mar 13 13:48:38 oh ok ok thanks for the link anyway Mar 13 16:07:08 ensc|w_: ping Mar 13 20:38:48 anyone seen error like this lately? ERROR: Task do_package_write_ipk in oe-core/meta/recipes-devtools/gcc/gcc-runtime_4.7.bb depends upon non-existent task do_packagedata in meta-private/recipes-devtools/external-toolchain/external-foo-toolchain.bb Mar 13 20:50:31 hm no Mar 13 22:47:45 anyone know what recipe i would modify to provide my own /etc/passwd? Mar 13 22:57:13 ah, base-passwd **** ENDING LOGGING AT Thu Mar 14 02:59:58 2013