/srv/irclogs.ubuntu.com/2008/08/30/#ubuntu-devel.txt

=== Kopfgeldjaeger is now known as Kopfi|offline
Peakerhey, how come building python package from source runs its unit tests like 5-6 times (or more)?  why run them at all, and then why re-run them?00:31
azeem"why run them at all?"00:32
azeemwas that a serious question?00:32
Peakeryeah - why run the unit tests as part of the build of the package?  they were run by those who distributed the source in that form00:36
Peakermost sources don't have a UT to run when building the package...00:37
azeemdo you consider this a feature?00:37
slangasekchanges to build environments can (and do) introduce regressions.00:37
azeemPeaker: the point of unit tests is testing the binaries00:37
PeakerI think its for testing the source00:38
Peakerthe binaries will correspond to the source anyway, we have compilers we trust :)00:38
azeemPeaker: welcome to the real world00:38
keesPeaker: it's testing him in shared library form, static library form, maybe in other build ways00:39
azeemalso, welcome to different architectures, etc.00:39
Peakerkees: does it ever get differing results ?00:39
keesPeaker: yup00:39
Peakeris there any way to cancel the unit tests?00:39
azeemexport DEB_BUILD_OPTIONS=nocheck00:40
azeemmight help00:40
Peakerthanks00:40
azeemwell, not cancel, but disable00:42
slangasekkees: hmm, do you know of any toolchain behavior changes between hardy and intrepid, that wouldn't show up as added CFLAGS?00:42
keesslangasek: there was a lot of changes between gcc 4.2 and 4.3.00:43
keesslangasek: 4.3 is MUCH pickier about C++ stuff especially.00:43
slangasekbut no deliberate behavior changes on C code, that you know of?00:43
slangasekI'm trying to debug the milestoned sysklogd bug00:43
slangasekI think, but haven't yet proven, that klogd is failing to call its internal openlog() implementation, the one that supports LOG_KERN00:44
keesslangasek: I'm personally not aware of anything that wouldn't yell loudly duriung compile.  (4.3 is more strict about builtins)00:44
slangasekbut then when I've proven that, I'm still not sure *why* it's doing this00:44
kees(gah, 2.6.27 keeps io deadlocking on me...)00:45
kees(but only until I switch tasks or something hmpf)00:45
keesslangasek: which bug #?00:45
slangasekkees: bug #25563500:45
ubottuLaunchpad bug 255635 in sysklogd "Kernel messages not logged to /var/log/kern.log" [High,Triaged] https://launchpad.net/bugs/25563500:45
slangasekbuild the same source on hardy, it works fine00:45
slangasek(expected, the source hasn't changed much)00:45
keeswait, built with the intrepid toolchain?00:46
keesoh you meant build on hardy with intrepid source00:46
slangasekyes00:46
keeshave you tried compiling with -U_FORTIFY_SOURCE ?00:46
kees(on intrepid)00:47
slangaseknot yet00:47
keesbut I confirm -- my kern.log is empty.  :)00:47
keesbut it is getting into my messages file00:48
keesI do see some warnings from fortify, but nothing that would seem to indicate this kind of magic.  http://launchpadlibrarian.net/16992758/buildlog_ubuntu-intrepid-i386.sysklogd_1.5-2ubuntu5_FULLYBUILT.txt.gz00:51
keesslangasek: *sigh*00:53
slangasek?00:53
keesCFLAGS aren't imported by upstream00:53
kees        ${CC} ${SKFLAGS} ${SYSLOGD_FLAGS} $(DEB) -c syslogd.c00:54
slangasekI know; how does that /break/ the build? :)00:54
keesSKFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce00:54
keesno, but it's frustrating my attempts at -U_FORTIFY_SOURCE00:54
keesand I love the use of RPM_OPT_FLAGS00:54
azeem-DSYSV FTW00:54
slangasekwe could always fix this bug by replacing sysklogd with rsyslog00:55
wgrantI would have thought we would be doing that anyway.00:56
keesAug 29 16:56:28 gorgon klogd: Kernel log daemon terminating.00:56
keesAug 29 16:56:30 gorgon kernel: Inspecting /boot/System.map-2.6.27-2-generic00:56
keessomehow, it is fortify.00:57
slangasekare you sure it's not glibc?00:57
slangasekbecause my money is on glibc00:57
keeswell, fortify is all implemented in glibc, so yeah, I'd bet it's a bug in glibc too, but cramming -U_FORTIFY_SOURCE does fix the behavior.00:57
slangasekwell, except that I can't find any evidence of this in the glibc headers :)00:57
slangasekheh, ok00:58
* kees wonders if there is a macro for openlog that causes the first arg to be ignored and replaced with argv[0]00:58
keeshm, guess not.  wtf01:01
slangasekno, but if I edit the syslog.c source to add a printf() to openlog, it only shows up if I build syslog.c with hardy01:02
* kees scratches his head01:03
slangasekno, I take that back01:03
slangasekI'm just confused because the printf() is dumped to syslog, and buffered very oddly such that it shows up at the end :)01:03
=== nxvl_ is now known as nxvl
keesslangasek: freaky -- it _is_ calling it with "kernel" as the arg (says the disassembly)01:08
keesslangasek: is it something else that causes it to direct stuff from klogd into kern.log?  if I juse use "logger -t kernel" it all goes into messages too.01:12
slangasekkees: logger -t kernel uses the glibc openlog() implementation01:12
slangasekwhich doesn't permit LOG_KERN01:13
keeswhat is klogd.c using?01:13
slangasek(it selects by facility anyway, so even if glibc let you, you would have to use logger -p kern.foo)01:13
slangasekit uses the openlog() implementation in syslog.c01:13
keesah-ha01:14
slangasekso, recompiling just klogd.c on hardy fixes it01:15
keesslangasek: yup, -U_FORTIFY_SOURCE only klogd.o fixes it for me too.  wtf.01:17
Peakerits taking hours to build the python package, arrg01:18
slangasekPeaker: so the question we've jumped right over, why are you rebuilding the python package?01:21
Peakerslangasek: I thought it would be a quick way to test a source-level change I was contemplating01:21
Peakera bug that has been annoying me for more than a year now, I think01:22
slangasekah, well, good reason :)01:23
azeemPeaker: so a bug that annoyed your for more than a year is not worth several hours of unattended cpu cycles?01:23
azeemyou*01:23
Peakerazeem: it makes the debug/test cycle quite a long one01:23
Peakerand its unnecessary :P01:23
azeemPeaker: you don't need to start over each time I assume01:23
slangasekwell, yes; in that case, call ./debian/rules build, and don't bother moving things into packages after each test cycle?01:24
slangaseks/after/for/01:24
keesPeaker: did DEB_BUILD_OPTIONS=nocheck debuild ....  not work?01:24
slangasekassuming that debian/rules build isn't the part that's getting stuck in the testsuite, that is01:24
Peakerslangasek: does that avoid running the unit tests like DEB_BUILD_OPTIONS=nocheck does? or is that env-var still necessary?01:24
Peakerkees: I haven't tried yet - I thought it would be wiser to let it finish building (I am not sure whether that was the right thing)01:24
azeemPeaker: check debian/rules01:25
slangasekyou would still want to set that var, to be safe01:25
slangasekor check, yes01:25
azeemdepends on whether they are run by build or binary01:25
keesslangasek: fortify_source appears to be redirecting the syslog calls away from syslog.o01:25
kees+                 U __syslog_chk@@GLIBC_2.401:26
kees+                 U __vfprintf_chk@@GLIBC_2.3.401:26
kees                  U __vsprintf_chk@@GLIBC_2.3.401:26
kees+                 U __vsyslog_chk@@GLIBC_2.401:26
slangasekahh01:28
keesat least, that's my guess01:28
slangasekdoh, I was staring so hard at openlog, I didn't think to look at syslog01:28
slangasekyes, that stands to reason01:28
keesslangasek: shall I upload it with that fixed?01:30
slangasekjust adding -U_FORTIFY_SOURCE for klogd.o?01:31
keesyup.01:31
slangasekyeah, go for it01:31
keesdonions01:35
slangasekthanks01:35
keessorry for the glitch.  I blame everything on fortify_source first.  ;)01:36
slangasekheh01:36
slangasekthing was, I /knew/ about syslog_chk because I'd seen it in objdumps, and didn't think to look for a local syslog() implementation to go with the openlog one... :)01:36
keesyeah, kind of a twisted source, klogd.  :P01:38
keesnow if only I could fix firefox to run with fortify_source....01:40
* slangasek grins01:40
wgrantAw, who changed "Yes, do as I say" to "I am aware that this is a very bad idea"?02:42
NCommanderMorning (or evening) wgrant03:53
wgrantNCommander: Early afternoon, NCommander.04:10
NCommanderwgrant, I'm timezone challenged ;-)04:11
NCommanderwgrant, can I call on you to sponsor a FTBFS fix?04:19
slangasekwgrant: hmm, in apt-get ?04:36
wgrantslangasek: Yes.04:38
slangasekaww04:38
wgrantNCommander: Perhaps; depends how big it is. I'm mildly busy at the moment.04:39
NCommanderwgrant, relatively small debdiff, maybe 30 lines04:39
wgrantI'd recommend going through the usual u-u-s mechanism.04:39
* NCommander will wait then04:40
NCommanderhttps://bugs.edge.launchpad.net/ubuntu/+source/alsaplayer/+bug/26258104:40
ubottuLaunchpad bug 262581 in alsaplayer "FTBFS fix for alsaplayer" [Undecided,New]04:40
AwsoonnIs there a better place to talk about intrepid?04:42
Awsoonnare there any known issues wiht the latest intrepid kernel and the nvidia drivers?04:46
wgrantA friend of mine had to remove and reinstall nvidia-177 to get it working.04:46
wgrantBut it apparently does work.04:46
Awsoonnwgrant: any logs or other data i should grab before doing that?04:46
Awsoonnthing that might be usefull to whoever works on that.. bryce maybe?04:47
wgrantThat's probably tseliot's domain.04:47
* Awsoonn wonders if he's around04:48
NCommanderwgrant, could you reset the build records on postfix on all architectures? Soyuz goofed and marked it failed vs. dep-wait.04:56
wgrantThat sounds mainish.04:57
wgrantI'm not a core-dev.04:57
NCommanderI thought you were04:57
* NCommander hides04:57
NCommanderScottK, are you around?05:00
ScottKBreifly05:00
ScottKBriefly even05:00
NCommanderCan I ask you to retry a build on Postfix?05:00
NCommander(soyuz failed to mark it dep-wait and failed it instead)05:01
ScottKIs mysql fixed?05:01
NCommanderyeah05:01
NCommanderI'm going through the build failure logs trying to find the ones that are dep-waits that are resolved vs. actual failures05:01
ScottKSure.  I'll try one arch and we'll see what happens.05:01
NCommanderGot to get that FTBFS count down ;-)05:01
* NCommander wants zero FTBFS if possible ;-)05:02
ScottKQueued for retry.05:02
ScottKI did amd6405:02
NCommanderTHanks Scott05:02
* NCommander continues working on FTBFS fixes05:02
NCommanderScottK, can you reset the build record on amarok-kde4 on sparc? It bombed with Bus Failure, so it seems that is a transient failure05:08
NCommanderhola LucidFox05:09
ScottKPostfix worked.  Let me do the other archs fist.  Please give me a link for amarok-kde405:10
NCommanderScottK, http://launchpadlibrarian.net/16999884/buildlog_ubuntu-intrepid-sparc.amarok-kde4_1.90-0ubuntu1_FAILEDTOBUILD.txt.gz05:10
NCommanderIdeally, I'd like to resolve every single FTBFS in main :-)05:10
ScottKNCommander: I need the package page, not the build log.05:11
NCommanderoh, d'oh05:11
NCommanderScottK, https://edge.launchpad.net/ubuntu/+source/amarok-kde405:11
* ScottK loks05:12
ScottKlooks05:12
ScottKWhat about hppa?05:12
NCommanderAlso, kde4bindings is another misidentified dep-wait, which was cleared (dep-wait python-qt4)05:12
NCommanderI keep the hppa tab hidden on qa's page05:13
NCommanderhold on05:13
NCommanderHPPA should be dep-wait, I'm not sure all the dependencies are in place05:13
ScottKNCommander: If it's depwait and not FTBFS it'll take care of itself in time.05:13
NCommanderit does?05:13
NCommanderWait05:14
NCommanderNo, it should be dep-wait05:14
NCommanderbut its not05:14
ScottKSure.  Depwait will undepwait and build in turn.05:14
ScottKhppa was FTBFS.05:14
NCommanderLooking at the log, its dep-wait05:14
NCommanderOr it should be05:14
NCommanderIt failed because not all its build-deps were installable05:14
ScottKYes.  I wonder about that, but that's how it works.05:14
ScottKbuild-deps missing or insufficient version you get depwait.  Not installable, you get FTBFS.05:15
NCommanderIt's a limitation in sbuild05:15
ScottKI don't understand why we would want that.05:15
NCommanderWhich I think is due to a limitation in apt-get05:15
* ScottK wonders if there's already a bug in soyuz on that.05:16
NCommanderWell, I'm asking cprov, because I know where changes have to be made in both apt-get, and sbuild to trigger the correct behavior05:16
wgrantThere's been a bug about it for some time.05:16
NCommanderFrom the way I understand it, the dep-wait status is triggered by sbuild's return code05:17
NCommanderI guess log-parsing determines what should be dep-waited on05:17
wgrantBug #16043905:20
ubottuLaunchpad bug 160439 in launchpad-buildd "Some builds fail when they should depwait" [Medium,Triaged] https://launchpad.net/bugs/16043905:20
ScottKFixing that would be high on my soyuz list.05:20
NCommanderYup05:20
ScottKIf, of course, I'd been asked for a soyuz input.05:20
NCommanderWhat's MANUALDEPWAIT05:20
NCommanderI assume that means the build is just randomly retried vs waiting for a specific dependency05:20
wgrantNCommander: I don't know why the MANUAL bit is there.05:22
wgrantIt's automatically retried when the missing build-depends appear.05:22
NCommanderWell, I know on Debian dep-wait is a status we, as buildd-maintainers have to set packages to automatically05:22
NCommanderI assume SOyuz is smart enough to determine proper dep-waits05:22
wgrantCorrect.05:22
NCommanderScottK, https://edge.launchpad.net/ubuntu/+source/pigment - care running this one on amd64?05:23
NCommander(a lot of these FTBFS are dep-wait mistakes)05:23
ScottKYes.  To get kde3.5.10 to build it took a LOT of retries due to this problem.05:24
NCommanderkdeutils also needs it on all archs expect HPPA05:24
NCommanderScottK, https://edge.launchpad.net/ubuntu/intrepid/+source/kvkbd/0.5.99-0ubuntu1 - here too05:26
NCommanderugh, your kidding, logwatch is still broken05:27
ScottKNCommander: Done.  I'm off to bed.05:28
NCommanderThanks05:29
moquistmy package (moodle) depends on moodle-postgres | moodle-mysql, and I'm writing separate postinst scripts for moodle, moodle-postgres, and moodle-mysql, which come from the same src pkg. moodle.postinst creates a config file that differs depending on whether moodle-postgres or moodle-mysql is installed.06:25
moquistI don't know how I can (appropriately, non-hackishly) known in moodle.postinst which database is being used, without asking the user (which is an extra question that the user might get wrong, anyway).06:26
moquistslangasek: I'm not going to put something in debconf that I can look up later, but that's the best way I can think to do this. :\06:26
moquist...or I could try to be clever and detect which database has been created...but that seems ridiculously over-complicated and error-prone.06:27
=== ethan is now known as Eleaf
moquistogra: ping06:41
Eleafpong06:47
slangasekmoquist: you might want to look into wwwconfig-common07:38
moquistthis is in main; wwwconfig-common isn't allowed IIRC07:40
moquistslangasek: I'm in the process of implmenting this using shared/moodle/db_<param>, and db_setting shared/moodle/db_server in moodle-<dbtype>.config...should I just stop now? :\07:41
slangasekwwwconfig-common isn't currently present in main; that doesn't mean that it's better to reinvent the wheel if a solution exists that could be pulled in to main07:42
slangasekI don't know if wwwconfig-common is considered unsuitable for main for some reason, but I think it's worth investigating07:42
moquistslangasek: it is.07:43
slangasekit is what? unsuitable for main?07:43
moquistslangasek: the whole reason I ever touched this package in the first place was to get rid of the dep on wwwconfig-common (in gutsy days)07:43
moquistyeah, unsuitable for main07:43
slangasekhrm07:43
slangasekwhy is it unsuitable?07:43
moquistI don't know that.07:43
moquistogra might know more details; he got me started07:45
moquistslangasek: I'll just finish what I'm doing and post it for review. at least I'll learn something from this, even if I end up undoing things.07:46
=== Kopfi|offline is now known as Kopfgeldjaeger
NCommanderIs there anyone who can retry universe builds for me?12:06
NCommanderRiddell, ping?12:27
Riddellhi NCommander12:47
NCommanderRiddell, could you retry kdebindings? I've been running down FTBFS all morning, that one is a dep-wait misidentified as a failure :-)12:48
Riddellwhat's that script called for retrying?12:50
NCommanderbuildd12:51
NCommanderALso dovecot if I can get main retrys out of you12:51
NCommander(I've sorta been torturing MOTU for the universe all morning ;-))12:51
RiddellNCommander: done12:53
NCommanderRiddell, thank you12:53
* NCommander hates transient failures12:53
NCommanderRainCT, as an aside, your update maintainer script broke on updating the changelog in intrepid12:57
RainCTNCommander: uhm.. here it works. which error did you get? (and it's not mine, although I may have contributed to it)13:02
NCommanderno error13:02
NCommanderRainCT, its your name in the man file13:02
NCommanderJust no changelog entry13:03
RainCTNCommander: "and this *manual page* by Siegfried"13:03
NCommanderwhoops13:03
* NCommander slinks away13:03
=== ryu2 is now known as ryu
RainCTNCommander: and it doesn't add the changelog entry anymore. that was discussed in ubuntu-motu@ and it was decided(?) that it isn't necessary anymore to document that in the changelog file13:05
NCommanderoh13:05
NCommanderbah13:05
NCommanderOk13:05
NCommanderStupid question, what preprocessor symbol is defined on Linux13:05
=== _gAri- is now known as gAri-
=== asac_ is now known as asac
NCommanderRiddell, you'll be happy to know that with the exception of lpia (and dep-wait on hppa), it appears kdebindings4 now properly builds on at least amd64/i38613:45
Riddellyay13:46
NCommanderRiddell, I'm working on resolving the FTBFS on koffice, which appears to be longstanding13:46
* NCommander is going to try and get the FTBFS count on amd64/i486 to under 20, and the other architectures to be under 50 within universe (and main if any are still left there)13:51
NCommanderRiddell, BTW, where can I file bugs for changes to P-a-s?13:57
geserNCommander: see the comment in P-a-s who to contact13:59
NCommanderI saw that14:01
NCommanderThere is no Ubuntu specific P-a-s, is there14:01
NCommanderMostly cause I can't see ubuntu specific packages getting in there like linux-lpia14:01
RiddellP-a-s?14:01
NCommanderPackages-arch-specific14:02
NCommanderIt tells the buildds what not to build.14:02
geserNCommander: no, Debian and Ubuntu share a common P-a-s14:02
NCommanderbah14:02
crevettehello14:24
crevetteis a Feature freeze request is necessary for package in universe ?14:25
azeemuniverse is handled in #ubuntu-motu I believe14:26
crevetteI would like to request a sync for nemiver14:26
crevetteokay14:26
crevettethanks14:26
NCommanderRiddell, do you know where I can download buildd chroots? I'm going to try and squash the SCons + buildd issue14:26
=== Pici`__ is now known as Pici
=== bddebian2 is now known as bddebian
asactjaalton: libGL error: dlopen /usr/lib/dri/r300_dri.so failed (/usr/lib/dri/r300_dri.so: undefined symbol: _glapi_tls_Context)15:12
asactjaalton: (me trying X1950 with ati -> direct rendering: no)15:12
asactjaalton: doest it mean we have the wrong version of something?15:13
jcristauasac: it means you have incompatible versions of the dri driver and libGL or X15:23
asacjcristau: ok. so why do i get that in intrepid atM?15:24
asacis there an upload pending?15:25
jcristauyou shouldn't get that15:27
asacbut i do ;)15:27
jcristaulibGL.so.1 and /usr/lib/xorg/modules/extensions/libglx.so should export _glapi_tls_Context15:27
jcristauunless you've replaced one of them with the fglrx version, or something15:28
asacok ... lets check if that is diverted15:28
asaccool15:29
asacat least i had it installed ... which explains it i guess15:29
asacjcristau: no success15:39
asacstill the same thing15:39
jcristauasac: something's wrong, then :)15:47
asacjcristau:  nm -D /usr/lib/xorg/modules/extensions/libglx.so |grep tls15:53
asac0000000000000008 B _glapi_tls_Context15:53
asac0000000000000000 D _glapi_tls_Dispatch15:53
asacok i think i have an idea15:56
asacjcristau: ok i had clutter in /usr/lib/xorg/16:00
asacthx16:00
=== _jason is now known as jrib
=== Kopfgeldjaeger is now known as Kopfi|offline
=== Kopfi|offline is now known as Kopfgeldjaeger
keesasac, fta: I think I found the problems with xulrunner/firefox's misuse of realpath() (it wasn't setting MAXPATHLEN correctly)  I've got the debdiffs in bug #263014 that fix it for me (I can run and use firefox with FORTIFY_SOURCE enabled).  Can you review it and let me know it qualifies for upload?17:08
ubottuLaunchpad bug 263014 in xulrunner-1.9 "fails to run when built with FORTIFY_SOURCE" [Undecided,New] https://launchpad.net/bugs/26301417:08
ftakees, we have a patch in upstream bugzilla for a while17:09
ftahold on, let me check17:09
ftamozilla bug 41261017:10
ubottuMozilla bug 412610 in Startup and Profile System "MAXPATHLEN too small for glibc's realpath()" [Normal,New] http://bugzilla.mozilla.org/show_bug.cgi?id=41261017:10
azeemuh17:10
azeemglibc's realpath() can deal without MAXPATHLEN, no?17:11
ftakees, i expected this upstream patch to be committed long ago, that why i didn't use the patch. then i forgot about it :P17:12
ftabut upstream is not sure about the best approach17:13
ftakees, btw, it's more widespread than you debdiff, there are several places where this MAXPATHLEN is needed.17:13
ftayouR17:13
fta(and also several packages)17:14
=== ryu2 is now known as ryu
=== Awsoonn_ is now known as Awsonn
=== Awsonn is now known as Awsoonn
keesfta: ah, yeah, the upstream RH patch looks more complete -- can we use that?  I'd really like to actually fix the root causes since they are real issues.18:10
keesfta: actually, the last patch looks very close to mine: https://bugzilla.mozilla.org/attachment.cgi?id=33536918:10
ftakees, sure, I will grab the patch and merge it.18:10
keesfta: and please revert the -U_FORTI...18:11
ftayes18:11
* kees hugs fta18:12
fta:)18:15
keesfta: did you report the "cvs" problem too?  I can't find any notes on FORTIFY in "cvs" or "mozilla-devscripts".18:16
ftai didn't, just in the wiki. it seems the problem disappeared since.18:17
keesah, very good.  I will drop it from the wiki for now then.18:18
ftatseliot, this bug 259808 is killing me. Seems i'm not alone to have issues with 177.7018:25
ubottuLaunchpad bug 259808 in xorg-server "X Lockup in Intrepid (infinite loop)" [Undecided,Confirmed] https://launchpad.net/bugs/25980818:25
keesfta: shall I assign you to 263014?18:26
ftakees, yes please18:26
keesfta: cool, done18:26
tseliotfta: can you try with kernel 2.6.26 +177.70 and see if it solves the problem? If it doesn't you should report the problem to NVIDIA18:28
tseliotactually, either way you should report to nvidia: http://www.nvnews.net/vbulletin/forumdisplay.php?f=1418:30
ftatseliot, reported to nvidia.18:52
tseliotfta: great, I hope they fix it before they release the driver as stable18:53
ftatseliot, could I use 177.68 with 2.6.27-2 ?18:56
tseliotfta: yes, sure18:57
=== DrKranz is now known as DktrKranz
=== dwatson is now known as davewatson
ftatseliot, it doesn't make any sense: I tried all variations of kernel 2.6.26-5 / 2.6.27-2 and nvidia 173.14.12 / 177.70, Xorg locks with mplayer/xv (not to mention corrupted consoles, corrupted display, corrupted boot splash, dead keyboard/mouse when gdm is doing autologin) Yet, i only started to see those X locks today with 2.6.27-2 & 177.70.. now it's everywhere. It has to be something else.21:31
leszekhi21:34
leszekwhere can I found the config / python file  where the default filesystem is set by ubiquity / partman !?21:35
leszekis it in /home/leszek/Downloads/live/edit/usr/lib/ubiquity/ubiquity/components/partman.py !?21:36
leszekaynone any idea on this partman default system question ?!21:38
leszekanyone awake !?21:48
jpdsleszek: http://jldugger.livejournal.com/16594.html21:51
leszek:)21:52
tseliotfta: can you try with both the "vesa" driver and the "nv" driver? Just to make sure that it's a driver problem and not hardware problem21:57
cjwatsonleszek: it's not configurable, nor is it in python; it's set in shell code in /lib/partman/free_space/50new/do_option22:09
cjwatson(in several places; it's not particularly designed to be easy to change that right now)22:09
cjwatsonleszek: p.s. don't reask your question three times in a 13-minute interval, please. It's excessive22:10
leszeksry22:10
leszekand thx ;)22:11
cjwatsonleszek: although as far as ubiquity's UI is concerned, the default for a new partition is effectively the first in numeric order in /lib/partman/valid_filesystems/, I suppose22:12
cjwatsonthat might be easier to customise22:12
leszekah ok thx22:15
=== Kmos_ is now known as Kmos
=== Kopfgeldjaeger is now known as Kopfi|offline
=== Kopfi|offline is now known as Kopfgeldjaeger
=== Kopfgeldjaeger is now known as Kopfi|offline

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