/srv/irclogs.ubuntu.com/2005/02/10/#ubuntu-devel.txt

jbaileyIt needs to be loaded in the initrd on IDE root systems, though.12:03
jbaileyI had to add ide-generic to get my laptop to boot, anyway.12:03
mdzoh, you aren't using hotplug in your initrds?12:03
jbaileyNo, the plan had been to have hotplug in userspace give me a list of the drivers, and then I loaded all of those manually.12:04
jbaileyThat way hotplug at bootup got the coldplugging events.12:04
mdzhmm12:04
jbaileyOr rather at sysvinit time.12:04
mdzproper hotplug in the initrd has many benefits12:04
jbailey(I tend to think of boot up being after I've chained to the proper init)12:04
mdzlike not having to mangle the initrd if your root device moves12:05
jbaileyYup.  The downside is that it means all the boot drivers and stuff need to be in the initrd.12:05
jbaileyDoable, though.12:05
jbaileyThat would actually make my task so far way easier.12:05
mdzstorage drivers and network drivers should be there12:05
mdz(network to support NFS-root)12:05
jbaileyand usb keyboard.12:05
mdzyeah12:05
mdzthat would address another class of bugs too12:05
jbaileyYup12:05
mdzit'd do two coldplugging rounds, one with the initrd modules only, and a second one with all modules12:06
jbaileyCool.  Id' been chatting with dilinger about various ways to convince hotplug to give me a list of the devices that it would need for any given kernel version.  This saves that hassle at the cost of a larger initramfs.12:06
mdzthis is what I thought you were talking about earlier12:07
mdzwhen you said you were doing it so as to replace initrd-tools12:07
jbaileymdz: Nope.  I wanted to keep the initramfs small so do it at generate time.12:07
jbaileyDoing it at boot time is a simpler version of it.12:08
mdzso either way, using the hotplug infrastructure rather than mkinitrd's hacks12:08
jbaileyYes. =)12:08
mdzbut we were thinking of two different approaches12:08
mdzwe're already using hotplug in d-i12:08
mdzso we've got its dependencies down to a manageable level12:08
jbaileyYeah, saw that on the hoary goals.12:09
mdzit basically works with busybox-cvs + module-init-tools, I think12:09
jbailey*sigh* hotplug doesn't apply all of its patches cleanly on a fresh apt-get source.12:09
mdzoh?12:09
jbaileyI've been using the tools that come with klibc, but I've seen that other people have gotten hotplug running with klibc.12:10
mdzunstable or hoary?12:10
jbaileyhoary12:10
mdzthey all apply for me in hoary12:10
jbaileyppc box.  The only non-ubuntu thing on here is dvdcss and the debian ppc kernel (Hoary's doesn't boot on the pegasos box.  The grub2 update on Monday should fix)12:10
jbaileyApplying patch debian/patches/./blacklist2-eepro100 failed!12:10
mdzhow weird12:11
mdzit's possible that it's never been built on powerpc before12:11
mdzbut I see no reason why that should matter12:11
mdzApplying patch debian/patches/./blacklist2-eepro100 successful.12:11
jbaileyNothing in the hotplug Makefile or the spec file about klibc, but hopefully it's not too much elbow grease to beat it into shape.12:12
mdzhotplug doesn't have any binaries12:13
mdzit's all scripts12:13
jbaileyOh, is it all shell?12:13
mjtbtw, as of 2.6.10, there's no /sys/bus/pci/devices/xx/driver symlink - helps with coldplug12:13
jbaileyNice. =)12:13
mjts/no //12:13
mdzthe only C bit is grepmap, which is 1) in a separate package, 2) extremely simple (should be fine with klibc), and 3) optional :-)12:13
mdzit really helps performance, though, so I recommend bringing it into the initrd12:14
mjtwhen you have only few modules in initramfs, performance does not matter12:14
mjt(or initrd, whatever)12:14
mjtand, using modules.alias instead of modules.*map for most things speed things up further12:15
mdzI'm not sure how few we'll end up with12:15
mdzhotplug doesn't seem to have any support for modules.alias whatsoever12:16
mjtmdz: i think we talked with you about this very stuff a while back, no? ;)12:16
mdzyes12:16
mjtmodules.alias works for pci - the most important thing. inputmap (where modules.alias does not work) is small12:17
mdzbut you're arguing a nonexistent solution against an existent one, and the existent one always wins :-)12:17
mjtnon-existing?12:17
mdzhotplug does not use modules.alias12:17
mdzit uses modules.*map only12:17
mdzthe version we're using, anyway12:18
mjtwhile read alias module; do case $deviceid in $alias) echo $module;; done < modules.alias -- that's all that is needed12:18
mjtdash rocks, btw12:18
mjtor, rather, while read junk alias module; do ...12:19
mdzthat, getting deviceid into the right format, and testing it for a few thousand user=months, yeah, that's all :-P12:19
mdzs/=/-/12:19
mjteh?12:19
mjtprintf "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X" $vendor $device $s_vendor $s_device $baseclass $subclass $if12:20
mjtthat's the $deviceid12:20
mdzfor PCI devices12:21
mjtvendor etc are from /sys/bus/pci/device/xx/vendor etc directly12:21
mjtyes12:21
mjtthe main case12:21
mdzI see no incentive whatsoever for us to switch to using modules.alias, honestly12:21
mjtusb is even simpler12:21
mjtthat switch makes grepmap even more optional12:21
mdzI'm not entirely convinced of that12:22
mdzjust doing a while/read loop over the pcimap took longer than running grepmap12:22
mjtnote modprobe handles wildcards for you, so that while.. loop is not needed12:22
jbaileymdz: At 200k uncompressed, I don't want to use more than I have to. =)12:22
mjtbut that loop is fast - much faster than current cruft in pci.agent etc12:22
mdzjbailey: I don't see much choice about adding busybox to that, if we're going to use hotplug12:23
mdzthat's ~128k12:23
mjtbtw, module stuff in busybox is sorta broken 12:23
mdzyes, that's why we don't use it12:24
mdznot even in the installer or initrd12:24
mjtand busybox is a very good thing to have in an initrd12:24
mjthelps alot if something goes wrong12:24
jbaileymdz: There are reports on the hoplug list that maked it look like udev, hotplug, klibc, and modprobe should be enough.12:25
mdzwe need busybox for a shell toolbox, not for module utilities12:25
mjt(saved my ass several times with broken root raid stuff ;)12:25
mdzjbailey: the hotplug scripts use cut, all sorts of stuff that's not built into dash12:25
mdzsome of them even use awk, but those are not needed in initrd12:26
mdzgrep12:26
mjtcut - where? in tape.agent?12:26
mjtgrep - in net.agent?12:27
mdzgrep is used _everywhere_12:27
jbaileyYeah.  The utilities in klibc doesn't have grep or cut.12:27
mdzsed is used _everywhere_12:27
jbaileycat false insmod ln mkfifo nuke run-init true uname chroot fstype ipconfig minips mount pivot_root sh udev dd gzip kinit mkdir nfsmount printf sleep umount12:27
mjtin hotplug.functions, really12:27
mdzmjt: in functions in hotplug.functions which are called from _everywhere_12:28
mjtyeah12:28
jbaileyhttp://sourceforge.net/mailarchive/forum.php?thread_id=6319817&forum_id=3157 is the email that I'm looking at.12:28
mdzbusybox gives you everything needed to run hotplug at a small cost12:29
mdzthough if you're doing initramfs rather than initrd, that would make busybox a build-dep of the kernel, no?12:29
mjtgrep $MODULE /proc/modules - ugh, isn't it simpler to use [ -d /sys/module/$MODULE ]  ?  Or just let modprobe to do its work? ;)12:29
mdzthe former is portable across 2.4 and 2.612:29
mdzhell, 2.212:30
mjtis 2.4 supported in ubuntu?12:30
jbaileymdz: No.  initramfs can be generated anytime after.  You can just make a cpio image and hand it to the kernel the same way you hand it an initrd.12:30
mdzno12:30
mdzbut it's supported by hotplug12:30
=== Kaloz [kaloz@arrakis.dune.hu] has joined #ubuntu-devel
mdzhotplug is not specific to ubuntu :-)12:30
jbaileymdz: If we *did* make it a dependancy of the kernel, we could just ship an already configured initrd.  Apparently (I haven't tested) you can hand in multiple cpio files and it'll unpack them all.12:31
mjtinitramfs works the same way as any other sort of initrd. except of the way you do final pivot_root/whatever stuff - for initramfs, there's special utility in klibc for that.12:31
mdza preconfigured initrd would be pretty fly12:31
jbaileymdz: So that way the only bit to be done is just light config files (mostly for sane net booting), but those can also be handed in on the command line.12:31
sladenjbailey: is cpio like tar;  you can just concatrenate stuff?12:31
mdzjbailey: there's so much potential for weird bugs generating the initrd on the fly12:32
mjtneither tar nor cpio can be concatenated ;)12:32
jbaileysladen: Eh?12:32
mdzyou can concatenate new files to a tar12:32
mdzs/concatenate/append/12:32
sladenmjt: okay, remove the 2kB of zeros from the end :)12:32
jbaileyNew files, yes.  Not multple tars.12:32
mjtafter removing the trailer, yes12:32
jbaileyYeah.12:33
mjtboth tar and cpio have a trailer record12:33
jbaileymdz: Ayup12:33
mjtbtw, generating initramfs (the cpio part) is umm.. not easy12:33
jbaileymdz: So...  I'll need to do a version of busybox that's built with klibc.12:33
jbaileymjt: http://people.ubuntu.com/~jbailey =)12:33
mdzjbailey: we would need to build-dep on non-kernel stuff anyway, I guess; klibc seems to lack a shell ;-)12:33
jbaileymdz: klibc has ash.12:33
mjti've written something in shell to do that (cpio) -- pretty fun stuff12:34
mdzoh?12:34
mdzin how many places do we need to duplicate this stuff? :-)12:34
jbaileyBTW, you really want a newer version of the mkinitramfs than is there.  I found a bug a minute or so ago. =)12:34
jbaileymdz: As few as possible, ideally. =)  But we don't live in an ideal worls.12:34
mjtjbailey: can yours be used as non-root?12:34
mdzwe already fork loads of stuff into busybox12:34
mjtbtw, why klibc?12:35
jbaileymjt: Yes.  (cd ${TMPDIR} && find . | cpio --quiet --dereference -o -H newc | gzip -9 >${outfile})12:35
mjtthere's nothing that stops using other stuff (dietlibc, uclibc, even glibc but it's large) in initramfs12:35
jbaileymjt: The difference is that klibc is eventually being targetted to be integrated in with the kernel build anyway.12:36
jbaileymjt: udev is already prewired for udev, as is the replacement for pivot_root12:36
mdzwhat does the pivot_root replacement do differently?12:37
mjtjbailey: hmm. that cpio example - 2 probs. first of all, it packs ./ instead of / - last time i checked kernel chocked on that (that's why i wrote "my own cpio" in shell - pretty easy really); and 2), that way requires mknod, which is root-only12:37
jbaileymdz: It cd's into the mounted root directory, deletes everything on the parent filesystem, overmounts the mounted directory as /, unmounts the previous one.12:38
jbaileymdz: So it's all done in userspace, no in kernel magic.12:38
mjtmdz: take a look at kinit in klibc12:38
jbaileymjt: It's working fine on two systems here with the ./, and there are no devices in there.12:38
mdzjbailey: hmm, I hope that doesn't mean pivot_root(2) is going away12:38
jbaileymjt: The kernel provides /dev/console automatiically.  Everything else is done with udev.12:38
jbaileymdz: I beleive that it does.12:39
mjtpivot_root isn't needed with initramfs12:39
mdzwhat about kernel threads?12:39
mdzthey find their way to the new root ok?12:39
jbaileymdz: I'm using run-init.  kinit isn't quite useful yet.12:39
mjter.. how it's not useful?12:40
mjtoh /me bad12:40
mdzkinit in klibc 0.198 seems to use pivot_root12:41
mjti really meant run-init, not kinit ;)12:41
mdzoh, run-init is the example12:41
jbaileymjt: It's a conglomerate tool that basically just combined run-init and nfsmount.  It doesn't have anything in the way of extra magic.  I think I had another concern about it, but it's not coming to mind.12:41
mjtutils/run-init.c12:41
mjtyeah - sorry for the noise12:41
mdzI would not have expected mount(".", "/", NULL, MS_MOVE, NULL) to work :-)12:41
jbaileymjt: No, all good. =)  I'm still learning the new initramfs stuff.  I went to a workshop at OLS on it and come out with more questions than I went it with.12:42
mdzbut I can certainly adapt casper to that when pivot_root goes away, assuming kernel threads dtrt12:42
mjtwhat's wrong with kernel threads and that initramfs/run-init stuff?12:42
jbaileyOh!  Something that occured to me.  If we build the initramfs right into the kernel, would could probably still do thge DSDT update by handing it in using the initrd= method.12:42
jbaileymdz: Casper?12:43
mdzjbailey: the live CD magic12:43
mdzit uses pivot_root(8)12:43
mjtso just replace pivot_root(8) with run-init(to-be-8) ;)12:44
mjtpretty easy to integrate into busybox, btw12:44
mdzmore likely replace pivot_root(8) with similar mount/chroot stuff12:44
mdzit needs to do a few more things before execing init12:45
mdzand it doesn't exec init, even, it lets init do that12:45
mjtyes - deleting old stuff12:45
mdzno, I meant casper needs to do more things12:45
jbaileymdz: I need to bug off to a dinner engagement...  Anything else you need before I run off?12:45
dholbachsleep tight guys... i'm off12:46
mjti once tried to pivot_root and umount /initrd with initramfs - the kernel freezes... ;)12:46
mdzjbailey: nah, I need to run myself12:46
mdzjbailey: you want to take on #1763 for Hoary?12:46
mdzit would clean up a lot of mess12:46
jbaileymdz: Yeah.  I've just assigned it to me.12:48
mdzok, thanks12:50
mdzI've been pretending to get around to it for too long12:50
sladenjbailey: the DSDT updates can be done at the moment by appending it onto the initrd12:50
jbaileysladen: If we're talking about shipping a pre-generated config, though, it would be nice to not muck with the shipped kernel at all, and have grub hand it in.12:51
sladenjbailey: from what I remember the initramfs includes a more formal way of doing that12:51
jbaileysladen: That way it's completely independant with no magic.12:51
sladenjbailey: I was originally thinking of hacking grub to do the appending at load time, but I think other people were keener on doing it in mkinitrd12:52
jbaileysladen: I don't know enough about it yet.  I'm lucky.  Aside from being fubar with 2.6.10, my laptop's acpi Just Works(tm)12:52
=== dholbach [~dholbach@td9091b16.pool.terralink.de] has left #ubuntu-devel []
mdzKamion: how much of a headache would it be to rename /install to /boot (or some such) on the CDs?12:53
jbaileysladen: I gotta run, sorry.12:53
jbailey*poof*12:53
=== T-Bone is now known as T-Gone
mdzjdub: when the about ubuntu page moves into yelp, will we be able to translate it then?12:59
=== eruin [~eruin@eruin.user] has joined #ubuntu-devel
=== Nigelenki [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
YokoZarHey, can someone help me with a packaging problem I'm having.  It seems like it's a simple thing I'm overlooking (a make error) but, strangely, the .deb file builds and works fine (although it bugs out before it can ask for my password)01:20
mjt.deb file should not ask for any passwords...01:22
YokoZarErr yeah it gets there and then bugs out before signing the dsc01:22
=== decko_ is now known as decko
mjtif there's a "make error", it should not build.  error in signing (as dpkg-buildpackage performs) is non-fatal01:23
lupus_would enabling extended attributes on the home directory by default01:26
lupus_inpact performance01:26
lupus_impact01:26
mjtjust enabling EAs makes no difference01:28
lupus_beagle needs it :)01:28
lupus_so I wonder if it be worth while for ubuntu to enable it01:28
mjtenabling and *using* ACLs (which are built on top of EAs) will impact performance a little01:28
lupus_does ubuntu create a seperate partition for /home if you select default install?01:29
crimsunlupus_: no01:29
mjtyour question was like  "if i put this dir there, will it impact on peformance?" -- the answer is "yes, if you will hit the dir hard" ;)01:29
sivangrehi all01:30
lupus_isn't it safer for the user if ubuntu would create a seperate partition for /home and maybe /var01:30
lupus_I remember my slackware box not working anymore after 8gig of logs :) in /var hehe 01:31
lupus_gig = GB01:31
=== thully [~thully@151.144.199.217] has joined #ubuntu-devel
=== stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #ubuntu-devel
=== Sparhawk_ [~sparhawk@c-24-14-121-93.client.comcast.net] has joined #ubuntu-devel
thullyI can officially say that the timezone bug is GONE!  Just tested w/system clock on local time (and Windows installed) and everything seems to be working fine01:36
lupus_nice :)01:37
mjtwhich $TZ bug it was?01:42
=== lamm3r [~xkill@techno.inviter.com.br] has joined #ubuntu-devel
=== lamm3r [~xkill@techno.inviter.com.br] has left #ubuntu-devel []
=== syn-ack [~meskes@ip68-228-61-85.tc.ph.cox.net] has joined #ubuntu-devel
=== thully [~thully@151.144.196.157] has joined #ubuntu-devel
jdubmdz: when the about ubuntu page is docbook based, the doc team can set up i18n infrastructure for it01:58
jdubmdz: yelp will handle i18n/docbook01:58
=== kent [~kent@83.249.62.252] has joined #ubuntu-devel
=== lupus_ [~lupus@dC38296D1.access.telenet.be] has joined #ubuntu-devel
=== Sparhawk_ [~sparhawk@c-24-14-121-93.client.comcast.net] has joined #ubuntu-devel
makomdz: you still need me?02:12
mdzmako: no, I was looking for a copy of the keyring from Mataro, but I ended up finding them all on keyservers anyway02:13
mjt. o O { don't throw away please }02:13
sivangI am posting this link again :) if anyone has remarks or other stuff, mail me and I'd appriciate it : the new g-s-t pkg should have ubunut's 2 default profiles for creating users, default (unprivileged) and Desktop , link:02:13
sivanghttp://muse.19inch.net/~sivan/g-s-t/02:13
makomdz: i think it's at people.u.c/~mako/ksp-mataro/02:14
mdzmako: that page lies and says that it will be there by the time of the keysigning02:14
mdzbut there's no link02:14
makook.. i forgot to turn on the link02:14
makoi did upload it02:14
makolet me fix that02:14
mjtspeaking of repeating "postings".. what to do with videocard driver problem in xorg package? Just file a bugreport?02:15
=== sivang is out for the night. Night all!
makomdz: fixed02:16
danielsmjt: bug report on xserver-xorg02:16
mjt(i've a prob with trident_drv - xv extension does not work; while using that driver from xfree-4.3 helps - surprizingly it works with xserver-xorg)02:16
mjter02:17
mjtso the next question is - how to file a bugreport against ubuntu package?  I've a mix of debian/ubuntu right now, and don't even know where's the ubuntu bug tracking system... ;)02:17
mdzif you have a mix of Debian and Ubuntu, try reproducing your problem with only Ubuntu first02:18
mdzthat is not a supported configuration02:18
mjtit does not really matter in this case02:19
mdzbooting a Hoary daily live CD would be a good test02:19
mdzdon't be so sure02:19
=== thully___ [~thully@151.144.199.185] has joined #ubuntu-devel
mjteh-heh.. I't be nice to have live CD here... ;)02:20
mjtfor some reason it isn't available in russian stores ;)02:20
mdzit is available on russian Internet02:21
mdzhttp://cdimage.ubuntu.com/daily-live/current/02:22
mjtsure it is02:22
mjt497Mb / 3Kb/s = 165666 sec = 46 hours ;)02:23
=== mjt hides...
mdzgah, openGL apps are still hanging my laptop02:23
mjtspeaking of benig sure -- what else, except of the xserver package (well, all packages from xorg source, really) can be a problem in this case?02:25
=== Icy [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
mjti see no other possibility02:26
=== thully___ [~thully@151.144.199.185] has left #ubuntu-devel ["Leaving"]
mdzit is inappropriate to file bugs based on a mixed system02:31
mdzit is documented extensively that we neither recommend nor support this02:31
=== Icy [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
danielsmjt: you have no idea the amount of weird problems that can spring from Debian with half the Ubuntu X.Org packages on them, trust me02:33
mjti think i do have that idea... ;)02:34
mjtbeen there myself ;)02:34
mjtthis very prob is driver-vs-hardware, not software-vs-software issue02:36
schweebmjt: your request would be better received if you partitioned, ran a pure ubuntu hoary system, and THEN checked for the problem, and filed the bugreport02:38
mjtok02:39
mdzyou should choose whether you want to run Debian or Ubuntu; neither project will want to receive bug reports from a system with both sets of packages02:39
mjti really just wanted to know whenever i can solve the prob directly, with a help from someone more expirienced with that area 02:40
mjtfor now it works for me, after "downgrading" the driver to xfree-4.3, so i'm all set02:40
mjtno "broken" bugreports (from mixed install/whatever), that is.02:41
=== Nigelenki [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
mjtmaybe someday i will have some time to debug/fix it myself, who knows..02:43
mdzthanks for understanding02:45
mjtoh well02:48
=== robertj [~robertj@66-188-77-153.cpe.ga.charter.com] has joined #ubuntu-devel
=== Nigelenki [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
YokoZarmdz: email sent to ubuntu-devel02:50
mdzYokoZar: I hope that you don't intend to notify me of each message sent to ubuntu-devel ;-)02:51
YokoZarehh, nah.  Just the first big one we were talking about last night02:51
mdzthere are quite a few of them, and I am subscribed to the list, so they are sent to me automatically02:51
robertjmdz: is there going to be an install updates automatically option on update-manager?02:52
robertji see the download option all there by it's lonely self02:52
jdubrobertj: very tentative maybe once some other bits fall into place02:53
mdzno, I don't expect there will be02:53
mdzit isn't wise to install Ubuntu updates unattended02:53
jdubrobertj: but vveeeerrrryyy tentative02:54
mdzespecially not on a development branch02:54
robertjmdz: well on the dev branch I understand, but for stable it seems like a good idea02:54
jdubmdz: once we've got "you need to re-login" and "you need to reboot" flags for upgrades, letting users turn automagic installs on stable systems would be fairly sane02:54
robertjjdub: might I add that XP does not behave smartly in this regard02:55
mdzI disagree; packages are not designed with that in mind02:55
robertjif you don't respond to the dialog it will automatically reboot your system, which is just great when you are playing a game02:55
HrdwrBoBhaha02:55
jdubnice one.02:55
mdzthe user takes an explicit action, saying "it is OK if things get a bit weird until I am finished with this operation"02:56
mdzand things do get weird02:56
HrdwrBoBauto download is a nice (and already implemented in apt) option02:56
robertjmdz: security updates should minimize wierdness though02:56
YokoZarPerhaps we should incorporate more XP annoyances like that into Wine, to make it more compatible.02:56
jdubfirefox upgrade == weird!02:56
jdubYokoZar! DUDE!02:56
jdubman, i've been trying to catch you :)02:56
YokoZarAh02:56
YokoZarhey02:56
robertjinstalling during an idle time might be nice02:57
HrdwrBoBwhat's an idle time?02:58
jdubmdz: you can answer the autopackage question :)02:59
jdubHrdwrBoB: when does your screensaver start? :)02:59
robertjyeah, it's good enough for most users02:59
HrdwrBoBjdub: yes, but when I come back to my desk and firefox is all bizarre because it updated while I was at lunch02:59
HrdwrBoBor all the windows have closed02:59
jdubor you get those wonderful xul errors03:00
jdub"you can't quit because <!--- OSIUDFOIjdjjjdjdjj cccccxssssshhhhhh..."03:00
robertjjdub: I just know none of my users run their softwareupdates03:00
robertjthey go out of their way dragging the dialog to the bottom of the screen because they have forgotten their passwords03:01
HrdwrBoBthat's an inherent user problem though03:01
robertjit is, but there is no good way to remedy it I'm afraid03:01
jdublobotomy03:02
HrdwrBoBbig stick03:02
robertjI can't crond softwareupdate because quicktime has graphical prompts03:02
jdubelectric shock therapy03:02
HrdwrBoBgraphical prompts suck03:02
jdubthere was some dude03:02
robertjit's great, it even does it on quicktime03:03
jdubwho turned up on the gnome lists a few years ago03:03
jdubwho thought that tamagotchis were the future of user interfaces03:03
robertjerr even does it on 10.3 server03:03
HrdwrBoBbut the problem there is up to the sysadmin locally, not really ubuntu03:03
HrdwrBoBwtf?03:03
jduband encouraged us to use emotional blackmailing as a user interface device03:03
robertjjdub: haha03:03
robertj"Do your updates or we will sodomize this hackergotchi"03:03
HrdwrBoBhahahaha03:04
mdzjdub: it solves all problems, who can argue with that?03:04
jdub"i'm sad, you should upgrade me!"03:04
jdub"i made a mess! fsck this!"03:04
robertjI swear, I wish there were viruses specially designed to mess with stupid people03:04
HrdwrBoBthere are03:05
robertjnot this lame stuff like we have now, but stuff that really ruined careers by editing word documents andspreadsheets03:05
HrdwrBoBexcept smart people have to fix it03:05
robertjIf it was good they could fix it when they took their job ;)03:05
=== robertj needs to start looking for another job
robertjhas pam_keyring been given a oneover?03:25
lupus_hmm gtkmm 2.5.5 seems to be the only thing missing for using coaster in hoary03:35
YokoZarHow long does it take the wiki to email me after I ask for an account?03:44
jdubYokoZar: shouldn't take long03:59
YokoZarjdub: thanks03:59
YokoZarAh, it's in there now03:59
jdubKamion, lamont, elmo: is there anything useful a normal human can do to help sarge's mipsel woes?03:59
=== syn-ack [~meskes@ip68-228-61-85.tc.ph.cox.net] has joined #ubuntu-devel
=== lupus_ [~lupus@dC38296D1.access.telenet.be] has joined #ubuntu-devel
srbakerare there any prerelease hoary cds?05:00
jdubcdimage.ubuntu.com05:03
srbakerexcellent.  thanks05:04
=== thully [~thully@151.144.196.249] has joined #ubuntu-devel
srbakergoing to install from the current cd05:05
=== tritium [~tritium@12-202-90-180.client.insightBB.com] has joined #ubuntu-devel
=== mpt_montreal [~mpt@p188.h-yulrz01.stsn.com] has joined #ubuntu-devel
=== T-Gone is now known as T-None
=== infinity [adconrad@S010600e029962405.cg.shawcable.net] has joined #ubuntu-devel
=== zenrox [~zenrox@wbar7.sea1-4-10-181-189.sea1.dsl-verizon.net] has joined #ubuntu-devel
=== bradb [~bradb@modemcable225.186-131-66.mc.videotron.ca] has joined #ubuntu-devel
=== thully [~thully@pm472-22.dialip.mich.net] has joined #ubuntu-devel
thullyjust closed that annoying timezone bug for good07:22
thullyalso, btw - if anyone before remembers my troubles with conflicts between snd-intel8x0m and hsfmodem drivers from linuxant - the latest versions of these resolve the problem without blacklisting anything!07:25
sivangthully: cool, migh solve the problem for me and my dell lappi ?08:23
ajdaniels: around? (or any other X types?)08:24
=== fabbione yawns
=== fabbione starts to feel a bit better
fabbioneaj: ?08:27
aj915g chipset support on warty?08:27
sivanganyone have an abiword installation? I have a light emeregency, I need to save an abiword doc (which is in XML) to a .doc or .rtf (shush, god forbid) so it would be printable in a uni's lab...08:27
ajdaniels indicated there was 2d support, but i810 doesn't seem to see anything?08:27
fabbioneiirc no, you need Xorg and 2.6.10 for dri08:27
=== sivang I'd be THANKFUL for this :)
fabbioneprobably the flgrx driver can manage it08:28
ajdon't seem to have such a driver?08:29
ajdo i need to switch to hoary, or?08:29
fabbioneaj: it's in l-r-m08:29
ajl-r-m?08:30
fabbioneaj: fglrx is the ati binary driver (restricted -> linux-restricted-modules)08:30
fabbioneotherwise you can grab X.org from hoary08:30
sivangall that I need is for someone to open the file, save it as RTF and that's it ;-)08:30
fabbionesivang: i can do it08:31
fabbionesivang: put the file somewhere08:31
sivangfabbione: Can I send you it using email? they block anything but smtp and pop3 and http here :-(08:32
fabbionesure08:33
sivangfabbione: fabbione@ubuntu.com ?08:33
fabbioneyup08:33
ajmodprobe fglrx just says "No such device"08:33
fabbioneaj: i am not 100% sure.. i hate binary crap, but iirc you need to rmmod r128 or something like that08:34
ajr128's not loaded  08:36
sivangfabbione: sent08:36
fabbioneaj: according to https://www.ubuntulinux.org/wiki/BinaryDriverHowto there is nothing special you need to do...08:37
fabbioneaj: i am afraid you need more recent stuff08:37
ajso xserver-xorg from hoary?08:37
fabbioneaj: you need a bit more than the server08:37
aj?08:38
ajbeyond what apt pulls in with it?08:38
fabbioneclearly you need the libs too08:38
fabbionejust upgrade the x-window-core virtual package08:38
fabbione(or something like that)08:38
fabbioneit will pull in everything you need08:39
fabbionex-window-system-core08:39
fabbionethis one should be enough08:39
sivangfabbione: lemme know when you've sent , sorry for the troulbe08:42
fabbionesivang: done.. mail is coming back08:42
sivangfabbione: thank you!08:42
fabbioneno problem08:42
fabbionei am back to bed08:43
ajfabbione: yay, 130M download :(08:43
fabbionefever is going down but not that much yet08:43
fabbioneaj: only?08:44
fabbioneput the fonts on hold08:44
fabbionei am pretty sure they get updated too08:44
ajfabbione: it's mostly python, i think08:44
fabbioneit might reduce a few MB08:44
fabbioneare you dist-upgrading?08:44
sivangfabbione: get well soon!08:44
ajfabbione: nah, that's a 400MB download08:44
fabbioneXorg does08:44
ajfabbione: easier to wait 10mins than futz more08:44
fabbioneXorg doesn't need python updated08:44
aj*shrug* seems to08:45
fabbioneat least... NOT when i packaged it08:45
ajprobably have some python-gnome module installed that wants the old X and the old python or the new X and the new python08:45
fabbioneright08:45
fabbionethat's possible due to the lib split08:45
fabbionegood catch08:46
ajwell, hopefully this'll work; thanks and get well :)08:46
fabbioneaj: good luck.. :)08:46
fabbionewelcome and cya around08:46
sivangfabbione: c'ya soon, and well :)08:46
fabbionethanks sivang 08:46
ajerr, that almost worked, except the 1024x768 modeline doesn't seem to exist after a dpkg-reconfigure xserver-xorg?08:58
=== syn-ack [~meskes@ip68-228-61-85.tc.ph.cox.net] has joined #ubuntu-devel
syn-ackMan, I thought seb128 was going to be here.09:13
syn-ackI wanted to thank him for getting that bug fixed in Rhythmbox so quick. I thought that since I filed it as "trivial" it would be on the bottom of the list.09:14
=== ironwolf [~ironwolf@c-24-6-169-124.client.comcast.net] has joined #ubuntu-devel
=== dholbach [~dholbach@td9091b16.pool.terralink.de] has joined #ubuntu-devel
dholbachmorning09:39
syn-ackgood morning.09:39
sivangdholbach: hey daniel, morning :)09:40
dholbachsivang: hello sivan!09:40
dholbachsivang: how did g-s-t go?09:40
sivangdholbach: I have a source pkg for you ;-) http://muse.19inch.net/~sivan/g-s-t09:42
sivangdholbach: I have to go now, be online again later, let me know if you managed to use it :)09:42
dholbachsivang: right, i'll give it a go09:42
=== fwiffo [~fwiffo@cpe.atm2-0-1101155.0x503f8eca.bynxx8.customer.tele.dk] has joined #ubuntu-devel
sladen /whois aj09:51
sladenit is that aj09:52
Riddellsladen: no it isn't, it's the other aj10:17
Mithrandirdepends on which aj is the other aj for you.10:31
=== spiritz [~spiritz@82.231.252.9] has joined #ubuntu-devel
Kalozmorning10:52
Kamionmdz: I don't really see a good reason to rename /install to /boot, and on some architectures it would cause me considerable confusion in the CD scripts, so I'd rather not11:05
Kamionmdz: I'd rather not conflate directory names on the CD with directory names on an installed system that have a sort-of-similar but not-quite-identical meaning11:06
=== enrico [~enrico@enrico.developer.debian] has joined #ubuntu-devel
=== justdave [~dave@66.227.241.236.gha.mi.chartermi.net] has joined #ubuntu-devel
=== decko [decko@200.225.233.114] has joined #ubuntu-devel
=== doko [doko@dsl-082-082-212-160.arcor-ip.net] has joined #ubuntu-devel
=== justdave [~dave@66.227.241.236.gha.mi.chartermi.net] has joined #ubuntu-devel
=== justdave [~dave@66.227.241.236.gha.mi.chartermi.net] has joined #ubuntu-devel
=== mvo_ [~egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel
=== herzi [~herzi@c206218.adsl.hansenet.de] has joined #ubuntu-devel
=== seb128 [~seb128@ANancy-151-1-8-48.w83-194.abo.wanadoo.fr] has joined #ubuntu-devel
dholbachhello seb12812:27
seb128hi12:28
=== Hwolf [~hidde@136.36.dynamic.phpg.net] has joined #ubuntu-devel
=== bitserf [~ljb@222-152-75-221.jetstream.xtra.co.nz] has joined #ubuntu-devel
=== marcin_ant [~marcin@www.e-dev.tele2.pl] has joined #ubuntu-devel
=== trulux [~lorenzo@67.Red-80-25-56.pooles.rima-tde.net] has joined #ubuntu-devel
Kamionmdz: 12:13 < svenl> Kamion: can you ask Matt to look at the mail titled "Re: Ok to commit ubd patch ?" from december 19 ?01:13
Kamionmdz: (parted)01:13
=== eruin [~eruin@eruin.user] has joined #ubuntu-devel
=== jaco^ [~jaco@host179-251.pool80117.interbusiness.it] has joined #ubuntu-devel
thomjdub: how is beagle, slacker01:22
thomand where is my netapplet list?01:22
jdubare you sitting down?01:23
thomyes01:24
jdubi attempted to relax this weekend :)01:25
thomHFSNW!01:25
jdubit was not all out proper relaxation01:26
jdubtony put star wars battlefield in pipka's handbag before we left01:26
jduboh yes01:26
jdubbtw01:26
jdubpipka has a handbag01:26
mjg59Bugger. All the LCA accommodation has gone.01:27
jdubYokoZar: :-)01:28
=== thom 's mental image struggles with pipka carrying a handbag
thomsorry, don't believe you01:29
jdubi'm serious!01:29
jdubdude, i can get photos01:29
jdubhold on01:29
thomyou'll have to01:29
mjg59Serious as cancer?01:29
=== mjg59 goes to the pb
mjg59pub01:30
mjg59Argh01:30
thommjg59: dude, you've obviously been drinkin' already ;p01:30
=== Lovechild [~dnielsen@82.150.72.35] has joined #ubuntu-devel
dholbach*grrrr* why does  gnome_program_init()  crash *cry*01:30
jdubnah, it would just not be the same if it weren't pipka+handbag01:31
jdub(she's asleep now)01:32
thomahr01:32
thomoh well; i'll continue to disbelieve you then01:32
=== Nigelenki [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
=== [m0rph] [~morph@p83.129.176.71.tisdip.tiscali.de] has joined #ubuntu-devel
=== ogra [~ogra@p508EADDA.dip.t-dialin.net] has joined #ubuntu-devel
dholbachhai ogra01:43
Kamionelmo: can http://people.ubuntulinux.org/patches/ be made to work again, please? It used to work, and I mailed some patches to Debian on that basis; now I'm getting grief because they don't work any more.01:43
ogradholbach01:44
ograhi01:44
Kamionor for that matter01:44
Kamionthom: ^---01:44
thomi'll take a look post breakfast01:44
Kamionta01:45
thom(and yes, i know it's getting on for 1pm :-) )01:45
ograhehe...01:45
Kamionnot as if I've had breakfast yet ...01:45
=== ogra lies still in bed....
dholbachanyone who would like to test if coaster-0.1.4 just crashes on my box (amd64) or anyone would like to provide a manpage, while i battle gdb? ;-)01:46
=== T-None is now known as T-Bone
T-BoneKamion: hi, got my last message?01:55
dholbachbrb01:56
=== dholbach [~dholbach@td9091b16.pool.terralink.de] has left #ubuntu-devel []
ograi have very bad news....01:56
=== Ferry [~ferry@cust.15.118.adsl.cistron.nl] has joined #ubuntu-devel
ograto make this work: http://www.grawert.net/hal_cpu_patch.png http://www.grawert.net/hal_acpi1.png http://www.grawert.net/hal_acpi2.png .....01:57
ograacpi has to be stared before hal.....which extends the bootime by a second :(01:57
ogramdz ^^^01:58
KamionT-Bone: which one?01:59
T-BoneKamion: the one i sent yesterday, summarizing what's up with ia64 and the 'hal bug'01:59
KamionT-Bone: did you get my mail saying that I think it's architecture-independent?02:00
thomogra: yeah, that's total crack, i've been following the threads on the hal list02:00
ograthom: i backported it to our hal ;)02:00
thomogra: i suspect we'll be taking a different approach :-)02:00
T-BoneKamion: nop02:01
ograthom: before hoary ?02:01
thomogra: we'll see02:01
T-BoneKamion: ah bummer. You sent it to @parisc-linux.org ?02:01
=== dholbach [~dholbach@td9091b16.pool.terralink.de] has joined #ubuntu-devel
dholbachre02:02
KamionT-Bone: yeah, think so02:03
T-BoneKamion: FtC (*@parisc-linux.org and a few debian machines) is down for the week end. Can you resend it to varenet@esiee.fr please?02:03
KamionT-Bone: bounced02:03
=== Mitario [~michiel@sikkes.xs4all.nl] has joined #ubuntu-devel
T-BoneKamion: got it, thx02:06
Mitariohi everyone02:06
T-BoneKamion: i'm definitely _NOT_ running in expert mode02:06
T-Bonethe amd error occurs in non expert mode 3 times02:07
T-Boneand networking was up. It downloaded a few Releases/Packages files but took an error at the end02:08
T-Boneand i have NFC what needs to be done to get a driver hotplug-capable :P02:08
T-Bonefor the rest I'll look at it post-breakfast02:08
T-Bone(and yes it's 2PM) ;}02:08
KamionT-Bone: huh, weird02:12
T-BoneKamion: was mostly looking like it couldn't fetch some release/package file actually02:13
T-Bonei'll try to find out in a bit02:14
=== T-Bone is now known as T-Gone
T-GoneKamion: the problem being that aptitude starts immediately, thus making it impossible to read the message02:14
T-Gone(that's imho a bad thing (tm))02:15
=== T-Gone is off now
=== lemsx1 [~lemsx1@p78-56.acedsl.com] has joined #ubuntu-devel
Kamion  rhythmbox: Depends: gstreamer0.8-mad which is a virtual package.02:30
Kamion  libopenh323-1.13.2: Depends: libpt-1.6.3 but it is not installable02:30
Kamion  libpt-plugins-v4l: Depends: libpt-1.6.3 (= 1.6.6.4-5.1) but it is not installable02:30
Kamionanyone working on that lot?02:30
KamionT-Gone: the message is logged in /var/log/base-config.log02:31
=== zopi [~chatzilla@AMontsouris-152-1-27-33.w82-123.abo.wanadoo.fr] has joined #ubuntu-devel
zopiHi02:31
zopiis it plan to add gst-ffmpeg on Ubuntu ?02:32
zopihttp://freshmeat.net/projects/gstreamer/?branch_id=55564&release_id=18384002:32
zopithere is a package for Debian already on alioth02:32
tsengzopi: its a legality issue, I believe02:32
zopipkg-gnome.alioth.debian.org/debian/pool/g/gst-ffmpeg/02:32
zopihuh ?02:33
dholbachdoes anyone know, who Jakob Schurdak is? or if he's on IRC?02:35
Kamionah, finally, working networking on the OQO02:36
Kamionwe need linux-wlan-ng in main02:36
jdubKamion: woo :)02:37
KamionI don't get to use the CD-ROM and networking at the same time, but hey ...02:38
jduboh?02:38
Kamionwell, DVD-ROM02:38
KamionUSB DVD-ROM and USB network adaptor; only one USB slot.02:38
jdubahr02:39
Kamiondon't think I have a hub either02:39
jdubhow's everything else? mouse?02:39
Kamionhaven't got the mouse working yet, but one of the guys mailed me an xorg.conf which I'll try in a moment02:40
Kamionjust installing ubuntu-desktop over ssh02:40
jdubrad!02:40
Kamionuntil I had networking working, it was too painful to do any significant text-mode development02:40
Kamionthe keyboard is usable for short periods, but hacking on it sucks02:40
=== rubenv [~lambda1@83-134-127-45.Leuven.GoPlus.FastDSL.tiscali.be] has joined #ubuntu-devel
Kamionjust fixed up base-installer for it, since it didn't know about transmeta CPUs02:41
jdubwhoa02:42
Kamion(wasn't a showstopper, it fell back to 386 anyway, so didn't make a difference on cdrom installs)02:42
truluxmdz: ping02:45
Kamionso, are we removing -mad support from rhythmbox, or what?02:49
Kamionit seems a shame not to have it able to play MP3s if gstreamer0.8-mad is installed; does it have the ability to use plugins?02:50
Kamionit doesn't seem to actually link against the gst backends ...02:51
tsengright now muine uses the libs directly to read metadata, and gst/xine for playback02:51
tsengi think the other gst players are in the same boat02:51
rubenvKamion: heh?02:52
rubenvstill plays mp3 here :)02:52
KamionI'm really just wondering if rhythmbox can be made to work without gstreamer0.8-mad installed, yet still have the added functionality if gstreamer0.8-mad is installed02:52
Kamionrubenv: yes, it still depends on gstreamer0.8-mad02:52
Kamionrubenv: the problem is that rhythmbox is in main while gstreamer0.8-mad is in universe, so it can't stay that way02:52
rubenvseems like the whole file formats thing should be made modular02:53
tsengrubenv: thatd be fine, when everyone switches to using gst for reading metadata02:53
rubenvain't the xine metadata horribly broken on RB?02:54
=== rubenv remembers pleas on the mailing list not to use xine for metadata
jdubKamion: rhythmbox doesn't need the gstreamer plugin installed02:54
jdubKamion: without it, it doesn't do mp3; with it, it does02:55
rubenvso basically there's nor problem at all02:55
Kamionjdub: in that case I'll fix our package to stop depending on it02:55
tsengoh, i thought he wanted to remove mp3 support more02:55
jdubKamion: (this is exactly what we did for warty)02:55
jdubKamion: hrm, bad merge?02:56
tsengjdub: tomboy today? sorry to sound like a broken record02:56
jdubtseng: ahr!02:56
jdubtomorrow02:56
tsengits nearly freeze02:56
jdubit is very near to bed time here02:56
tsengalright dude, have a good one.02:57
Kamionjdub: could be, looking02:57
danielsfabbione: er, i915 is intel, dude02:58
ajhoary's xorg with a manually added horizsync/vertrefresh worked fwiw03:01
Kamionjdub: yeah, looks like a plain merge glitch, fixing03:02
thomgar, I want mono on amd6403:06
jdubthom: mint doesn't work?03:06
thomjdub: bootstrap hell03:06
jdubheh03:06
jdubeek03:06
=== T-Gone is now known as T-Bone
jdubah, bedtime.03:06
thomjdub: 1.1.3 would be the right solution ;-) 03:06
thomg'night03:07
danielsaj: bong.  please send over xorg.conf and Xorg.0.log.03:07
danielsjdub: yes03:07
jdubthom: my desktop is 2002:dad6:43e3:0:230:1bff:feb3:cd1 :-)03:07
jdubbut my gateway is not routing to it atm03:07
thomthat's something of a show stopper ;-)03:08
thommy ISP has native v6 support on it's dsl, but i need a new router to cope03:08
thomuh, its03:08
jdubshorewall is a showstopper :|03:08
thomshorewall needs to burn in the utmost fires of hell ;-)03:09
jdubgot a suggestion for a replacement?03:10
thomunfortunately not03:10
jdub(i don't write firewall assembly, btw)03:10
jduboh03:10
jdubsame problem here whenever i go looking for something03:11
thomi write firewall assembly when necessary03:11
T-BoneKamion: my guess is that there's little chance that making mptscsih hotplugable is a good idead actually: you need it to boot the box no matter what after the installation, and some machines ship with SCSI CD drives03:11
T-BoneKamion: imho the right thing to do is to have it preloaded at initrd time03:11
KamionT-Bone: we are using hotplug for hardware detection in general03:11
T-Boneas mptbase is already03:11
KamionT-Bone: there's a project in the works to have hotplug running in the initrd to figure out what to load03:11
Kamionso mptscsih should be made hotpluggable03:12
T-BoneKamion: well then you have to tell me how to do that03:12
Kamionthere are others around here far more qualified to do that than I03:12
T-BoneKamion: are we trying to increase boot time on ubuntu?03:12
Kamionmdz knows the basics03:12
Kamionat least03:12
KamionT-Bone: er, no03:12
Kamionwe're trying to make hardware detection not a screaming nightmare03:13
T-BoneKamion: well then even tho i can imagine why you want to hotplug everyhting, you'll end up increasing it anyway I'm afraid ;P03:13
Kamionnot significantly03:13
lupus_is gaim default download folder pointing to Desktop?03:13
Kamionthe number of modules in the initrd is not large, and grepmap speeds it up enough03:13
T-Bonedepends on the hardware03:13
lupus_like it is ubuntu policy03:13
thomKamion: p.u.c/patches/ works now03:13
Kamionthom: thanks03:13
T-BoneKamion: loading the initrd is already a slow operation on some machines03:13
Kamionlook, we're committed to hotplug; none of the other hacks were sufficiently maintainable03:14
Kamionso the solution to any gripes with hotplug is to fix hotplug. :)03:14
KamionI am *certainly* not going back through the installer and undoing all the changes I made to make it use hotplug03:15
Kamioneven if it weren't a hoary goal03:15
T-Boneheh03:15
T-Bonethat's fine by me. I know how to disable initrd/hotplug when i want to :)03:16
Kamionlook for MODULE_DEVICE_TABLE sections in other drivers; that should be a good starting point03:16
T-Bone(and i usually do)03:16
KamionT-Bone: jbailey is the one working on hotplug in initramfs03:16
T-BoneKamion: the base-install.log is absolutely cripled. Is that a dump of what's actually displayed on the screen? It's barely human readable03:17
Kamionit's generated by 'script'. Yeah, it's hard to read03:17
T-Boneyeah i'll ask jeff asap03:17
Kamiondoesn't matter though 'cos you're generally only looking at it for debugging :)03:17
T-Bonei'm surprised since I'm finding error messages there that I haven't even noticed during base install03:18
KamionT-Bone: anyhow, hoary's boot with hotplug almost throughout is already faster than most other distributions03:19
T-BoneThere was a prm installing the selected software  One or more packages failed to install. This may be due to bugs in the  packages, or you may be ouof disk space or experiencing some other  problem.03:19
T-Bonethis is what it says03:19
Kamionright, probably uninstallable ubuntu-desktop03:19
Kamionthis happens a fair bit I'm afraid :(03:19
KamionI'm fixing up one of the problems right now, that's the rhythmbox thing03:19
T-Bonedoh03:20
T-Bonefound the culprit03:20
T-Bone  openoffice.org-debian-files: Depends: openoffice.org-bin (> 1.1.2+1.1.3) which is a virtual package.03:20
T-Bone  openoffice.org: Depends: openoffice.org-bin (> 1.1.2+1.1.3) which is a virtual package.03:20
T-Bone  ia32-libs-openoffice.org: Depends: lib32gcc1 (>= 3.4.2-2ubuntu3) which is a virtual package.03:20
T-Bonenow that suprises me alot; i ran apt-get install ubuntu-desktop by hand and it worked just fine03:20
Kamionoh, um, argh, that's going to be complicated03:20
=== [m0rph] [~morph@p83.129.176.71.tisdip.tiscali.de] has joined #ubuntu-devel
Kamionelmo: around?03:21
T-Bonelol03:21
Kamionelmo: does your stuff that generates Task: ubuntu-desktop lines use current germinate / otherwise take account of architecture-specific seed entries?03:21
Kamionelmo: openoffice.org* shouldn't have Task: ubuntu-desktop on ia6403:22
KamionT-Bone: if you used 'aptitude install \~tubuntu-desktop', you'd see the problem03:22
T-Bonecorrect03:23
T-Bonejust reproduced it03:23
KamionT-Bone: we have 90% of the infrastructure for fixing that though, in germinate (colin.watson@canonical.com--2004/germinate--mainline--0 if you want to look); looks like it just needs to be pushed out to one more place03:23
T-Bonewhat's that URL?03:24
T-Boneoh03:25
T-Bonethat's an arch thing?03:25
Kamionyeah; install bazaar03:25
Kamionthen 'baz register-archive http://people.ubuntu.com/~cjwatson/archives/colin.watson@canonical.com--2004'03:25
Kamionthen 'baz get colin.watson@canonical.com--2004/germinate--mainline--0'03:26
T-Bonegah03:26
Kamion(or tla works too)03:26
T-Boneyeah but it's "arch" you know03:26
T-Bone;P03:26
ajdaniels: ?03:27
ajdaniels: what do you want to conf/log for? (is the one that worked useful?)03:28
danielsaj: if you have to think about touching xorg.conf, it's a bug -- non-working (default) conf/log is useful to me so i can hopefully fix it03:33
thomseb128: nautilus/gamin is hosed03:34
danielsnight kiddie-winks03:34
dholbachthom: even with jdub's new upload?03:34
thomdholbach: how new is new03:34
thomnight daniel03:34
dholbachthom: 2-3 hours03:34
dholbachthom: 0.0.21-0ubuntu203:35
=== dholbach thought his nautilus/gamin was nice
KamionT-Bone: (of course, fixing OOo on ia64 would be good, too ... :-) but that may be beyond the resources you have, OOo being the monster it is)03:35
T-Boneyou damn betcha :)03:36
T-Boneand i hate java03:36
T-Bone;)03:36
thomdholbach: lets try that03:36
=== Kamion wonders why openoffice.org2 failed to build on powerpc
seb128thom: what ?03:38
=== srbaker [~srbaker@blk-222-186-25.eastlink.ca] has joined #ubuntu-devel
=== mxpxpod [~bryan@mxpxpod.user] has joined #ubuntu-devel
tsengmorn mxpxpod 03:40
dholbachhi mxpxpod03:40
mxpxpodtseng: mornin'... what's up?03:40
mxpxpodhey dholbach!03:40
=== Mitario [~michiel@sikkes.xs4all.nl] has joined #ubuntu-devel
tsengmxpxpod: nm dude, see priv03:41
mxpxpodtseng: got it :)03:41
Kamionhaggai: seems to be a missing include of <stdio.h> or <cstdio> or whatever in src680-m66/desktop/source/m03:41
Kamionigration/services/jvmfwk.cxx03:41
Kamionhaggai: (sorry for broken line), judging from the powerpc build log03:41
Kamionhaggai: (openoffice.org2)03:41
mxpxpodtseng: what has improved in tomboy 0.3.1?03:42
tsengmxpxpod: see .changes03:42
mxpxpodtseng: ah, ok03:42
mxpxpoddholbach: thanks for the translation03:43
mxpxpoddholbach: I'm going to make a 0.1.4.1 release today03:43
=== spiritz [~spiritz@82.231.252.9] has joined #ubuntu-devel
=== stratus [~stratus@200217088219.user.veloxzone.com.br] has joined #ubuntu-devel
dholbachmxpxpod: cool! :-)03:44
dholbachmxpxpod: just wrote a manpage for coaster and got a fully-compiling package without any lintian-warnings - bad thing is: still a segfault in gnome_program_init() :-(03:44
mxpxpoddholbach: I have a fix for the egg libraries from bugzilla03:44
mxpxpoddholbach: that's strange... I'd like to see a backtrace03:45
dholbachmxpxpod: it's very short, i'll send it in a query03:45
rubenvdholbach: when trying to build coaster pkgs a while ago, i got the same probs03:45
mxpxpoddholbach: ok03:45
mxpxpodthat's really really strange... I'm on ubuntu hoary and it works fine for me compiling from source03:45
thomseb128: nautilus doesn't appear to be updating the Desktop when files land in ~/Desktop; I have to open Desktop as a folder and reload it03:45
dholbachrubenv: were you able to fix it?03:45
rubenvdholbach: because of upcoming exams i didn't start to look into the source :)03:46
dholbachrubenv: hmmm, i'll have an exam next week monday too (in fact my last ;-))03:46
mxpxpoddholbach: could you file a bug?03:46
mxpxpodin coaster's bugzilla with that trace?03:46
mxpxpodrubenv: what arch are you on?03:47
rubenvthom: click on desktop, ctrl-r, saves you time when gamin doesn't do it ;)03:47
rubenvi38603:47
mxpxpodhmm03:47
seb128thom: blame gamin/inotify :)03:47
mxpxpodpowerpc works fine ;)03:47
dholbachmxpxpod: of course... just wasnt sure, if i broke the libraries or something03:47
thomrubenv: shrug, i don't really care, i'm just reporting the bug :-)03:47
thomseb128: heh03:47
thomseb128: not gtk+, then?03:47
rubenvdholbach: me tuesday, also last03:47
=== rubenv back to study :)
dholbachmxpxpod: but inkscape and regexxer worked fine with those g*mm packages03:47
seb128thom: gnome-session-remove nautilus && GAM_DEBUG=1 nautilus03:47
dholbachrubenv: i'll have my fingers crossed03:47
mxpxpoddholbach: hmm03:48
rubenvdholbach: thx, will do the same03:48
mxpxpoddholbach: file a bug and I'll take a look at it03:48
mxpxpoddholbach: that really confuses me03:48
dholbachmxpxpod: i can easily imagine03:48
mxpxpodbecause it's usually powerpc that has problems :)03:48
dholbachmxpxpod: just the same with amd64 ;-)03:49
mxpxpoddholbach: what's your repo's address again?03:49
=== OddAbe19 [~OddAbe19@pcp02542642pcs.lncstr01.pa.comcast.net] has joined #ubuntu-devel
thom*sigh*; once i g-s-r'd nautilus and reran it, it works. 03:49
dholbachmxpxpod: http://ubuntu.stufenseite.de03:49
thomkillall nautilus however hadn't cured it03:49
mxpxpodis gamin replacing fam finally?03:50
dholbachmxpxpod: but i'll move another coaster package to it later (when i figured that *grmbl* manpage out)03:50
dholbachmxpxpod: yes, since 0.0.21-0ubuntu203:50
mxpxpoddholbach: you should really set up a repo that people can apt-get from03:50
dholbachmxpxpod: if you tell me how...03:51
tsengdholbach: second03:51
mxpxpoddholbach: we can work on it tomorrow03:51
dholbachmxpxpod: i dont want it to be a lasting institution03:51
tsengdholbach: ill msg you a quick script03:51
mxpxpodrubenv: did you build coaster from source or did you use dholbach's pkgs?03:52
rubenvfrom source03:53
rubenvbut it's quite some time ago03:53
mxpxpodrubenv: did you build the *mm libs from source too?03:53
rubenv(the coaster that still had bakery)03:53
rubenvmxpxpod: no03:53
mxpxpodrubenv: ohhh03:53
mxpxpodrubenv: the reason that crash didn't work was because bakery 2.3.11 had a different virtual method API than 2.3.1003:54
mxpxpods/crash didn't work/crashed/03:54
mxpxpoddholbach: so, rubenv's crash is different from yours03:54
mxpxpodyours still puzzles me03:54
dholbachmxpxpod: one guy in the gnome BTS said, he had 0.1.4 working on hoary03:56
mxpxpoddholbach: yup03:56
dholbachmxpxpod: but he didnt have the libraries03:56
mxpxpoddholbach: try building the *mm stuff from source and then building coaster and tell me if you still get that crash03:57
mxpxpodif you don't, it's something with your libs03:57
mxpxpod:)03:57
dholbachstrangely enough, it's /usr/lib/libgnome-2.so.003:57
dholbachnothing i covered in the packages at all04:01
mxpxpodbbiab04:03
dholbachwell guys... see you later (in an hour or two)04:20
=== titoo [~titoo@0x50a46a27.virnxx13.adsl-dhcp.tele.dk] has joined #ubuntu-devel
=== mpt_montreal [~mpt@p188.h-yulrz01.stsn.com] has joined #ubuntu-devel
kenton the hardwaresupport section of the wiki, I added a page for webcameras. Can some one check it and tell me if i did the right thing? I think I did the right thing, but I can remove it if it was wrong of me.  :)04:50
rubenvlooks fine to me04:51
marcin_anthello - short question - is Beagle installable/buildable (from cvs) on hoary?04:59
=== thom pokes mjg59 idly towards his query window
mx|gonetseng: has tomboy changed their notification area icon yet?05:04
mjg59thom: Oh, hi05:07
=== ubernoob [~na@auth.mnemonic.no] has joined #ubuntu-devel
rubenvmarcin_ant: i heared that jdub was making pkgs somewhere05:09
=== thom [~thom@retribution.clearairturbulence.org] has joined #ubuntu-devel
=== pitti [~martin@box79162.elkhouse.de] has joined #ubuntu-devel
=== dholbach [~dholbach@td9091a33.pool.terralink.de] has joined #ubuntu-devel
dholbachre05:19
=== tritium [~tritium@12-202-90-180.client.insightBB.com] has joined #ubuntu-devel
srbakeranyone here doing the ubuntu thing on an ibook?05:21
srbakeri'm thinking about trading these two notebooks for an ibook g305:21
marcin_antrubenv: ok - thanks - I just was trying to follow procedure described on this page: http://www.ubuntulinux.org/wiki/BeagleInstallHowto05:21
marcin_antrubenv: but it doesn't work05:22
=== s1 [~simon@lsanca1-ar5-4-60-059-218.lsanca1.dsl-verizon.net] has joined #ubuntu-devel
sladensrbaker: tonnes of people05:22
tritiumseb128, did rhythmbox used to say "Paused" when playback is indeed paused?  It looks like fix for #5926 prevents "Paused" from ever being indicated.05:22
=== s1 is now known as sm
srbakersladen, what's the verdict on speed?05:23
srbakeri'm thinking of going from a p3-750/192M to a g3 500/640M05:23
sladensrbaker: only you can be a judge of that.05:23
mjg59thom: Yeah, that looks good05:23
srbakersladen, that doesn't help much.05:24
seb128tritium: dunno, the fix has been to drop the broken patch05:24
thommjg59: anything to add?05:24
sladensrbaker: this is probably a question that belongs on #ubuntu (this is a development related channel)05:24
tritiumseb128, I don't recall the behavior from before either05:25
mjg59thom: Nothing that springs to mind05:25
mjg59I'll play with the apm stuff later today05:25
seb128tritium: the current one, since the package has been patched and now the patch has been dropped05:25
=== ubernoob [~na@auth.mnemonic.no] has joined #ubuntu-devel
seb128tritium: so it's back to the previous one05:25
=== elmo [~james@83-216-141-215.jamest298.adsl.metronet.co.uk] has joined #ubuntu-devel
tritiumokay, thanks.05:26
seb128np05:28
srbakersladen, i'm interested in hearing it from developers.  i know the difference.05:28
=== fwiffo [~fwiffo@cpe.atm2-0-1101155.0x503f8eca.bynxx8.customer.tele.dk] has joined #ubuntu-devel
titooHello, any IBM laptop users? Ubuntu is not supporting my internal modem (t41p), I can use my laptop for testing if you have an idea but not the same hardware.05:35
=== thom [~thom@amnesiac.heapspace.net] has joined #ubuntu-devel
Mithrandirtitoo: I use an IBM laptop, but I couldn't care less about the internal modem. :P05:37
=== rubenv recently noticed you could remove the modem
rubenvlaptop now 2grams lighter :)05:37
Mithrandirooh, I should do that. ;P05:38
Mithrandir(as I have an x40, so anything to get it lighter)05:38
rubenvdell here05:38
Mithrandirew.05:38
MithrandirI _seriously_ don't like dell due to personal experiences.05:39
=== rubenv hugs his dell
rubenvMithrandir: what happened?05:39
Mithrandirrubenv: I wore out two in less than a year, got fucked over a couple of times and wasted a lot of time on trying to fix it.05:39
Mithrandir(basically)05:40
rubenv:)05:40
=== rubenv hugs his backup policy
rubenv(just in case ;))05:40
=== dholbach wonders, what's wrong with getting fucked a couple of times. :-)
titooMithrandir: :( I am only needing 1 week a year... forced to use Windows 05:41
Mithrandirtitoo: buy (or just get) a real modem?05:42
titooMithrandir: I am looking at what is done on the Debian side, I may find05:43
Mithrandirtitoo: there are supposed to be some solutions for those stuck with mwave modems, but I've never looked at it myself.05:45
=== thom [~thom@amnesiac.heapspace.net] has joined #ubuntu-devel
titooMithrandir: True that I can get my old USRobotics out of the dust :)05:47
Mithrandirtitoo: I'd do that if I were you -- probably less work. :)05:48
mjg59rubenv: It's an hsf modem05:48
mjg59There's no open driver05:48
mjg59Uh, s/rubenv/titoo/05:49
titoomjg59: Thanks for the info, I understand the support pb...05:51
dholbachWOOOOOOHOOOOOOOO!!!!!05:54
=== dholbach shakes his derrire: http://ubuntu.stufenseite.de/coaster.png
=== rubenv wants those pkgs
dholbachjust a sec05:55
dholbachhave to upload it05:55
rubenv*poke* *poke* *whip* faster i tell ya05:56
dholbachrubenv: start building the g*mm-libraries unless you have amd64 :-)05:57
rubenvsource debs anywhere? :)05:57
dholbachhttp://ubuntu.stufenseite.de 05:58
rubenvjummy :)05:58
dholbachi'll try to make  tseng 's script work later; so you'd at least be able to  deb-src  them05:59
rubenvwget -r for now ;)05:59
dholbachrubenv: you'd just need the .dsc and .gz files :-)06:01
smurfixdholbach: isn't the volume name used by ubuntu these days, too?06:01
=== rubenv is a barbarian ;)
dholbachsmurfix: ask mx|gone - it's his code :-)06:02
smurfixThat's not code, that's a string in a .po file. ;-)06:02
dholbachsmurfix: you're right, tomorrow there'll be 0.1.4.1 which has german translation :-)06:03
dholbachi'm so happy that it works :-)06:04
dholbachs/that//06:04
dholbachrubenv: you won't need the timer-applet :-)06:05
rubenvyeah, i noticed it slipping in ;)06:05
=== kent [~kent@c83-249-62-252.bredband.comhem.se] has joined #ubuntu-devel
dholbachrubenv: i'll do an 0.1.4-2 upload, which is proper06:07
rubenvtake your time06:08
rubenvmm stuff first ;)06:08
dholbachrubenv: nice to have you testing :-)06:13
rubenvwith pleasure :)06:14
rubenvbleh, my puilder chroot is hopelessly outdated :)06:14
dholbachrubenv: i never got mine working actually :-(((06:15
rubenvdholbach: what's the problem?06:15
dholbachrubenv: it complains about gcc not being able to compile executables06:15
rubenveh?06:16
rubenvi'll tell you what mine does in a sec :)06:16
rubenvit's been a while since i used it06:16
dholbachrubenv: but it's the same with each and every .dsc i feed it :-(06:16
thombet you don't got build-essential installed 06:17
=== titoo_ [~titoo@0x50a46a27.virnxx13.adsl-dhcp.tele.dk] has joined #ubuntu-devel
dholbachthom: but i wonder why06:17
=== ubernoob [~na@auth.mnemonic.no] has joined #ubuntu-devel
dholbachthom: i even told it    EXTRAPACKAGES=build-essential06:18
rubenvah i hate ide :)06:18
dholbachrubenv: ide?06:19
ubernoobi upgraded to horax, and now x-screen wont start :( i just get a blank screen. anyone know what the problem might be?06:19
ubernoob*horay06:19
rubenvdholbach: the beloved hard disk interface we all like ;)06:20
thomubernoob: users questions in #ubuntu, please :-)06:20
ubernoobthom: ok. sorry06:21
=== ubernoob [~na@auth.mnemonic.no] has left #ubuntu-devel []
dholbachrubenv: be sure to grab  coaster_0.1.4-2*   - i'm cooking something06:22
rubenvglibmm is building06:22
rubenvglibmm builds perfectly :)06:25
Nigelenkipitti:  ping06:26
=== srbaker [~srbaker@blk-222-186-25.eastlink.ca] has left #ubuntu-devel ["Leaving"]
rubenvhmmm, i wonder how to make pbuilder pick up my freshly built pkgs06:28
dholbachrubenv: pick up?06:31
rubenvyeah, how to get pbuilder to use my freshly built glibmm06:32
rubenvmust be first time i'm building a fresh dep tree06:32
dholbachrubenv: i use  debuild && sudo debi06:32
rubenvnormally my libs were in universe06:33
dholbachwell   dpkg-source -x <bla>.dsc; cd <bla>; debuild && sudo debi06:33
rubenvyeah, but i'm trying to build em in chroot06:34
rubenvnormal building then :)06:35
dholbachrubenv: you were on i386?06:44
=== Sparhawk_ [~sparhawk@c-24-14-121-93.client.comcast.net] has joined #ubuntu-devel
=== kent [~kent@83.249.62.252] has joined #ubuntu-devel
abellisladen: ping07:07
abellior ding07:07
rubenvdholbach: yes07:09
dholbachrubenv: so we'd need someone on powerpc to test it too ;-)07:10
=== srbaker [~srbaker@blk-222-186-25.eastlink.ca] has joined #ubuntu-devel
sladenabelli: is 'ding' the sound a bicycle makes?07:24
abellisladen: could be yeah07:24
=== koke [~koke@rm-001-26.serve.com] has joined #ubuntu-devel
=== stratus [~stratus@200217088219.user.veloxzone.com.br] has joined #ubuntu-devel
thomyay, elmo is doing NEW08:08
=== thully_ [~thully@151.144.199.252] has joined #ubuntu-devel
=== dholbach yays too! :-)
=== Nafallo [~nafallo@h123n3c1o1027.bredband.skanova.com] has joined #ubuntu-devel
=== usual [~colin@alb-69-204-175-222.nycap.rr.com] has joined #ubuntu-devel
=== herzi [~herzi@d079085.adsl.hansenet.de] has joined #ubuntu-devel
=== JanC [~JanC@dD57620E1.access.telenet.be] has joined #ubuntu-devel
=== rubenv [~lambda1@83-134-127-45.Leuven.GoPlus.FastDSL.tiscali.be] has joined #ubuntu-devel
=== trulux [~lorenzo@trulux.user] has left #ubuntu-devel ["cat]
mdzjdub: ping?09:00
=== alerios [~alerios@201.245.164.174] has joined #ubuntu-devel
=== ironwolf [~ironwolf@c-24-6-169-124.client.comcast.net] has joined #ubuntu-devel
=== alerios [~alerios@201.245.164.174] has left #ubuntu-devel ["Abandonando"]
=== Kyaneos [~Kyaneos@80-28-181-43.adsl.nuria.telefonica-data.net] has joined #ubuntu-devel
YokoZarjdub: You asked me something earlier (roughly 8 hours ago) ?09:31
=== sid77 [~sid77@ppp-52-135.30-151.libero.it] has joined #ubuntu-devel
sid77hi09:34
=== Mithrandir twaps pam_env
=== justdave [~dave@66.227.241.236.gha.mi.chartermi.net] has joined #ubuntu-devel
=== enrico [~enrico@enrico.developer.debian] has joined #ubuntu-devel
=== shlomil [~shlomi@80.179.93.134.forward.012.net.il] has joined #ubuntu-devel
=== T-Bone is now known as T-None
=== mirak [~mirak@AAubervilliers-152-1-11-173.w82-121.abo.wanadoo.fr] has joined #ubuntu-devel
=== usual [~colin@alb-69-204-175-222.nycap.rr.com] has joined #ubuntu-devel
=== usual [~colin@alb-69-204-175-222.nycap.rr.com] has joined #ubuntu-devel
=== syn-ack [~meskes@ip68-228-61-85.tc.ph.cox.net] has joined #ubuntu-devel
=== Simira [rpGirl@m146i.studby.ntnu.no] has joined #ubuntu-devel
=== ogra [~ogra@p508EADDA.dip.t-dialin.net] has joined #ubuntu-devel
=== tritium [~tritium@12-202-90-180.client.insightBB.com] has left #ubuntu-devel ["Leaving"]
MithrandirKamion: http://err.no/patches/pam_env_per_user.diff ; what do you think of something along those lines to have an ~/.pam_environment which could be touched by the utf8 migration tool (and anything else that wants to handle such a file with a somewhat-predictable format)10:55
KamionMithrandir: going out soon so I haven't reviewed it in detail, but the spirit looks fine; I assume it has the same format as /etc/environment, that an assignment in ~/.pam_environment supersedes any assignment of the same name in /etc/environment, and that if a name isn't mentioned in ~/.pam_environment then the value from /etc/environment is used?10:57
KamionI think that'd basically be my spec10:58
mdzKamion: what would be the consequences of skipping the location question on the live CD?11:01
mdzbad keyboard layout defaults?11:01
=== perdix [~perdix@134.102.101.166] has joined #ubuntu-devel
MithrandirKamion: yeah, that's the idea at least.11:04
Kamionmdz: you wouldn't get a full locale. I don't want en_US ...11:04
MithrandirKamion: I had to whack pam_env a fair bit to make it suck in different ways -- the code should be completely rewritten, but that's for another day.11:04
Kamionmdz: language and location are a single udeb now, partly to emphasise the fact that they really can't be split up11:05
=== bluefoxicy [~bluefox@pcp485126pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel
=== lupus_ [~lupus@dC38296D1.access.telenet.be] has joined #ubuntu-devel
=== moyogo [~moyogo@Toronto-HSE-ppp3717779.sympatico.ca] has joined #ubuntu-devel
=== ogra [~ogra@p508EADDA.dip.t-dialin.net] has joined #ubuntu-devel
mdzMithrandir: I don't remember if I heard from you regarding evms-udeb; did you have a chance to look into it?11:29
Mithrandirmdz: I've looked at it a bit and if we want to support all of what evms is capable of, it's a fair chunk of work (and frankly, I'm not sure we should do it, as the UI will be horrible).  If we just want to do what partman-lvm is doing (and which should be enough for a lot of the use cases we're interested in, it's a couple of days of work.11:31
Mithrandirmdz: so the answer is "it depends".11:32
=== robertj_ [~robertj@66-188-77-153.cpe.ga.charter.com] has joined #ubuntu-devel
mdzMithrandir: I think trying to do everything EVMS does through a cdebconf UI would be horrific11:33
Mithrandirmdz: yes, I agree.11:33
robertj_hey mdz: do you know anything about gecko#?11:33
mdzwe should provide the basic types of configurations that people want to use on their root filesystem11:33
mdzrobertj_: nope11:33
mdze.g., RAID, LVM and RAID+LVM11:33
robertj_the dashboard guys said jdub was giving it some TLC to work with beagle .5+11:33
Mithrandirmdz: that ought to be doable with, somewhere around a week of work, I think.11:33
mdzMithrandir: could you email me a quote based on this basic spec?11:35
mdzMithrandir: how is the utf8 migration tool going?11:35
=== jbailey [~jbailey@CPE000ded9d787c-CM014260028338.cpe.net.cable.rogers.com] has joined #ubuntu-devel
Mithrandirmdz: I've found out how to do it and begun hacking the surrounding stuff (like, we probably want http://err.no/patches/pam_env_per_user.diff to have pam_env support ~/.pam_environment.  Else, we'd have to migrate the whole system at once.11:36
mdzMithrandir: migrating the whole system at once is fine for the desktop, really11:36
Mithrandirmdz: I'm designing it to work in two modes -- per user and whole-system.  Whole system will convert all users' home directories, change locale in /etc/environment, stuff like that, while per-user will just do it for one user.11:37
Mithrandirmost of the code will be shared, so that shouldn't be a problem.11:38
Kamionmdz: (oh, note that if there's only one sane country to pick for that language, then the country question will already be skipped; try e.g. Greek)11:45
mdzKamion: oh, ok11:46
Kamionwell, s/skipped/asked at medium priority/11:47
mdzKamion: do we use 'high' now, or still 'critical' by default?11:51
Kamionhigh11:51
Kamionfixed some automatic install issues that way11:51
Kamionmdz: oh, did you see http://people.ubuntu.com/~cjwatson/kickstart.png?11:52
mdzI was thinking that casper's needs probably correspond fairly closely to what I imagine 'critical' ought to be11:52
Kamionmdz: yes, very possibly indeed11:52
mdzre: kickstart.png, no, I hadn't11:52
Kamionalthough critical is kind of intended to be used in conjunction with a tuned preseed file, at the moment11:52
mdzis that a modified version of RH's kickstart tool?11:53
Kamionyep11:53
Kamiongetting there; should have *something* in by feature freeze11:53
Kamionthough not everything will work yet in that timeframe11:53
mdzspeaking of which, could you make a quick pass over HoaryGoals and make any appropriate status updates for your items?11:53
Kamionthen I have a piece that sits in the initrd, reads kickstart files, and sets the corresponding debconf questions11:54
Kamionah, yes, been meaning to do that11:54
mdzso the output from that tool is a kickstart file, which will be read by some kickstart-aware d-i component and used to provide answers to debconf questions?11:54
Kamionright11:54
mdzneat11:55
mdzwhat's the normal way to provide the file?11:55
Kamionshould I take myself off the UTF-8 goal, or leave myself there as documentation?11:55
mdz(the latter)11:55
Kamionvarious, you boot with ks=<stuff>11:55
mdzthe documentation team guys will be going through that list at some point to write up the release notes11:55
Kamionpretty much the same modes of operation as preseed11:56
mdzand they'll want to contact people for more information11:56
Kamionthere will be a small amount of suckage with regard to things that run before hardware detection; I'm not sure if I'll be able to fix those or whether we'll just have to tell people to add some extra bootloader options for hoary11:56
mdzah, hmm11:57
mdzlanguage/location/keyboard fall into that category, right?11:57
Kamionyeah11:57
Kamionpreseed has the same problem, so it's not new11:58
Kamionanaconda basically runs appropriate hardware detection early in kickstart mode11:58
Kamionwhich is not necessarily infeasible in d-i, if you accept some messages being untranslated; I haven't tried it out though11:58
=== Nuak [~Nuak@80-29-39-6.adsl.nuria.telefonica-data.net] has joined #ubuntu-devel
Nuakhi all12:00
Nuaki want to collaborate in the rosetta project12:00
Nuaktranslating into spanish12:00
Kamionmdz: HoaryGoals updated12:01
Nuakdo you know where i can register myself into the rosetta project?12:01
mdzNuak: there is a channel specifically for Rosetta questions/discussion, #rosetta12:01

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