**** BEGIN LOGGING AT Thu May 22 02:59:57 2008 May 22 06:05:48 anyone has distri-compiled OE using distcc or icecc successfully ? May 22 06:20:28 running into an error I don't know how to remedy; running 'bitbake bootstrap-image' when using 'generic-uclibc' as the distro always seems to fail when compiling uclibc_0.9.29.bb May 22 06:21:17 this particular error is "CROSS COMPILE Badness: /usr/include in INCLUDEPATH: /usr/include/", "cc1: internal compiler error: in add_path, at c-incpath.c:362" May 22 06:22:54 'generic' as the distro works fine, and thinking it may just be a hiccup in the repository that would be fixed I tried again a day later and I'm still having the same problem May 22 06:23:04 so if anyone has any suggestions, I'm all ears :) May 22 06:33:52 morning May 22 06:37:27 good morning May 22 07:38:14 morning May 22 07:38:31 morning May 22 07:40:21 quick question, is there a way of prodding bitbake to build multiple machines at the same time? I.e. all the z'ds May 22 07:42:33 bonjour May 22 07:51:32 Hi! May 22 07:53:51 I have trouble compiling Squid in OpenEmbedded, the build always fails with "error: cannot run test program while cross compiling", I tried everything I could think of... May 22 07:53:56 can somebody please help? :| May 22 07:54:16 Kryczek: is squid inside OE or did you add it? May 22 07:54:58 Kryczek: if it is using autoconf, you can add the results it doesn't find to the site-files May 22 07:55:02 it is originally inside the SVN trunk of gumstix-oe, but I also tried with the .bb from latest OE SVN May 22 07:56:13 03john_lee 07org.oe.dev * rd84d3829... 10/ (9 files in 3 dirs): (log message trimmed) May 22 07:56:13 cacao: change hg rev to corresponding date. May 22 07:56:13 * Hi John Lee, May 22 07:56:13 please use the corresponding date instead of the hg revision number. May 22 07:56:13 Reason is that in mercurial revision numbers are local and not equal May 22 07:56:13 between different users. May 22 07:56:17 Regards May 22 08:01:01 anyone help with building multiple machine types at once? May 22 08:09:16 RP: found a bug in bitbake, I have an INHERIT+="om-utils.bbclass" which it couldnt find because I checked out wrong branch, but error given by bitbake is ERROR: Unable to open conf/bitbake.conf May 22 08:10:23 XorA: Can you use bitbake to build multiple machines at once, or do I need to create a series of trees, or just mess with the local.conf repeatedly with scripts? May 22 08:10:50 mattaw: you can even do MACHINE="machine" bitbake blah May 22 08:11:00 mattaw: you can build multiple machines in one tree May 22 08:11:22 Ah! I thought you could, but there are no instr for it that I could google / find on bitbake manual etc May 22 08:11:37 excellent, will have the patch tested again in no time May 22 08:11:53 mattaw: hi! I wish I could help :) but... I have trouble building just one machine type :/ Perhaps you can help me? May 22 08:12:06 I'm sure it's simple, but I'm new to OE May 22 08:12:27 Maybe I could May 22 08:12:33 Is it the squid question? May 22 08:12:40 yes May 22 08:12:48 and are you building stable or embedded? May 22 08:13:04 erm... not sure I understand what you mean, but, embedded I guess? May 22 08:13:13 err, stable or dev :) May 22 08:14:17 Kryczek: did you mean to compile squid? May 22 08:14:28 but I think the answer will be found in the squid.bb file. If squid used ./configure, make, make install then you need to investigate what switch to pass to ./configure to turn off testing. When you do add it to the bb file and then post the patch, having reported it as a bug May 22 08:14:47 XorA> good point May 22 08:15:44 XorA: yes I'm trying to build a squid package May 22 08:15:58 mattaw: I did that :) and I managed to get one test further May 22 08:16:01 Kryczek: ah, good chance squid was only tested on a limited machine set May 22 08:16:10 Kryczek: you are breaking new ground :-) May 22 08:16:12 the first switch is --disable-epoll May 22 08:16:43 but the next problem is "checking if AF_UNIX dgram sockets support large packets... configure: error: cannot run test program while cross compiling" May 22 08:16:48 and there is no switch to disable that May 22 08:17:15 Kryczek: thats when you start editing files in site/ May 22 08:17:43 find out what the ac_ variable needed is and find out what the default state for your machine should be and enter it into the correct site file May 22 08:18:34 or for quick tests you can just OF_EXTRACONF += "_ac_blah_blah = bongle" in the .bb file to test May 22 08:18:49 EXTRA_OECONF May 22 08:18:57 * XorA always forgets that var name May 22 08:19:06 thanks a lot :) but May 22 08:19:12 I did read Squid's ./configure May 22 08:19:32 and the big problem is, there is a variable saying it's cross-compiling or not (lemme find the exact name...) May 22 08:19:39 and if it is ="yes", then the build dies May 22 08:19:48 you think I should force this variable to "no" ? May 22 08:21:12 for example, the test that can be disabled using --disable-epoll is inside a block starting with if test $ac_cv_func_epoll_ctl = yes; then May 22 08:21:36 Kryczek: hard to say in general terms May 22 08:22:07 but the second one (about the AF_UNIX sockets) is not enclosed in such a test, it's directly: May 22 08:22:10 if test "$cross_compiling" = yes; then May 22 08:22:13 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling May 22 08:22:42 Kryczek, > you could patch that bit of configure to include the test May 22 08:22:55 yeah you might need to fix configure.ac/configure.in May 22 08:23:19 I thought of it as a last recourse for myself, but could that be included in OE ? May 22 08:23:56 XorA: The MACHINE var is being overridden by the local.conf. I have hopefully tweaked it to only set MACHINE if it isn't already set May 22 08:24:12 I mean, so that other people can benefit from it :) May 22 08:24:26 Kryczek, > OE can apply patches before build happily. ALso you should push that upstream May 22 08:24:50 by upstream you mean to Squid source? May 22 08:24:54 Oui May 22 08:25:07 ok :) May 22 08:25:09 make the world a better place May 22 08:25:10 I'll do that May 22 08:25:28 thanks a lot for the advice :) May 22 08:25:34 also make a note in your patch that it shouldn't be needed when they update squid May 22 08:25:52 I don't understand May 22 08:26:01 ah, in the OE patch you mean May 22 08:26:04 yep May 22 08:27:44 In my experience building for OpenZaurus and now OE tells me that there is nothing like cross compiling to expose bugs in a packages build systems May 22 08:40:42 ;) May 22 08:42:15 ~summon jeremy May 22 08:42:16 apt takes out 20 clean, identical-looking phones, some extra hands, and pretends to be a telemarketer for a large corporation, so he gets delivered a phonelist containing jeremy's coordinates May 22 08:48:59 XorA: Feel free to file a bug, a patch would be even better ;-) May 22 08:49:16 RP: its a real bug then :-) May 22 08:49:33 XorA: The url in the xserver-kdrive-glamo recipe doesn;t work May 22 08:49:54 RP: erk, dodji lost his xorg status? May 22 08:50:13 XorA: The glamo repo doesn't seem to be there May 22 08:50:43 I can push my copy to git.openmoko.org May 22 08:51:06 zecke: sounds like a sensible move May 22 08:51:18 Dodji: what happened to the glamo git repo? May 22 08:51:24 yes, sounds good May 22 08:53:10 Hmm, why doesn't the om source mirror have a copy of xglamo? :/ May 22 08:53:30 or maybe I'm looking in the wrong place... May 22 08:55:33 RP: git-pull in my local glamo checkout works May 22 08:55:45 Unpacking objects: 100% (25/25), done. May 22 08:55:45 From git://people.freedesktop.org/~dodji/xglamo May 22 08:55:45 cbb4094..1043239 master -> origin/master May 22 08:56:00 XorA: hmm, so I broke something :/ May 22 08:56:51 XorA: hmm. so delete the repo again? May 22 08:57:26 zecke: I guess a backup wont hurt :-) May 22 08:58:15 git fetch git://people.freedesktop.org/~dodji/xglamo master May 22 08:58:16 fatal: Not a git repository May 22 08:58:49 RP: cd some git repo :) May 22 09:00:16 zecke: This appears to be a bug in the bitbake git fetcher :/ May 22 09:00:42 is a cd repodir missing? May 22 09:00:43 if the directory exists with no files in breaks May 22 09:00:58 zecke: Did you see my revised environment script patch for bitbake btw? May 22 09:01:09 not yet May 22 09:01:20 I try to prepare for my math exam :} May 22 09:02:06 zecke: ok, I guess thats perhaps more important ;-) May 22 09:03:50 * zecke is not studying as he should do... May 22 09:04:41 zecke: I need to talk about git servers with you at some point too :/ May 22 09:05:17 * XorA orders zecke to go pass exams May 22 09:05:21 sorry :( May 22 09:05:49 zecke: when are the exams? May 22 09:06:07 4th of june May 22 09:06:28 27-31st is linuxtag May 22 09:06:47 ah, bad timing :/ May 22 09:07:18 we can get florian to cover the stand in study notes May 22 09:08:10 last exam for my "pre-diploma"... May 22 09:10:06 someone needs to prune the glamo patches... May 22 09:33:30 10 May 22 09:33:46 Oops, sorry. May 22 10:41:31 03rpurdie 07org.oe.dev * r2280c723... 10/ (6 files in 3 dirs): jpeg: Sync with poky, massively improve libtool handling and drop pointless sections of debian patch (200k of them) May 22 10:51:13 is there some reason initramfs seems to be sneaking into a build? May 22 10:52:40 * RP noticed several dubious alterations in image.bbclass May 22 10:56:51 * XorA thinks its bad when RP uses the term dubious May 22 10:58:59 Missing or unbuildable dependency chain was: ['kernel-module-zd1211rw', 'initramfs-image'] May 22 10:59:02 WTF????? May 22 11:01:20 I would curse psokolovsky May 22 11:03:00 * XorA comments out #do_builtin_initramfs May 22 11:03:56 I think that should be optional per machine May 22 11:04:01 or per distro May 22 11:05:10 which devices actually ise a builtin initrd? May 22 11:06:10 paul's pocketpc toys May 22 11:06:26 ~curse pulseaudio May 22 11:06:27 May you be reincarnated as a Windows XP administrator, pulseaudio ! May 22 11:20:06 quick question May 22 11:20:40 is there a way to make the resolv.conf survive reboots? I'm using OE/angstrom May 22 11:21:05 is replacing the symlink to /var/run/resolv.conf by a real file enough? May 22 11:21:18 oxo: yes May 22 11:21:36 k, tnx May 22 11:21:44 oxo: or add post-up echo 1.2.3.4 >/etc/resolv.conf to /etc/network/interfaces May 22 11:22:10 up echo nameserver 192.168.0.200 >/etc/resolv.conf May 22 11:22:15 to be more accurate May 22 11:22:21 tnx for the tips May 22 11:22:39 openmoko uses that line to always set nameserver for usb link May 22 11:22:57 it actually works! thnx again May 22 11:24:07 XorA: Europe/London is a sane default for timezones? Then I would have /etc/timezone contain this and /etc/localtime a copy of that timezone (for the neo) May 22 11:25:02 zecke: I would have thought Berlin was better default, we have more staff there :-) May 22 11:26:49 XorA: Taipei in this case. anyway I will make tzdata install /etc/timezone as conf-file and make a link/copy of the other TZ May 22 11:27:22 zecke: makes sense May 22 11:40:05 morning all May 22 12:12:59 ~seen woglinde May 22 12:13:00 woglinde was last seen on IRC in channel #oe, 14h 38m 55s ago, saying: 'nite'. May 22 12:13:09 rschuster: did you get the mails in regard to the Notar? May 22 12:42:32 hi, I can't seem to get qte/qtopia to build into the i686-linux staging ( I'm trying to cross compile my app that needs avahi-qt ) May 22 13:04:16 Crofton: have you found a workaround for the avahi build failure on amd64? Clean build didn't do it for me May 22 13:04:24 no May 22 13:04:35 I'm running an autobuild atm May 22 13:04:40 to try and log the error May 22 13:04:51 I have other distractions this am May 22 13:05:20 RP, may have a suggestion how to try and debug May 22 13:05:49 or, try and find the change that broke things May 22 13:05:55 painful, yes May 22 13:06:21 libssp problems? May 22 13:06:35 avahi May 22 13:06:45 yeah but avahi asking for libssp? May 22 13:07:01 http://amethyst.openembedded.net:8000/builders/Crofton/ May 22 13:07:46 http://rafb.net/p/R2T9O696.html May 22 13:08:02 that is the top of my term buffer May 22 13:08:19 Crofton: yup, I see the same error May 22 13:08:20 I was about to go afk and am trying to get full log into autobuilder May 22 13:09:00 it's not happening on my 32 bit machine either May 22 13:09:09 sakoman, what distro do you use? May 22 13:09:13 Looks like just about every avahi .bb file was touched recently May 22 13:09:22 Angstrom 2008 May 22 13:09:31 er, on the build machine :) May 22 13:10:13 Ubuntu 7.04 May 22 13:10:24 Fedora 8 here May 22 13:10:29 AMD64 version May 22 13:11:05 I really regret not sticking with generic :-( May 22 13:11:23 I suspect this would show here May 22 13:11:26 er there also May 22 13:11:41 wait 32 bit, not generic distro? May 22 13:11:50 Ah, OK. I though you mentioned it only happened on your amd64 too May 22 13:12:10 yeah 32 bit, not 64 May 22 13:12:12 I do not have problem on 32 bit machine, only 64 bit machine May 22 13:12:23 Linux localhost.localdomain 2.6.24.5-85.fc8 #1 SMP Sat Apr 19 11:18:09 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux May 22 13:12:24 bad May 22 13:12:26 OK, that's what I thought May 22 13:12:38 Linux localhost.localdomain 2.6.23.15-80.fc7 #1 SMP Sun Feb 10 17:29:10 EST 2008 i686 i686 i386 GNU/Linux May 22 13:12:40 good May 22 13:12:56 I'm going afk May 22 13:13:11 Guess I better switch machines if I want to get any work done today May 22 13:13:12 Hopefully the oestats logs the error May 22 13:13:18 yeah May 22 13:13:35 When RP has some time, I need to figure out what he was siggesting May 22 13:13:56 I need to get a working kernel on the SFFSDR board today May 22 13:14:10 people started caring all of a sudden May 22 13:14:25 once the kernel is sane again, I'll look into dsplink more May 22 13:14:43 I keep hoping the avahi problem goes away :( May 22 13:14:46 l8r May 22 13:35:03 hi jeremy_laine May 22 13:35:39 ~curse libtool May 22 13:35:40 May the fleas of a thousand camels infest your most sensitive regions, libtool ! May 22 13:49:16 'morning... afternoon for some I'm sure May 22 13:49:59 Ello May 22 13:54:11 I'm trying to build 'bootstrap-image' using 'generic-uclibc' as the distro and I'm running into an error while compiling uclibc; "CROSS COMPILE Badness: /usr/include in INCLUDEPATH: /usr/include/" May 22 13:54:41 "cc1: internal compiler error: in add_path, at c-incpath.c:362" May 22 13:55:59 if I had to guess I'd think there was something wrong in a config file somewhere, and incorrect environment variable or something along those lines but I have no idea where May 22 13:56:08 *an incorrect May 22 13:57:55 I don't suppose anyone's run into this before or has the vaguest of ideas as to how I might remedy the situation? May 22 14:15:17 Hello: same issue from yesterday, I have my own machine config that defines a preferred kernel. When I build bb tries to build two kernels because of something mine does not provide. With -DDD what should I look for to determine what this is? My machine conf is a copy of mx31ads with only my kernel. May 22 14:16:02 kgilmer_: bitbake -g virtual/kernel and check May 22 14:16:30 hrw: thanks, I will try that. May 22 14:19:01 preferred version 2.5 of glibc not available (for item virtual/arm-angstrom-linux-gnueabi-libc-for-gcc) May 22 14:19:19 does this mean my kernel needs to provide glibc_2.5 and does not? May 22 14:19:30 no May 22 14:21:26 kgilmer_: It means your kernel depends on glibc_2.5, and it is not available May 22 14:21:27 ignore that May 22 14:21:39 it is untracked bug May 22 14:22:44 hrw, NAbyss, oh, I see it generated a file... That's probably what I'm looking for. May 22 14:29:53 Hmm...nothing is jumping out at me in depends.dot or task-depends.dot. May 22 14:30:09 the two kernel versions are 2.6.19.2 (the one I want) and 2.6.21 May 22 14:30:23 which ones they are? May 22 14:30:27 linux-mx31? May 22 14:30:28 2.6.21 as a string does not occur in either file May 22 14:31:07 it's our own. stock 2.6.19 with freescale patches and our own. May 22 14:32:33 kgilmer_: Does your kernel package include the appropriate PROVIDES = "virtual/kernel"? May 22 14:32:47 the same machine config works in poky against defaults. let me check. May 22 14:36:39 No... it does not. May 22 14:36:55 NAbyss, but if I look at another one I do not see it either May 22 14:37:05 is it in the root file "linux" perhapse.. May 22 14:38:12 NAbyss, so I see that my recipie does not include the linux class(?) May 22 14:38:36 I can see there are a few bb's that offer that PROVIDES statement May 22 14:39:30 ah yes :) May 22 14:39:51 I see now....my kernel package does not inherit kernel May 22 14:40:06 in kernel.bb (classes) that PROVIDES statement is defined May 22 14:40:19 the poky metadata structures must be different for the kernel May 22 14:40:24 That'd be why it's building two kernels, I'd imagine May 22 14:40:34 NAbyss, yes that makes sense. thanks. May 22 14:42:18 errr.wait, i spoke too soon :/ My recipie is including a base config, which inherits kernel May 22 14:44:23 let my try adding that statement to the top-level bb to see if there is a parsing problem May 22 14:46:21 03koen 07org.oe.dev * refad54af... 10/ (1 classes/kernel.bbclass): kernel.bbclass: comment initramfs stuff till rootfs locking works properly (initramfs should be optional as well) May 22 14:47:30 jeremy_laine: ping May 22 14:51:59 hmmmm...so adding PROVIDES = "virtual/kernel" to my linux recipie caused bitbake to rebuild the world. May 22 14:52:12 kgilmer_: your recipe lack 'inherit kernel'? May 22 14:52:20 hrw: no, it has it May 22 14:52:27 hwr: it was in my include file May 22 14:52:41 hrw: i missed it on the first pass but it's there. May 22 14:58:29 hrw: now rebuilding with after explicitly adding it to my top-level recipie. May 22 14:59:08 hrw: but again, this same config worked in poky without ambiguity. i'm still trying to clearly understand the differences between the two. May 22 14:59:28 kgilmer_: You're building in angstrom now, yes? May 22 14:59:35 NAbyss: yes May 22 14:59:40 stock distro file May 22 14:59:51 kgilmer_: Did you alter the PREFERRED_VERSION for the kernel to your own? May 22 15:01:32 NAbyss: um, no May 22 15:01:45 it isn't defined in there at all May 22 15:02:13 but in my build/conf/local I define my target machine which defines the kernel version May 22 15:02:16 is that not enough? May 22 15:02:35 That should be enough AFAIK, provided it's set somewhere May 22 15:03:17 NAbyss: local.conf: MACHINE = "bug" May 22 15:04:06 NAbyss: bug.conf: PREFERRED_PROVIDER_virtual/kernel = "linux-bug" May 22 15:35:59 [ May 22 15:37:12 mwester: I got wpa_supplicant to work afterall. It seems that I was too blind to see that ieee80211_crypt_ccmp and aes_generic were not installed.. May 22 15:37:37 the weird thing is that even after installing them they wouldn't get loaded automatically... May 22 15:42:49 VoodooZ_: AFAIK you have to add them to /etc/modules May 22 15:47:19 Where do I need to add -O0 and -g if I want to build everythink with debug information? May 22 15:53:58 3A May 22 15:54:00 bye May 22 15:54:07 VoodooZ_: Good news! They get autoloaded for me, at least they used to. I should re-test then - perhaps something has change with depmod or with the post-install scripts. May 22 16:12:48 Anyone here uses WebKit? Does browsing https sites, like SourceForge, work? May 22 16:18:47 does in epithany webkit May 22 16:21:40 Thanks. May 22 16:21:54 I think anyway May 22 16:22:02 been a while since I played with it May 22 16:22:13 For me it just segfaults. May 22 16:22:30 And the backtrace is not very informative. May 22 16:22:35 I guess it is some library. May 22 16:22:43 But without a working backtrace, no idea which. May 22 16:22:57 asch: you need to install all the -dbg packages to get working backtrace May 22 16:23:06 I did. May 22 16:23:10 asch: but you need to have built with debugging symbols as well May 22 16:23:24 Where to add -g -O0? May 22 16:23:49 set DEBUG_BUILD = "1" in local.conf May 22 16:23:54 and rebuilt the needed packages May 22 16:24:31 Will try, thanks. May 22 16:26:42 i never took the time to get into the "3-way merch(tm)" from oe mtn May 22 16:26:56 is there a quick explanation on how to walk though this and understand it ? May 22 16:27:25 merge, i meant of course May 22 16:28:53 maaybe next time May 22 16:34:01 where might i inquire about obtaining a login for the website/wiki? May 22 16:34:32 or is that reserved for important people? May 22 16:39:01 mwester, thesing: actually, I think it might be because of the fact my slugos image was using 2.6.24.4 initially and I installed the new packages from the feed which are installed for 2.6.24.7, thus in a different /lib/modules tree May 22 16:39:24 I was waiting to reflash my image for 2.6.25 but I guess I'll have to do it now.. May 22 16:40:17 oops. Just realised I'm not in openslug channel. hihihi May 22 16:58:37 03koen 07org.oe.dev * r4d1f7331... 10/ (1 packages/linux/linux-omap2-git/beagleboard/defconfig): linux omap2 git: disable omap mux driver because it breaks usb host May 22 17:05:25 pregier: only a few know how to give you access, and for the rest the wiki is rather broken. Consider patches to the user manual as well. May 22 17:11:46 zecke, hrw: hi May 22 17:13:24 03koen 07org.oe.stable * r0721b4b1... 10/ (8 files in 3 dirs): (log message trimmed) May 22 17:13:24 linux-rp 2.6.24: wpa and udc fix May 22 17:13:24 * Zaurus WPA kernel fix, built all Z machines without fail, by building in some crypto bits that don't work on the Z for unknown May 22 17:13:24 reasons. Hopefully solved in 2.6.25. May 22 17:13:24 Symptoms are: ieee80211_crypt_tkip: could not allocate crypto API arc4 May 22 17:13:25 Bug URL: http://bugs.openembedded.net/show_bug.cgi?id=4180 May 22 17:13:29 * Kernel built OK across the Z range except collie and tosa, i.e. poodle, spitz, c7x0 and akita. May 22 17:16:04 jeremy_laine: hi! May 22 17:16:15 likewise: hello! May 22 17:17:05 jeremy_laine: is the build stats server shaping up? May 22 17:19:50 likewise: you mean the software or the hosting for the offcial stats server? May 22 17:19:57 in any case the answer is yes for both :) May 22 17:20:08 jeremy_laine: I meant the first 'yes' :-) May 22 17:20:25 (koen is handling setting up a server, and I've made nice progress on the software, see http://oestats.jerryweb.org/) May 22 17:29:05 jeremy_laine: what is the ultimate goal of this? Have a db of what packages fail under which circumstances? May 22 17:29:34 thesing: yes, and have the logs for the failed builds May 22 17:30:31 thesing: if you make a change to a package, you can then keep an eye on the build reports to see if you broke anything May 22 17:30:41 (a la mozilla) May 22 17:31:57 isn't this done in bugzilla already? May 22 17:33:29 don't get me wrong, I like this, but I'm not sure how it will play together with bugzilla and the autobuilder. May 22 17:35:57 thesing: sure, it's also reported in bugzill May 22 17:36:25 thesing: what I wanted was to have a tool which anyone can deploy, for instance at my company we have our own autobuilder May 22 17:37:09 thesing: given the number of oe-derivatives, we probably don't want everyone spamming the bugzilla automatically May 22 17:37:30 I'd be interested in a tool that I can deploy locally - I have three distros to build, and for two of those I have two machines -- so I have 5 builds I need to keep working as I change things. May 22 17:41:08 mwester: you can do so right now, check out the code and follow the instructions: http://opensource.bolloretelecom.eu/projects/oestats May 22 17:48:08 03koen 07org.oe.dev * r5b6e9a42... 10/ (6 files in 3 dirs): May 22 17:48:08 gumstix-kernel: attempt to unbreak it, part #1 May 22 17:48:08 * this solves the first problems reported in http://amethyst.openembedded.net:8000/packages/gumstix-kernel/ May 22 17:54:34 ~hail oestats May 22 17:54:35 * ibot bows down to oestats and chants, "I'M NOT WORTHY!!" May 22 17:54:37 http://amethyst.openembedded.net:8000/builds/6/ May 22 17:55:18 RP, the log for the failing avahi is on the Build stats sight now :) May 22 17:56:39 Crofton|work: would it be helpful to upload the "run" file too ? May 22 17:59:00 jeremy_laine, I'm not sure May 22 17:59:16 I need to get some advice from RP May 22 17:59:22 I wish I knew what broke it May 22 17:59:47 what would be nice is to look at the history of avahi builds, so I could identify when the problem appeared May 22 18:04:23 Crofton: well that will be available at http://amethyst.openembedded.net:8000/packages/avahi/ May 22 18:05:10 good answer :) May 22 18:05:16 I knew that was coming .... May 22 18:05:49 ok got to go, catch you tomorrow May 22 18:09:11 Crofton: and see contrib/mtn-bisect.sh :-) May 22 18:11:25 I know May 22 18:11:35 I'm busy with some other stuff atm May 22 18:11:59 I keep hoping it goes away, and I 'm afriad running the builds will take days May 22 18:44:16 Hello there, is there any instructions on how to boot a .jff2 using qemu somewhere? May 22 18:44:32 I just got a minimal-image here and want to try it out May 22 18:51:31 er May 22 18:51:42 Whatever target you're qemu'ing should say "here's how to pass a rootfs in" May 22 18:52:12 and OE can spit out .tar rootfs' too so you can extract easily May 22 18:54:35 Tartarus: Rigth. OR spited the rootfs dir and inside deploy/images a tar.gz in there. Will try to experiment a little bit more with that then, tahnks May 22 18:54:48 yeah May 22 18:54:56 note that 'tmp/rootfs' isn't usable as a rootfs May 22 18:55:06 since everything is owned by you, not root May 22 18:56:22 03koen 07org.oe.dev * r63768baf... 10/ (1 conf/distro/include/angstrom.inc): angstrom: update sepukku stuff May 22 18:58:07 exactly. I am not sure what the rootfs dir is there for. I need to ready more docs maybe May 22 19:01:52 03koen 07org.oe.dev * r63768baf... 10/ (1 conf/distro/include/angstrom.inc): angstrom: update sepukku stuff May 22 19:02:05 03koen 07org.oe.dev * r63768baf... 10/ (1 conf/distro/include/angstrom.inc): angstrom: update sepukku stuff May 22 19:07:04 * * OE Bug 4287 has been created by  May 22 19:07:06 * * uclibc-0.9.29+svnr21926-autobuild May 22 19:07:08 * * http://bugs.openembedded.net/show_bug.cgi?id=4287 May 22 19:11:45 glibc-internediate is failing for me May 22 19:11:46 http://amethyst.openembedded.net:8000/packages/glibc-intermediate/ May 22 19:13:07 Crofton|work: It seems there was a regression introduced about a week ago May 22 19:13:14 see the ml May 22 19:13:27 f2497299e919cb94e12fc8690a709479451e5510 seems to be a good version May 22 19:13:41 I have not yet had time to narrow it down further after that May 22 19:14:05 I suspect the gcc changes in the last week May 22 19:14:07 yeah, I have a couple of things like that May 22 19:14:15 been running builds in the backgrouns May 22 19:14:33 and setting local.conf to upload to the oe-stats May 22 19:14:45 saves me having to pastebin the errors ... May 22 19:15:05 Crofton|work: I don't understand this stuff. Maybe you can specifically look at 860bccc90a045f54a0fd143d4759959d43643350? May 22 19:15:24 Laibsch, I am really working on something else atm :( May 22 19:15:25 I already talked to RP about this, he is the only other person to have touched gcc afaics May 22 19:15:34 IC May 22 19:15:50 I think that is a likely candidate, but I would not know May 22 19:16:03 and I was playing darts late last night and feel like rap :) May 22 19:16:15 * Tartarus hopes mtn update goes backwards fine and tries May 22 19:16:23 it does May 22 19:16:28 RP knows about the problem and looked at it briefly, so I think the chance of his changes creating this problem are somewhat lower May 22 19:16:33 Crofton rap or crap? May 22 19:16:44 But I am really going by chances and probabilities here May 22 19:16:44 crap May 22 19:17:09 Apparently I was like the second coming of Andy Cap May 22 19:17:25 they needed someone for their dart league at the last moment May 22 19:17:38 I haven't kept score at darts since the last century May 22 19:18:04 that's almost as long ago as it sounds ;-) May 22 19:18:10 it is May 22 19:18:20 I won 2 of 3 singles matches :) May 22 19:18:21 btw. gcc-4.2.4 is out May 22 19:18:29 now they will want me to play every week ... May 22 19:20:31 crofton *g* May 22 19:20:40 uos May 22 19:20:50 damend sirc May 22 19:20:57 Crofton: that can make you more money than OE can :-) May 22 19:21:05 heh May 22 19:21:14 likewise only in europe May 22 19:21:17 not if I have to stay in a smokey bar all night May 22 19:21:38 Crofton|work: will be forbidden in most .eu countries soon. May 22 19:21:48 Crofton|work: smoking, not darting (yet) May 22 19:22:19 My friend the smoker was not happy with $10usd packs of cigarettes in .ie May 22 19:22:30 real darts? Like, ones with points on them? May 22 19:22:40 yeah May 22 19:23:30 I haven't seen those in a while. Liability issues around here, so you get those stupid dart boards that are all full of holes, and darts with long thin plastic tips that are supposed to stick in the stupid holes. May 22 19:24:23 $10 usd? i stopped looking at what they are here, but its more than that ;) May 22 19:30:57 nite all May 22 19:32:43 ~seen zecke May 22 19:32:49 zecke was last seen on IRC in channel #oe, 4h 45m 18s ago, saying: 'jeremy_laine: ping'. May 22 21:35:47 Aaagh!!! May 22 21:40:32 Aaaaagh!!!! May 22 22:18:24 Is anyone out there? May 22 22:22:00 http://logs.nslu2-linux.org/livelogs/angstrom.txt, May 22 21:59:40 May 22 22:28:59 Is there life on Mars? May 23 00:04:05 RP: ping May 23 00:45:06 * * OE Bug 4288 has been created by  May 23 00:45:08 * * glibc-intermediate-2.6.1-autobuild May 23 00:45:10 * * http://bugs.openembedded.net/show_bug.cgi?id=4288 May 23 01:33:56 ~oebug 4242 **** ENDING LOGGING AT Fri May 23 02:59:57 2008