/srv/irclogs.ubuntu.com/2005/06/15/#ubuntu-toolchain.txt

=== svenl_ [~luther@AStrasbourg-251-1-59-131.w82-126.abo.wanadoo.fr] has joined #ubuntu-toolchain
jbaileyfabbione: I have the kernel-package change done here locally.  I haven't a clue how to test it. =)03:58
jbaileyI've tried running the postinst and preinst with the right arguments locally, but I have a feeling that it gets attacked by sed or something on its way into the kernel package.03:59
jbaileyLeaving me with the impression that I don't smoke enough weed to do this hack without assistance.03:59
jbaileyfabbione: Can you proof the changes I've made?  I've touched kernel/image.preinst, kernel/image.postinst and debian/changelog04:05
jbaileyfabbione: I've put the files up on chinstrap.  If they're all good, can you please use this when uploading -rc6?04:05
fabbionemorning05:38
jbaileyYou're up early. =)05:38
fabbioneyeah05:38
jbaileyDo you have brain space to look at the kernel-package stuff I put on chinstrap now?05:39
jbaileyOtherwise I'm headed off to bed in a moment. =)05:40
fabbioneyeah sure05:40
fabbioneyou could have just uploaded dude :)05:40
jbaileyI don't like doing untested uploads.05:40
fabbioneit's not like i will get mad at you if you break breezy :)05:41
jbaileyTrue.05:41
jbaileyIf you'd like, I can debsign and dput. =)05:41
fabbionei am diffing now :)05:41
jbailey'k05:43
jbaileyI've signed my local copy, so if you like I'll dput it.05:43
fabbionego ahead :)05:43
fabbionei will test it to build 12rc605:43
jbaileyWhoosh, off she goes.05:46
jbaileyI've pinged md about module-init-tools, which needs an update for the modalias magic.05:46
jbaileyAnd I think it's now naptime. =)05:49
jbaileyg'n =)05:49
fabbionegood night jeff!05:50
fabbionecya later05:50
=== Seveas [~seveas@seveas.demon.nl] has joined #ubuntu-toolchain
=== chmj [~d3vic3@dumbledore.hbd.com] has joined #ubuntu-toolchain
fabbioneelmo: ping?10:06
=== ajmitch [~ajmitch@port162-41.ubs.maxnet.co.nz] has joined #ubuntu-toolchain
elmofabbione: sup10:32
fabbioneelmo: hey10:32
fabbioneif you have a few minutes, i would like to get the latest kernel-package in breezy-i386 on concordia and ccache on breezy/halley :)10:33
fabbionebe aware to install k-p only on i38610:33
fabbionei need to create images that i can test locally10:33
elmohalley done, b-i386 is trying...10:34
fabbioneyeah i guess i am spinning corcodia's CPUs a bit :)10:35
fabbionethanks a lot dude :)10:37
elmonp10:38
elmo(finished)10:39
fabbioneperfect10:39
=== \sh [~shermann@server3.servereyes.de] has joined #ubuntu-toolchain
=== Seveas [~seveas@ksl403-uva-154.wireless.uva.nl] has joined #ubuntu-toolchain
jbaileyg'm01:34
Mithrandirjeff :)01:35
jbaileyHeya Tollef.  Happy Birthday.01:35
fabbionehey jbailey 01:36
fabbionejbailey: i just finished the build on i386 with the new kernel-package01:36
jbaileyCool!01:36
fabbionedownloading the image right now for testing :)01:36
jbaileyfabbione: If you could do two tests for me when you've got it?01:39
fabbioneSetting up linux-image-2.6.12-1-686 (2.6.11.94-1.1) ...01:39
jbaileyAside from the regular install, try setting ramdisk = foo, and ramdisk = /usr/sbin/mkinitrd in kernel-img.conf01:39
fabbioneFailed to create initrd image.01:39
fabbionedpkg: error processing linux-image-2.6.12-1-686 (--install):01:39
fabbione subprocess post-installation script returned error exit status 201:39
fabbioneErrors were encountered while processing:01:39
fabbione linux-image-2.6.12-1-68601:39
Mithrandirjbailey: thanks. :)01:40
fabbioneso there is something wrong in postinstall01:40
=== doko_ [~doko___@dsl-084-059-045-032.arcor-ip.net] has joined #ubuntu-toolchain
jbaileyfabbione: Ugh.01:40
jbaileyWhat's the perl equivalent of sh -x ?01:40
Mithrandirjbailey: it doesn't have any, sadly.01:40
jbaileyYar.01:40
Mithrandirit has a built-in debugger, though.01:41
MithrandirI wish it'll grow a -x some day.01:41
fabbionejbailey: i think i know what is wrong.. just a few secs01:41
KamionMithrandir: yes it does01:46
MithrandirKamion: it does?  What's the magic for that?01:47
KamionPERLDB_OPTS='NonStop AutoTrace' perl -d01:48
Mithrandiroooh, shiny.01:48
KamionLineInfo=foo to output trace to foo01:48
Kamionsee perldebug(1)01:48
jbaileyCreepy. =)01:48
jbaileyDenis Ritchie said the debugging was twice as hard as coding... And perl is the reference implementation!01:49
fabbionejbailey: white spaces are not an opinion :)))))01:49
fabbionemy $ret = system($ramdisk .01:49
fabbionethis is your original line01:49
fabbionebut it calls a command that doesn't exist01:49
fabbione-  my $ret = system("mkinitrd " .01:49
fabbione+  my $ret = system($ramdisk .01:49
fabbionenote the space AFTER mkinitrd01:50
fabbione  my $ret = system($ramdisk . " " .01:50
jbaileyOh, *lol*01:50
fabbionethis will ensure a space after the command :)01:50
fabbioneand works01:50
fabbioneat least...01:50
fabbionelet me reboot to see if it really works :)01:50
Kamionor just use system(LIST) rather than system(EXPR)01:50
jbaileyfabbione: =)01:50
Kamionalthough that wouldn't work if $ramdisk can have both command and arguments, I guess01:50
fabbioneKamion: that's Manoj's code :)))01:51
fabbioneKamion: and yes.. there are options after01:51
Kamionok01:51
jbaileyKamion: It can't, thankfully. =)01:51
jbaileyThe variable gets ( -e ) 'd in the preinst as a safety check.01:52
fabbionejbailey: so what's the second test you want me to do?01:52
jbaileyfabbione: In kernel-img.conf try it with "ramdisk = foo", which should fail the preinst, and "ramdisk = /usr/sbin/mkinitrd" which is just overriding the default with the default but should work.01:52
fabbionejbailey: sure01:53
fabbioneYou are attempting to install an initrd kernel image (version01:54
fabbione2.6.12-1-686) but you do not seem to have a mkinitrd command in the01:54
fabbionepath. This will break the installation, unless initrd-tools are also01:54
fabbionebeing installed right now.01:54
fabbioneCould not find /bin/foo in path. at /var/lib/dpkg/tmp.ci/preinst line 190.01:54
fabbioneThe directory /lib/modules/2.6.12-1-686 still exists. Continuing as directed.01:54
fabbionebut it doesn't die at preinsta01:55
fabbioneclearly you might be bootstrapping the system01:55
fabbioneand since the kernel Depends: on mkinitrd 01:55
fabbioneapt will ensure that mkinitrd is configured before configuring the kernel01:55
jbaileyWhat's the point of the check if it does die?01:55
fabbioneit will fail at a later stage in postinst01:55
jbaileydoesn't01:55
fabbionethat was ramdisk = /bin/foo01:56
fabbioneso the preinstall doesn't and actually can't fail01:56
fabbionefor the above reasons01:56
fabbionei need to do another test...01:57
fabbionejbailey: it seems to work fine02:01
fabbionewith ramdisk = /foo and ramdisk = /usr/sbin/mkinitrd02:01
fabbioneand no ramdisk02:01
fabbione(given the little fix in the postinst)02:01
fabbionei am upload kernel-package to fix that error02:01
jbaileyNice, thanks. =)02:02
fabbione  * Bump Build-Deps on kernel-package 0.135ubuntu4 to include new postinst02:05
fabbione    script to support ramfs.02:05
fabbionedoes it look sane? ;)02:05
jbaileyI'd say "ramfs variable in kernel-img.conf"02:06
jbaileyOtherwise I'd expect the gentoo kiddys to come demanding what this new ramfs thing we have is.02:06
fabbionejbailey: perfect :)02:07
fabbionethat's what we want02:07
fabbionepeople being curious of what we do02:07
fabbioneand take them out of the dark side of the force02:07
jbaileya'ight.  As you see fit.02:08
jbaileyAt least your name is on the changlog entry. =)02:08
fabbioneahah02:08
Kamion"Add a simple cosmetic change"? dude. :P02:13
fabbioneKamion: i didn't want to make jbailey look stupid for a missing "space"02:14
fabbionecome on.. he maintains glibc kernel-headers and half of the toolchain :)02:14
jbaileyKamion: It is simple.  It appears to work, versus not appearing to work.  Isn't that cosmetic? =)02:15
fabbioneif it was somebody else i would have take out the sodomotron and larted him to death :)))02:15
jbailey*lol*02:16
KamionI'm not sure "LART" is the right verb to use with the sodomotron02:16
fabbioneKamion: today you really want to take out the best of me, don't you? ;)02:16
Kamionunless you're using it in an unconventional way02:16
fabbionei am just trying to be nice :)02:16
Kamion:-)02:16
jbaileyMy version of a lart has always been a baseball bat with a rusty nail in the end.02:17
jbaileyBut it always could be a sodomotron, I guess.02:17
fabbioneKamion: admit it! you love when i start yelling at people: "I WILL STICK MY ARM IN YOUR ASS AND SHAKE YOU A FLAG IN THE WIND!"02:17
jbaileyfabbione: Do you do that to get them excited or scare them?02:18
jbaileyI ask only for information.02:18
fabbionehaha02:18
fabbioneto scare them :)02:18
fabbioneelmo: i have the source for you...02:19
fabbioneelmo: my ~ on concordia amd64/linux-source-2.6.12_2.6.11.94-1.1_all.deb02:19
fabbioneyou should be able to build your ppc64 custom kernel out of it02:20
fabbionethe configs are still there if you want to look at them02:20
fabbionedavis is still building, so i would appreciate if you can wait to reboot it02:20
fabbionei think i killed Kamion02:23
jbaileyWe need shirts for the.02:25
jbailey"OMG!  I kill Kamion!"02:25
jbailey+ed02:25
Kamionfabbione: love it> yes, it makes me horny baby </austinpowers>02:25
Kamionjbailey: I'm a traditional guy, I prefer a two-by-four02:26
fabbioneheheheh02:31
elmofabbione: for ppc64?03:07
fabbioneelmo: yes03:09
fabbionethe source is _all :)03:09
fabbioneconfigs are on davis in my ~ if you need them03:09
fabbionethe debs will be there soon for the stock kernel03:09
=== doko [~doko___@dsl-084-059-045-032.arcor-ip.net] has joined #ubuntu-toolchain
=== doko [~doko___@dsl-084-059-045-032.arcor-ip.net] has joined #ubuntu-toolchain
fabbioneelmo: time to check nagios :)03:48
fabbionejbailey: ping?03:54
jbaileypong03:54
fabbioneAccepted linux-source-2.6.12 2.6.11.94-1.1 (source)03:54
fabbionehave fun :)03:54
jbaileyNice.  Have you reduced the ppc kernel flavours to something less than 10 hours of build time yet? =)03:55
fabbionejbailey: nope...03:55
fabbionei need a bit more people testing ppc64 before i can kill power3* power4*03:55
fabbionei only need to give the debs to elmo03:56
fabbionenad i am off :)03:56
jbaileyenjoy =)03:56
fabbioneelmo: linux-image-2.6.12-1-powerpc64-smp_2.6.11.94-1.1_powerpc.deb04:19
fabbioneit's in my home dir on davis04:20
elmowant me to test that?04:20
fabbionejbailey: you wait for the one builded in the archive04:20
fabbioneelmo: yes please04:20
jbaileyfabbione: Yes, dear.04:20
fabbioneOH CRAP04:20
fabbioneno04:20
fabbionei did build it in breezy04:20
fabbionei am not sure you can have all the Depends: in hoary04:20
fabbionejbailey: it's because i cheated on davis just to check the build. it has the old postinst04:21
fabbioneelmo: sorry.. i fucked that up.. i will prepare an image for you tomorrow04:21
elmoYou are attempting to install an initrd kernel image (version04:21
elmo2.6.12-1-powerpc64-smp) but you do not seem to have a mkinitrd command in the04:21
elmopath. This will break the installation, unless initrd-tools are also04:21
elmobeing installed right now.04:21
elmofabbione: ok, no prob04:21
elmoCould not find mkinitrd in path. at /var/lib/dpkg/tmp.ci/preinst line 189.04:21
fabbioneelmo: i guess you dist-upgraded all the chroot??04:21
elmohum?04:21
elmono, I was installing that into base04:22
fabbionebecause that's the error coming from kernel-package ubuntu304:22
fabbionehmmm04:22
fabbioneit should have told you that you need initrd-tools installed04:22
elmoit did afterwards :)04:22
elmo linux-image-2.6.12-1-powerpc64-smp depends on initrd-tools (>= 0.1.78ubuntu1); however:04:23
elmo  Package initrd-tools is not installed.04:23
fabbioneDepends: initrd-tools (>= 0.1.78ubuntu1), coreutils | fileutils (>= 4.0), module-init-tools (>= 0.9.13)04:23
elmoright, but that message comes from the preinst, I was using just plain dpkg04:24
fabbioneelmo: just purge and reinstall the kernel04:24
elmoyeah04:24
fabbionethat message should be there only if mkinitrd is not in path04:24
elmodon't worry I was always  keeping the old good one ;)04:24
fabbioneand it should still recover if mkinitrd tools is installed later04:24
fabbioneelmo: did you manage to install it?04:27
elmonah, needs >> hoary's initrd-tools04:27
fabbioneok gimme a sec04:27
fabbionedpkg-deb -b . linux-image-2.6.12-1-powerpc64-smp.deb04:30
fabbionedpkg-deb: building package `linux-image-2.6.12-1-powerpc64-smp' in `linux-image-2.6.12-1-powerpc64-smp.deb'.04:30
fabbione*DIRTY HACK ALLERT*04:30
fabbionedavis:~/blob/04:30
fabbionetry that one04:30
fabbionei hacked the control file to remove the versioned Depends:04:31
=== lamont__ [~lamont@15.238.5.202] has joined #ubuntu-toolchain
fabbionei really really need to stop04:32
fabbionehi lamont04:32
fabbionecya later or tomorrow guys04:33
fabbioneelmo: good luck with that kernel :)04:33
lamont__fabbione: hi04:34
elmocat: /proc/modules: No such file or directory04:40
elmocat: /proc/modules: No such file or directory04:40
elmowarning: gids truncated to 8 bits (this may be a security concern)04:40
elmoduring postinst configure04:40
elmoduh04:58
elmothat's not happy04:58
elmojames@davis:~$ cat /proc/cpuinfo | grep -c ^processor05:45
elmo205:45
elmojames@davis:~$ uname -a05:45
elmoLinux davis 2.6.12-1-powerpc64-smp #1 SMP Wed Jun 8 13:16:35 UTC 2005 ppc64 GNU/Linux05:45
elmo\o/05:45
elmo|o|05:46
elmo/o/05:46
elmo\o\05:46
danielswhat the fuck is the second one?05:46
infinityA tie fighter.05:46
dokoelmo: nice :-)05:46
danielseither you've been chopped off at the elbows, or that's a TIE fighter05:46
=== daniels kicks infinity.
elmoit's me waving my arms around, you freaks05:46
danielselmo: pipe down, stumpy05:46
elmoWOAH05:47
dokounfortunately somebody did remove powerpc64 support from the breezygoallist ... 05:47
elmotime stamped dmesg, neat05:47
infinitydaniels : Oh, it was a zucchini, by the way.  I just remembered.  Speaking of freaks.05:47
infinityTime stamps on dmesg?.. When did that happen?05:48
dokoehh, davis is a dual processor machine? nice05:48
elmo[   17.386107]  PowerMac G5 Thermal control driver 1.2b205:48
elmodoko: yes, but smp didn't work with 32-bit :P05:48
elmoinfinity: ^--05:48
danielsinfinity: uh, what?05:49
daniels(nevermind)05:49
infinityelmo : DO I get shiny new kernels on the ppc buildds at some point now? :)05:49
danielstime-stamped dmesg is in .11, IIRC05:49
infinitydaniels : Is it a config option?.. Cause I'm running .11.11, with no timestamps.05:50
=== infinity feels so un-1337.
elmoinfinity: sure, once fabbione uploads 2.6.12 final, I'll compile my own and upgrade them05:50
danielsinfinity: 'IIRC'05:50
infinityelmo : I suppose we don't fear that anyone's abusing 'uname -m' and build will suddenly start to blow up?05:51
infinitys/build/builds/05:51
elmoinfinity: well, that's what breezy-test is for I guess05:53
elmowe can linux32 the builds, if you want05:53
infinityI just might.  Warn me before you upgrade the kernels.05:53
infinity(I've run into issues where sparc64 hosts still needs to be linux32'd on some builds too)05:54
infinityThough, I'd hope those have all been fixed by now.05:54
elmowhy? sparc buildds have linux32-ed since day 005:54
elmothe worst one is builds that break due to the presence of /lib6405:54
infinityYeah, I know the buildds do.05:54
infinityBut I've done by-hand builds and forgot to do so. :)05:54
infinityMost turn out okay, some get hooped by lib64 and/or uname -m05:54
Kamionelmo: what are the units on those timestamps?05:57
danielsjiffies, innit?05:58
Kamionhow ... helpful05:59
danielsa jiffie is like a bajillionteenth of a second06:00
danielsapproximately one unit of doogie's attention span06:00
Kamion*choke*06:01
elmohey.. <random>06:31
elmowould the ability to upload packages purely to be test built be helpful?06:31
KamionI thought that was a launchpad thing06:32
elmothe world is a launchpad thing06:32
fabbionere06:32
fabbioneelmo: rocking!!!06:32
elmobut I'm doing breezy test anyway and we're not using it to rebuild the world, it'd be trivial to add yet another suite to the test archive06:33
fabbioneelmo: and yes.. there is an option in .12 for timestamp printk06:33
elmoor heck even just use breezy-test itself06:33
fabbioneKamion: i think the timestamp is done seconds from boot06:33
fabbioneKamion: still better than nothing tho :)06:33
fabbionedoko: you joking that ppc64 has been taken out of breezy goals????06:34
fabbionedoko: we got toolchain and kernel.. we need 2 libs and it's there06:34
infinityelmo : Allowing random uploads to a test archive could be very handy, yes.06:35
fabbioneLinux davis 2.6.12-1-powerpc64-smp #1 SMP Wed Jun 8 13:16:35 UTC 2005 ppc64 GNU/Linux06:35
=== fabbione goes and masturbates
KamionBRAIN FLOSS06:36
infinityI doubt you'll ever get that one out.06:36
KamionNOW, DAMNIT06:36
fabbioneelmo: mind if i spin davis for a test???06:36
dokofabbione: well, it was a hoary goal, but maybe it didn't get added to breezy06:37
fabbionedoko: well we did it basically06:37
fabbioneso i mean06:37
fabbioneit's pointless to stop NOW06:37
dokowe just add it again ;)06:37
=== fabbione gets ready to spin davis
dokohmm, what is wrong, if ifup/ifdown hangs forever?06:39
fabbioneelmo: btw .12 final should be out next week... so we won't have to wait for too long06:40
dokofabbione, which libs are missing?06:40
fabbionencurses at least06:40
fabbionedoko: basically you can just check the sparc Packages and see which libs are both 23/64 bit06:41
fabbionethe same are missing on ppc64 :)06:41
daniels23-bit?  weird06:41
fabbioneyeah well :)06:41
fabbione3206:41
dokoheh, s390 has 3106:42
danielselmo: breezy-test> yes, very06:42
danielselmo: sshing into all the machines, screen'ing, dchroot'ing, etc, and then checking back is a pain in the arse06:42
danielselmo: double points if all the build logs get emailed to the uploader automatically :)06:42
fabbioneelmo: since when davis has 3GB of RAM?06:42
dokofabbione, elmo plugged another CPU as well ;)06:43
elmofabbione: it should have 406:43
fabbionewhere is the other one?06:43
elmoour porting machines are all meant to be dual proc, 4 Gb memory06:44
fabbionedoko: eehhe06:44
elmofabbione: dunno06:44
danielsfabbione: it's trying to migrate to concordia06:44
elmoI can't remember what 2.6.10 did06:44
danielsbecause davis isn't cool enough06:44
fabbioneelmo: hmm it would be interesting to compare the 2 dmesg from 2.6.10 and 2.6.1206:44
fabbioneelmo: because jbailey noticed a few interesting things in the diff06:44
fabbionebut it's definetely going MUCH FASTER06:45
elmofabbione: ~james/kern.log*06:45
elmokern.log.0 has a 2.6.10 one by the look of it06:45
elmofabbione: but critically IS IT CRASHING? :)06:45
fabbioneJun  8 16:17:21 davis kernel: [    0.000000]  Memory hole size: 2048MB06:46
fabbioneelmo: not yet.. i just started building the kernel...06:46
fabbioneJun  8 16:17:21 davis kernel: [   17.212083]  Memory: 2972400k/5242880k available (2672k kernel code, 2269804k reserved, 1308k data, 278k bss, 212k06:46
fabbione init)06:46
fabbioneJun  8 16:17:21 davis kernel: [   17.212238]  Calibrating delay loop... 66.56 BogoMIPS (lpj=33280)06:46
fabbioneyou got the same intersting values as jbailey 06:47
fabbionehe has a 4GB machine06:47
fabbioneand it was reporting 4GB/6GB06:47
elmolemme, go check the invoice, but I'm 99% sure it's got 4Gb06:47
fabbionestill 66.56 Bogo06:47
danielsonly 66.56??  dude my laptop is faster than davis wtf06:47
=== elmo hands daniels the glxgears-as-a-benchmark award
fabbioneMay 14 09:47:41 davis kernel: Memory: 2071296k available (1768k kernel code, 916k data, 364k init, 1310720k highmem)06:48
danielsi bet it scores higher on glxgears too!!06:48
fabbionesee 2.6.10 was able to see only 2GB06:49
=== fabbione larts daniels with a sodomotron
elmoactually, sorry my bad06:49
elmoit appears it really only has 2Gb06:49
elmoso, err.  06:49
fabbionewtf?06:49
elmolinux appears to be very confused06:49
elmoshall I down the box and check physically when you're done building?06:50
fabbioneare you at the datacenter?06:50
elmoyes :-(06:50
elmoIBM ARE TEH SUCK06:50
fabbionei can stop now06:50
fabbioneit really fast :)06:50
fabbioneok i am logged out06:50
fabbionei don't want to keep you there forever06:50
fabbioneand i can run the build overnight :)06:51
infinityI can't imagine the kernel would just make up an extra gig of RAM.06:51
fabbioneinfinity: exactly06:51
infinityWell, not without crashing pretty damn soon after boot.06:51
infinity(As soon as it tried to map something in the nonexistant RAM)06:51
infinityOn the other hand, PPC kernels since the dawn of time have been infamous for not finding all the RAM lying around in a system.06:52
infinitySo my bet would be on 4 gig real, 3 detected.06:52
fabbioneinfinity: yes that's what i think06:52
fabbionejbailey: you should really check the ram on your machine too06:53
infinity(It could just be 1024+1024+512+512, though, and we're all speculating on a bug that isn't there)06:53
fabbioneinfinity: right06:53
fabbionethat's why elmo is shutting down the machine :)06:53
infinityHeh.06:54
elmohum, how very confusing06:54
elmoit appears to have 1+1+.5+.506:55
fabbione*infinity wins*06:55
=== infinity ^5s fabbione.
danielsgypped06:56
infinityOr, bonus.  If the invoice only says 1+1.06:56
danielsoh, look, a bed06:57
infinityYeah, I keep saying I'm heading off to one of those.06:57
infinityI'll try again.06:57
=== infinity -> bed, again.
fabbioneehhehe06:57
elmobut, err, we paid for 206:57
elmoscore.06:57
fabbione++06:57
fabbioneelmo: you should scare the shit out of Mark06:58
fabbionesend him an email: "Fabbione's kernels add a GB of RAM on our PPC servers!!!"06:58
Kamionhaha06:58
Kamion"... you slack-jawed hippy"06:59
fabbionebrb07:00
fabbioneelmo: i am going to spin davis to death :)07:07
fabbionelet's see how it behaves07:07
fabbionelet's start warming it up07:09
fabbione-j10007:09
fabbionetop - 18:14:22 up 13 min,  2 users,  load average: 27.38, 16.02, 6.7007:14
fabbioneit doesn't go higher than that!07:14
fabbionethe scheduler is really really nive07:14
fabbionenice07:14
fabbioneelmo: i will let you know how it goes...07:25
fabbioneright now it seems as fast as concordia :)07:25
fabbionei will have to time them07:25
fabbione:)07:25
fabbioneelmo: with the ppc64 kernel davis seems much more stable08:15
fabbione6 falvours no segfaults08:15
elmofabbione: score08:16
fabbioneif we can keep the kernel up for a while i will stress test it tomorrow08:17
fabbionebut it looks good08:17
elmosure, no problem leaving it up for a while; mdz actually wants me to test our binary kernels on at least one of each of our server types anyways08:21
elmo(rather than building my own, Imean)08:21
jbaileyfabbione: Check the ram? 08:26
fabbionejbailey: forget the ram thing :09:03
fabbione)09:03
fabbionewe figured the kernel was ok09:03
jbaileyLovely. =)09:06
elmolamont: ?10:28
lamont_rsi?10:28
elmowhat is it you special cased?10:28
elmo*-test ?10:28
lamont_ryes10:28
elmohum, special cased how?10:28
lamont_r-cat is also special cased, but believes in rockhopper...10:28
elmohow hard is it to change the special casing and/or add new ones?10:29
lamont_rjust a matter of rolling the script, and since infinitiy backed out hte gross hammer-hacks in buildd.conf (no-auto-build), installing a new one is trivial10:30
elmook, cool10:30
lamont_rsee /usr/sbin/build-chroot on any of the buildd's, and you'll see what special-cased means10:30
=== lamont_r can tell by the 460 package backlog, that hppa is into the quickly-built packages. :)
=== Seveas [~seveas@seveas.demon.nl] has joined #ubuntu-toolchain

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