**** BEGIN LOGGING AT Wed Mar 14 02:59:58 2012 Mar 14 06:33:12 hello I m cross compiling svgalib against ARM toolchain... but I m getting this error: impossible constraint in 'asm' Mar 14 07:01:38 hello Mar 14 07:03:23 i am building a qt image , i have disabled and even perhaps removed several Qt libs which are not required , but still it keeps loading those the packages every time , can anyone tell me how do i modify my recipe Mar 14 08:28:09 morning all Mar 14 08:40:35 morning Mar 14 09:11:11 good morning Mar 14 10:54:14 03Steffen Sledz  07org.openembedded.dev * r90addcaf93 10openembedded.git/recipes/fakeroot/fakeroot_1.9.6.bb: Mar 14 10:54:14 fakeroot-1.9.6: Update URI to a functioning one Mar 14 10:54:14 We have to use a specific date to the debian snapshot mirror to get this Mar 14 10:54:14 version of the file. Mar 14 10:54:14 Signed-off-by: Steffen Sledz Mar 14 10:54:16 03Steffen Sledz  07org.openembedded.dev * r4385af534c 10openembedded.git/recipes/liblockfile/liblockfile_1.06.bb: Mar 14 10:54:16 liblockfile-1.06: Update URI to a functioning one Mar 14 10:54:16 We have to use a specific date to the debian snapshot mirror to get this Mar 14 10:54:17 version of the file. Mar 14 10:54:17 Signed-off-by: Steffen Sledz Mar 14 10:54:18 03Steffen Sledz  07org.openembedded.dev * r7c2ebdbfe7 10openembedded.git/recipes/liblockfile/liblockfile_1.06.bb: Mar 14 10:54:18 Revert "liblockfile: fix SRC_URI for version 1.06" Mar 14 10:54:19 This reverts commit b66d3f887860943f492bc9ada57fcef69eb7eef0. Mar 14 10:54:19 03Steffen Sledz  07org.openembedded.dev * r21ccbdea93 10openembedded.git/recipes/ltrace/ltrace_0.5.3.bb: Mar 14 10:57:11 gm Mar 14 10:57:59 hi likewise Mar 14 10:58:24 hi mckoan Mar 14 12:01:19 hi all Mar 14 12:02:15 hi pb_ Mar 14 12:06:56 likewise, hi Mar 14 12:09:10 likewise, Is it possible to build a qt image which can boot up and start a console for running any Qt binary Mar 14 12:11:02 erwt: yes, at least for all Qt binaries that you built using the same version, in the same way (same toolchain etc). Mar 14 12:11:38 erwt: if you install the qt demos you can run any of them from the console. Mar 14 12:11:51 hi pb_, florian, all Mar 14 12:13:58 likewise, for my particular appln , it requires only these libraries http://pastebin.com/dkwz1xYg , Mar 14 12:14:00 hi likewise Mar 14 12:15:01 likewise, i was not able to chose a selected libraries from qt.inc file , unfortunately it installs all of them Mar 14 12:16:53 erwt: I'm not familiar with how to strip the libraries down on Qt, suggested approach would be to 1) twiddle with the configure flags 2) run bitbake -g and check the dependencies, 3) do objdump to see interlibrary deps etc. Mar 14 12:17:14 likewise, okk Mar 14 12:17:25 erwt: or 4) ask on Qt, or here Mar 14 12:18:01 erwt: if you google there are some ppl really tuning down Qt, even to have it startup in <1 s. Mar 14 12:18:21 likewise, wht Mar 14 12:18:31 less than 1 sec Mar 14 12:19:49 erwt: http://qt-project.org/forums/viewthread/1384 Mar 14 12:22:19 likewise, mindblowing Mar 14 12:22:46 erwt: well, at least you now know what your goal could be :) Mar 14 12:23:16 likewise, definitely Mar 14 12:41:20 hi all Mar 14 12:41:48 I ma trying to add stuff in PATH_prepend and I want to add my stuff ahead of everything Mar 14 12:41:59 I am on oe classic Mar 14 12:42:20 I gave back ported populate_toolchain_links from oe core Mar 14 12:42:47 now I want to add so stuff right in the beginning of PATH_prepend Mar 14 12:43:08 when I do this paths = d.getVarFlag('PATH',"prepend") I am getting None Mar 14 12:43:42 shouldn't I get the stuff that is being prepended to PATh variable? Mar 14 12:44:08 i ahev even tried paths = d.getVarFlag('PATH',"_prepend") as well Mar 14 12:44:13 have Mar 14 12:50:49 Noor: that's not a varflag... it's a special override Mar 14 12:52:31 bluelightning: I git it from bitbake code self.getVarFlag(append, op) so I thought I can get the values that are prepended to PATH var Mar 14 12:53:08 got Mar 14 12:54:05 Noor: ah ok... you'll probably find your code is running too late to pick up those as flags Mar 14 12:54:15 Noor: this is probably not the right way to do what you're attempting to do Mar 14 12:54:32 bluelightning: any good suggestion Mar 14 12:55:13 use PATH_prepend in an appropriate place? Mar 14 12:55:50 basically I want to prepend /usr/bin so that native gcc is invoked instead of external toolchain non prefixed gcc if it path has been added to PATH var Mar 14 12:56:53 bluelightning: if I add /usr/bin after "${BBPATH_BIN}:${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}/${base_bindir_native}: which is being prepended in bitbake in conf i get errors Mar 14 12:57:39 you mean PATH_prepend = "/usr/bin:" ? Mar 14 12:57:41 i need to prepend it before these values like PATH_prepend = "/usr/bin:${BBPATH_BIN}:${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}/${base_bindir_native}: Mar 14 12:59:29 Noor: so did you have a trailing colon in your prepended value e.g. what I showed above? Mar 14 12:59:49 yeah Mar 14 13:00:03 what error did you get? Mar 14 13:07:40 bluelightning: sorry let me explain a bit in more detail .... the problem is in PATH variable ${BBPATH_BIN}:${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}/${base_bindir_native} should come earlier and /usr/bin should come afterwards but when I use PATH_prepend = "/usr/bin:" it is added ahead of all the stuff I started getting errors ... some stuff that should Mar 14 13:08:53 so I am trying to see how I can prepend "/usr/bin" first then otehr stuff is prepended so that /usr/bin comes after the bitbake stuff in env PATH var Mar 14 13:44:54 Noor: I don't think you'll be able to do that without using some code to insert it via string manipulation, unless you can safely append it to BBPATH_BIN... Mar 14 13:45:57 bluelightning: BTW ur first hint about "I am checking quite late" helped me and now I am gettign the perpended values Mar 14 13:46:19 not I need to add "/usr/bin:" at proper place Mar 14 13:50:57 you may wish to consider if you do it by playing around with the prepended value, even if you can get that to work it might be fragile... e.g. what happens if that code gets changed to use a different method to prepend to PATH? or gets moved to a different place? Mar 14 14:45:41 heh, it still irks the heck out of me that sourcery g++ includes non-prefixed toolchain binaries in the ia32 toolchain Mar 14 14:45:55 just because your target is the same arch as the build machine doesn't mean it's not crosscompilation, damnit Mar 14 14:45:58 * kergoth mutters Mar 14 15:27:51 heh Mar 14 15:50:10 do you prefer updated patch submissions as replies to the previous submission mail, or as a new top level mail? Mar 14 15:52:06 I'll make it a reply Mar 14 15:55:19 PATCHv2 and filled Reply-To: Mar 14 17:25:08 hi, all! I need to change hostname of my board, but then I reboot the system default hostname appears again... What am I doing wrong? Mar 14 17:36:19 I'm seeing internal errors with Perl 5.14 from oe-core, arm11 Mar 14 21:17:21 i want to change bitbake so it will wait LESS time when "coonection time out", as in here : Mar 14 21:17:37 (try: 5) http://mirrors.openembedded.org/libpng-1.2.44.tar.bz2 Connecting to mirrors.openembedded.org|82.197.159.157|:80... failed: Connection timed out. Giving up." Mar 14 21:17:54 this is try number 5, and it goes, 1,2,3,4,5..about 10 min, evrytime.. Mar 14 21:19:14 or where do I change the downlowd server ? Mar 14 21:25:25 is it the right place to ask this ? **** ENDING LOGGING AT Thu Mar 15 02:59:58 2012