**** BEGIN LOGGING AT Wed Sep 29 02:59:57 2010 Sep 29 03:53:26 If I find a typo for instance on this page: http://apidocs.meego.com/mtf/introduction.html which git repository should I clone to fix it and send a patch ? Sep 29 03:54:07 http://meego.gitorious.org/meegotouch/meegotouch-compositor possibly? Sep 29 03:54:35 (i don't really know, tbh, that just seemed like a possibility) Sep 29 03:54:36 compository ? Sep 29 03:55:04 I do not see introduction.html anywhere. Sep 29 03:55:28 nor the search engine. Sep 29 03:55:30 http://meego.gitorious.org/meegotouch/libmeegotouch/blobs/master/doc/src/introduction.dox Sep 29 03:56:11 good enough, ty. Sep 29 04:14:41 hey guys ... does meego supports b43 wireless ? Sep 29 04:23:20 b43? Sep 29 04:28:10 microlith , sorry for delay .. b43 wireless card ..broadcom Sep 29 04:28:41 ahh Sep 29 04:28:48 device support on that level is a kernel matter Sep 29 04:29:00 and the likelihood of that went up recently Sep 29 04:29:19 likelihood ? Sep 29 04:29:35 yes, broadcom released the sources for their wifi chipsets recently, at least their newer ones Sep 29 04:29:52 so that will likely have trickle down effects on other chipsets Sep 29 04:30:10 however, that code won't be integrated until 2.6.37, and meego has settled thus far on 2.6.35 I believe Sep 29 04:30:20 and it is very much a stock kernel Sep 29 04:30:27 aha Sep 29 04:33:05 microlith , can i use meego on my notebook for development purposes ... like Java , C++ , python ? Sep 29 04:33:15 sure Sep 29 04:33:22 check the hardware requirements first though Sep 29 07:45:54 OOo is dead now Sep 29 07:46:28 well it's not but people are jumping out of the boat Sep 29 07:50:02 CosmoHill, I'm kinda relieved Sep 29 07:50:57 morning :) Sep 29 07:51:51 * CosmoHill offers johnx and niala a cup of tea / coffee Sep 29 07:53:30 CosmoHill, no thanks. time for bed soon Sep 29 07:53:55 hilariously, my company just (mostly) finished switching to openoffice late last year Sep 29 07:54:47 lol Sep 29 07:55:06 I suppose you'll switch to the replacement when it's released Sep 29 07:55:25 that code base seems kind of terrifying Sep 29 07:55:43 I'm really not sure if it will work as a community project Sep 29 07:56:14 heya johnx Sep 29 07:56:20 hey RST38h Sep 29 07:57:56 I think we have open office on the macs at uni but we also have MS 2010 and Win7 Sep 29 08:00:50 I can't help but think that abiword or koffice would be further along if Sun hadn't open sourced StarOffice Sep 29 08:02:33 Doubt it =( Sep 29 08:05:29 RST38h, or that red hat or canonical would have taken on an office suite project of their own resulting in a slightly less skeery code base Sep 29 08:11:49 what does meego use for it's office suite? Sep 29 08:31:40 salut dazo Sep 29 08:32:18 CosmoHill: Ciao Sep 29 08:32:21 CosmoHill: I'm not sure (I don't know anythingabout meego yet) but I know koffice has been working with nokia on mobile office stuff Sep 29 08:35:32 DawnFoster: ping... about setting up a team mailing list Sep 29 08:50:51 hi is meego ' media player Banshee having the support of DLNA client Sep 29 08:56:27 m looking for a media player with DLNA client support. , Does banshee support this requirement Sep 29 09:42:37 Hi all, Could someone tell me where to get kernel source for meego Sep 29 09:42:37 ? Sep 29 09:43:11 repo.meego.com , find the kernel rpm, or on meego.gitorious.org Sep 29 09:45:21 Thanks tackat. Sep 29 09:46:14 Thanks moo Sep 29 10:00:23 örrörörö Sep 29 10:04:25 Any Qt experts around? What is the right way to dump a QString in a Linux environment? qDebug() << str.toUtf8() works, but only in a simple app. Once I instantiate QApplication, the output is garbled. Sep 29 10:06:37 try qDebug() << str Sep 29 10:06:41 qPrintable(string) should do basically same thing. Sep 29 10:08:23 tomma: does not produce correct output. Sep 29 10:08:34 Very much to my suprise, I should add. Sep 29 10:09:44 #include Sep 29 10:09:44 #include Sep 29 10:09:44 int main(int argc, char **argv) Sep 29 10:09:44 { Sep 29 10:09:45 // QApplication app(argc, argv); Sep 29 10:09:45 QString summary(QString::fromUtf8("a-umlaut follows: ä")); Sep 29 10:09:46 qDebug() << summary.toUtf8().size(); Sep 29 10:09:46 qDebug() << summary; // .toUtf8(); Sep 29 10:09:47 return 0; Sep 29 10:09:47 } Sep 29 10:09:59 $ g++ /home/pohly/src/syncevolution/src/backends/kcalextended/test-qstring.cpp `pkg-config QtCore QtGui --cflags --libs` -o test && ./test Sep 29 10:09:59 20 Sep 29 10:09:59 "a-umlaut follows: �" Sep 29 10:10:21 console supports utf8 ? Sep 29 10:10:44 Yes. It works without QApplication and with qDebug() << summary.toUtf8() Sep 29 10:12:01 dont use fromUtf8 Sep 29 10:12:37 pohly, is your editor using utf8 ? Sep 29 10:12:46 are you sure this is an regular ä? not an composed character. I've seen OSX do a+" Sep 29 10:15:58 sx0n: it should use UTF-8. "cat" shows the source as expected in the same console. Sep 29 10:16:33 tomma: if I don't use fromUtf8(), then QString treats "const char *" as latin-1. Sep 29 10:18:04 pohly, i am running out of ideas, maybe they could help on qt channel. Sep 29 10:18:39 Yeah, this is getting off-topic for MeeGo. That's where I saw the issue first, but I can also reproduce it elsewhere. Sep 29 10:19:36 i personally would try with files and different editor too. Sep 29 10:21:46 pohly, http://pastebin.com/aMs9n8rh Sep 29 10:21:57 pohly: please use pastebin for large amounts of text Sep 29 10:23:12 CosmoHill: sorry, will do. Sep 29 10:24:48 tomma: so what is the "right" way of doing it? It can't be that this depends on whether a QApplication has been instantiated or not. Some library code may be completely unaware of that. Sep 29 10:25:26 pohly, maybe the qapplication reads your locale settings and fsck the output :) Sep 29 10:25:32 QApplication handles locales etc Sep 29 10:27:07 sx0n: I'm sure it does, but that still leaves the problem of writing code which works correctly without knowing whether it runs inside a QApplication. Sep 29 10:28:41 pohly, do you have use case for that? Sep 29 10:30:32 sx0n: yes, QtCore-based library code. Sep 29 10:31:44 that does obey locale settings? Sep 29 10:32:07 qbytearray does not care about locale Sep 29 10:32:11 sx0n: primarily I want qDebug() to work correctly. Sep 29 10:53:48 tomma, sx0n: the answer on #qt was that the code without QApplication (or QCoreApplication) is incorrect. Using Qt without instantiating those first has undefined behavior. Sep 29 11:00:09 DawnFoster: you around? Sep 29 11:00:22 it's fairly early over there, i'd try again in 4-5 hours Sep 29 11:14:06 7n Sep 29 11:14:14 oops Sep 29 11:15:26 * CosmoHill growls at VMware Workstaion Sep 29 11:33:12 Stskeeps: Good grief, yesterday's image feels even slower than before. Including responsiveness and lag of rotating the home screen. Known/accepted/expected? Sep 29 11:36:48 Jaffa: first boot is always a bit slow the first few minutes Sep 29 11:37:14 Stskeeps: OK. I'll bear with it. Sep 29 11:37:19 Just made a phone call though, that was cool Sep 29 11:37:20 what class microsd? Sep 29 11:37:44 Stskeeps: 4 or 6 *I think*. Anyway to tell from dmesg? Sep 29 11:37:48 k Sep 29 11:37:49 not afai Sep 29 11:37:50 k Sep 29 11:38:09 * Jaffa wonders why MTF lets the account setup page, in portrait mode, scroll & bounce. It feels... odd. Sep 29 11:38:46 Accelerometers now feel as unreliable as they do on Maemo Sep 29 11:39:01 * slaine notes he's running out of time to get his skunkworx project ready for conference2010 Sep 29 11:52:20 hello all Sep 29 11:52:28 I am a C, C++ developper Sep 29 11:52:35 and have xp in qt dev Sep 29 11:52:44 with 7 years of xp Sep 29 11:53:08 Does meego (or intel or nokia) sponsorize dev to code for meego ptf ? Sep 29 11:53:51 well, they hire people. Sep 29 11:53:52 :P Sep 29 11:54:25 Stskeeps: for teleworking ? :) Sep 29 11:54:44 well, not directly, but through subcontractors Sep 29 11:54:47 * Stskeeps teleworks, personally Sep 29 11:54:54 Stskeeps: t'es francais ? Sep 29 11:54:55 :) Sep 29 11:54:58 no, thank god Sep 29 11:55:11 hehehe Sep 29 11:55:17 :) Sep 29 11:55:22 I have chrome running on meego in twm :) Sep 29 11:55:37 meego has twm? Sep 29 11:55:45 (as in window manager?) Sep 29 11:55:45 Stskeeps: and who are these subcontractors ? :) Sep 29 11:55:53 mon67: i'd recommend you to look for meego jobs Sep 29 11:55:54 i think that's what it's called. in init3 if you run "startx" Sep 29 11:55:55 plenty out there Sep 29 11:56:10 wow :) Sep 29 11:56:31 I thought twm died sometime in the late 1990's... Sep 29 11:57:10 twm is ok for minimal things. they only thing that sucks is that you have to click to make a window appear... Sep 29 11:57:51 kristian_m: http://black-flag.co.uk/files/meego-twm.png Sep 29 11:58:33 amazing! Sep 29 11:59:31 Stskeeps: meego jobs , url ? Sep 29 11:59:57 mon67: forums.meego.com has some posted once in a while Sep 29 12:00:02 and linkedin.com meego group Sep 29 12:00:12 thanks Sep 29 12:16:33 I wonder if chrome will work under a non SSSE3 computer Sep 29 12:26:42 connman, zypper and yum - how they differ, in principle? why is not only one project manager.. Sep 29 12:27:38 project manager = package manager* Sep 29 12:27:52 yum will not be available from Meego 1.1 and later Sep 29 12:27:55 connman is not package manager -> Connection Manager Sep 29 12:28:24 * kedz uses connman in ubuntu for wifi... Sep 29 12:29:02 oh, it's more clear :) thanks Sep 29 12:30:25 kedz, but we can use connman like package manager to install/remove/update.. or not?) Sep 29 12:32:01 spurvewt, zypper info connman : Sep 29 12:32:02 Description: Sep 29 12:32:02 Connection Manager provides a daemon for managing Internet connections Sep 29 12:32:02 within embedded devices running the Linux operating system. Sep 29 12:35:36 kedz, more time sorry, i mean PackageKit.. but don't know i why wrote connman.. :/ Sep 29 12:50:22 what;s the cheapest phone capable of running meego? Sep 29 12:50:50 n900? Sep 29 12:50:50 :P Sep 29 12:51:37 damn, that costs money Sep 29 12:51:54 everything costs money in the end Sep 29 12:51:55 :P Sep 29 12:52:28 lbt: you still around? Sep 29 12:52:44 morn DawnFoster Sep 29 12:52:46 * CosmoHill is a scavenger Sep 29 12:52:56 morning Stskeeps Sep 29 12:53:24 afternoon DawnFoster Sep 29 12:55:24 sjokkis: *poke* Sep 29 12:56:05 it boots! Sep 29 12:56:21 it doesn't! Sep 29 12:56:49 does n8 run meego? :) Sep 29 12:56:55 no, symbian Sep 29 12:57:23 Devil OS - Powered by the souls of the dammed. Sep 29 12:57:24 Stskeeps: in answer to your question yesterday, I'm now about 90% sure that we're canceling the TSG this week. Sep 29 12:57:32 working on confirming it now. Sep 29 12:57:45 DawnFoster: :nod: Sep 29 12:57:49 n8 is actually ok but i was thinking would it be possible to flash. Sep 29 12:58:08 DawnFoster: means i can either 1) go out for a movie or 2) spend my evening debugging fennec, yay : Sep 29 12:58:09 but i forget my suspicious plans. Sep 29 12:58:11 :) Sep 29 12:58:30 Stskeeps: interesting combo of choices :) Sep 29 13:00:40 morning DawnFoster Sep 29 13:00:48 morning slaine Sep 29 13:01:26 oh bugger me, there's no /etc/inittab Sep 29 13:08:58 DawnFoster: hi... I sent an email :) Sep 29 13:14:08 what's the name of the console used by meego? Sep 29 13:28:25 you know if you use chromium-brower and gnome-terminal from twm in meego you have a decent LFS build system Sep 29 13:31:25 So, where did the spec discussion ever end up? Sep 29 13:32:42 GAN900: "a trainwreck" is a fairly good description Sep 29 13:33:32 w00t_, yeah, but does that mean they're just going to go ahead steaming on with their spec proposal despite the discussion? Sep 29 13:33:39 GAN900: probably Sep 29 13:33:59 at least, I didn't see any willingness to consider alternative positions Sep 29 13:35:50 i still think both sides had their challenges Sep 29 13:36:13 there was no proper solutions how to in fact deal with testing for compliance with 3rd party deps Sep 29 13:37:14 and calling that massive thread being ignored is probably not fair either Sep 29 13:37:25 lbt: hmmm, haven't gotten through all my email, but not seeing one from you - I might find it later Sep 29 13:37:49 lbt: FYI - process for requesting a new list: http://wiki.meego.com/Mailing_list_guidelines#Requesting_a_New_Mailing_List Sep 29 13:38:13 meego-infrastructure-tools team ... we would like to share meego-distribution-tools@lists.meego.com Sep 29 13:38:28 so I sent you a mail, cc the list and all my team members Sep 29 13:38:48 I hadn't seen that ml when I first pinged you Sep 29 13:38:50 ah, ok Sep 29 13:39:02 Stskeeps, you have to enter into a discussion willing to shifting your position (at least on somw points). Sep 29 13:39:03 we'll have to check with Yi & Anas Sep 29 13:39:33 That discussion came pre-entrenched (we have lots of experience with this from Maemo). Sep 29 13:39:44 Stskeeps: GAN900: lets be realistic, this isn't about quality control, it's about market control Sep 29 13:39:47 GAN900: and a lot of non-understanding of the issue Sep 29 13:40:05 So wasn't much of a discussion, and wasn't worth having if it's a pre-determined thing. Sep 29 13:40:13 berndhs: there's no benefit to not having 3rd party deps for commercial deployers, so let's keep this out of it.. Sep 29 13:40:18 Stskeeps: I don't think nobody said it was ignored - just that neither side wants to budge so the compromise potential is really-really small Sep 29 13:40:36 berndhs, I don't believe these things need to be dictated by the core spec. Sep 29 13:40:38 Stskeeps: why keep it out of it if that is the main point Sep 29 13:40:39 achipa: from a completely objective pov, there was no good solutions to solving the 3rd party dep problem Sep 29 13:41:10 I don't think a good justification was put forward for why the spec needed to mandate that. Sep 29 13:41:18 it is about what who says what goes on the devices, the manufacturer/service provider, or the rest of the world Sep 29 13:41:20 Myrtti: sup Sep 29 13:41:35 the spec is just a tool to do that Sep 29 13:41:50 Stskeeps: there is actually no problem, unless 'choice' comes up under 'problems', which is another matter in itself Sep 29 13:41:53 Throughout the whole discussion there was a lot of ignoring of important points. Sep 29 13:42:15 berndhs, and we seem to be headed for Android style dictating. Sep 29 13:42:26 berndhs: not once has that been contested Sep 29 13:42:38 GAN900: yes that seems to be where it is headed Sep 29 13:43:02 achipa: I would love to contest it as an independent developer and as a user :) Sep 29 13:43:13 .. it's a sticker saying that 'this will install on a meego compliant device' not 'without this sticker you can never install on a meego compliant device' Sep 29 13:43:26 why do people think there's corporate conspiracies behind everything? Sep 29 13:43:27 berndhs: the question was where does ONE vendors choice become a mandate for ALL vendors Sep 29 13:43:37 Stskeeps, the thread already illustrated why that's pointless. Sep 29 13:43:46 Stskeeps: because questions are avoided Sep 29 13:44:02 and the massive issues that thinking introduces when you put control in the hands of carriers and OEMs. Sep 29 13:44:06 Stskeeps: its not a conspiracy, it is standard practice in many markets Sep 29 13:44:16 Stskeeps: I wish it was "just a sticker" .... Graham Cobb answered that with his marketing Sep 29 13:44:17 Stskeeps: no, that's not what the sticker says :) Sep 29 13:44:51 ok, so, honestly Sep 29 13:45:01 The sticker is phrased in such a way as to FUDify unstickered apps Sep 29 13:45:06 Stskeeps: the sticker says 'this SORT OF COULD install on a meego compliant device, if the vendor, architecture, profile, etc, etc don't say otherwise' Sep 29 13:45:29 achipa: why 'sort of could'? Sep 29 13:46:15 ok, but again: put yourself in a vendor's shoes: what is the benefit to restrict 3rd party deps other than meego core and eventual profile? Sep 29 13:46:30 Stskeeps: sort of - because it depends on the factors outlined above Sep 29 13:46:49 Netbook stuff isn't going to work on handset. Sep 29 13:46:59 Stskeeps: that argument goes both way, though - what is the benefit of having a compliancy program everybody ignores ? Sep 29 13:47:15 (everybody as in your developers, other stores, etc) Sep 29 13:47:30 achipa: ok, so it starts out with the trademark program, right. the ability to say X for MeeGo or whatever, right? Sep 29 13:47:52 Stskeeps: the benefit is they het to keep their business practices, and they control what their customers can do Sep 29 13:48:09 Stskeeps: and service providers are happy with controlled customers Sep 29 13:48:24 berndhs: sorry, i don't get you Sep 29 13:48:47 berndhs: totally unrelated - they can disallow compliant apps just as well, it doesn't change anything Sep 29 13:48:48 manufacturers don't like stuff they don't know running on their devices Sep 29 13:49:09 service providers don't like other services on devices they have contracts for Sep 29 13:49:28 except this has nothing to deal with compliance.. Sep 29 13:49:33 achipa: no the can't if the user can isntall anything they want Sep 29 13:49:54 berndhs: and what's that got to do with compliancy ? Sep 29 13:49:57 Stskeeps: yesit does, compliance says what can be installed and what can't Sep 29 13:50:01 berndhs: no, it doesn't Sep 29 13:50:05 berndhs: no, its doesnt Sep 29 13:50:33 it does to a large extent Sep 29 13:50:53 it says what gets a sticker. It's up to the manufacturer to decide what he/she wants to do with the sticker OR each app individually Sep 29 13:51:11 achipa: as i see the situation, the use of meego trademark for an app (for meego, etc) means conforming to app compliance. Sep 29 13:51:26 means/requires Sep 29 13:52:12 the thing is this is not about control, just *trying* to preemtpively avoid fragmentation - and not being too good at it Sep 29 13:52:26 what's hoped to be created (as a platform value) is that users can trust a platform that when there's a sticker saying "Foo for MeeGo", it -will- run on your MeeGo device Sep 29 13:52:35 sticker on an app Sep 29 13:52:42 do we have this in android apps atm? Sep 29 13:53:08 Stskeeps: this died the moment the decision for multiple profiles was made Sep 29 13:53:52 achipa: Flash for MeeGo would work on multiple profiles as it targets core. PictureTouch may only work on MeeGo handset (as indicated) Sep 29 13:54:30 Whether or not it's actually secure, usable on your UX, or not going to fill up your rootfs being a separate issue. Sep 29 13:54:51 Stskeeps: the point is, you can have a meego touch based app that is meego compliant and at the same time it being utterly useless on a meego compliant netbook device Sep 29 13:55:28 stskeeps, it's hard to get stickers that stick to software Sep 29 13:55:32 bits are so slippery Sep 29 13:55:36 it also inflates the size of non-compliant apps with duplicated libs, and puts pressure on the core lib to allow low quality libs because some big guy wants them Sep 29 13:56:06 achipa: so you're saying we shouldn't even try to bring in that platform value as it's impossible to do right? Sep 29 13:56:28 Stskeeps: to make things worse, android does have that to an extent, though mostly because they did not have the time to break enough backwards compatibility :) but they are headed for that hell certainly Sep 29 13:57:56 Stskeeps, can we do it without being obnoxious and anti-open source? Sep 29 13:58:01 berndhs: and.... it doesn't mean what it says on the tin. Sep 29 13:58:16 Stskeeps: what I'm saying is that this is fitting pants on a horse - something will have to get adapted or refocused here, either MeeGo or the definitions around it Sep 29 13:58:18 it means "works with MeeGo for sure" Sep 29 13:58:36 it says "the *only* thing that works on MeeGo" Sep 29 13:59:00 it says "if you don't have this sticker then you suck" Sep 29 13:59:11 lbt: right Sep 29 13:59:14 that's the problem Sep 29 13:59:34 lbt: where do you extract the two latter from? Sep 29 13:59:37 it says "Mr Vendor... don't trust apps without this sticker" Sep 29 13:59:39 Stskeeps: it's as if marketing dudes went out to ask android dev "whats your biggest problem" and they said fragmentation - so they made the compliancy based on that criteria Sep 29 14:00:04 ok, so how would we combat fragmentation in a open source way? Sep 29 14:00:04 :P Sep 29 14:00:08 Stskeeps: find a "Compliance" programme and look at the way people understand it to work Sep 29 14:00:27 Stskeeps: and at the same time other dudes had the task to bring as many vendors as possible, with all their profiles and interests Sep 29 14:00:36 by definition if you have things labelled compliant then things that are not labelled are not compliant Sep 29 14:00:39 Stskeeps: what do the words "not compliant" mean to most people ? Sep 29 14:00:40 what if some program needs some ux in order to work Sep 29 14:00:52 and somehow the two groups of these dudes never met Sep 29 14:00:55 lbt: admittedly, i wouldn't want to put a non-compliant app in my store as people would complain to me when it doesn't install Sep 29 14:01:07 lbt: see now you're infected Sep 29 14:01:20 not having the sticker doesn't mean it won't work Sep 29 14:01:26 i know Sep 29 14:01:38 but how do i know this in advance? Sep 29 14:01:41 "people would complain to me when it doesn't install" when, not "if" Sep 29 14:02:11 lbt, and how are you sure that everyone do things rightly ? Sep 29 14:02:12 that's what is attempted, knowing that i can install those things in advance Sep 29 14:02:22 Stskeeps: the other side of the coin is you don't know in advance which new libs and app are going to save your economic butt Sep 29 14:02:49 Khertan: technical problem Sep 29 14:02:51 berndhs: i don't disagree Sep 29 14:03:22 Stskeeps: but why are you showing people stuff they cannot install ? Sep 29 14:03:27 gah. /me thinks using "bernd" in nicknames shouldn't be allowed. Sep 29 14:03:32 There is a place for a sticker that says "minimal app - pretty safe" Sep 29 14:03:45 Aard: what's wrong with my name ? Sep 29 14:04:07 achipa: i'm not, i just said i wouldn't put non-compliant in as to save my poor telephone supporters from eventual angry calls Sep 29 14:04:10 :P Sep 29 14:04:22 berndhs: the tons of highlights I get Sep 29 14:04:34 Aard: expect me to remember a nick for myself , do you :) Sep 29 14:04:59 Stskeeps: don't forget that stores might come up with their own compliancy rules if it fits them better Sep 29 14:05:01 * lbt offers Aard a better regexp Sep 29 14:05:06 berndhs: oh, sorry, I wasn't aware of your limited mental capabilities :p Sep 29 14:05:12 which would be bad for *everyone* Sep 29 14:05:55 * Khertan didn't care about store, but just hope we can use 3rd party repository from the Application Manager, and hope that the application manager will not put stupid limitation as on maemo. Sep 29 14:05:58 i personally think we should explore how to properly allow for: first-party (platform) and second-party (developer) dependencies Sep 29 14:06:08 Stskeeps: the concept is sounds.. the phrasing sucks Sep 29 14:06:11 and third-party (sharing components) Sep 29 14:06:35 I do support the concept of "so simple it works anywhere"-app Sep 29 14:06:36 second-party components should be possible, given the installation into /opt/packagename and such. Sep 29 14:07:20 third-party, ie, a bunch of apps sharing SDL needs a solution too Sep 29 14:07:46 lbt, a url that call the web browser isn"t an application :) Sep 29 14:08:05 Stskeeps, or python or anything else Sep 29 14:08:38 (by python i mean python modules) Sep 29 14:09:01 Khertan: python modules is one of the reasons I got into this fight in the first place Sep 29 14:09:51 lbt: if you had just one second to answer: i have an app 'mer' that depends on meego platform and a theme, what conditions would you set up for testing that this will install onto a meego device and what restrictions should there be? Sep 29 14:09:56 lbt, and this is one of the reason when i didn't believe on nokia/intel/meego for my future device, when i see they are talking of c++/qt everywhere Sep 29 14:09:57 you can assume noone else uses the theme Sep 29 14:10:27 s/when/ Sep 29 14:10:27 Stskeeps: I hear ya ! Sadly, the point is it seems this stuff is largely irrelevant - the compliancy is there to push the marketing image of a unified platform (shooting itself in the foot if necessary) Sep 29 14:11:08 achipa: so qt everywhere is bullshit? ;) Sep 29 14:11:42 Stskeeps: irrelevant to compliancy - you can write a non-qt app that is compliant Sep 29 14:11:47 (silly as it is) Sep 29 14:12:15 practically all the compliant stuff right now is non-qt :) Sep 29 14:12:16 even with insane amounts of planning and forethought...the only way one can deal with these insanities, is to stumble through them... Sep 29 14:12:24 Stskeeps: I would issue an apt-get --download-only and see if it worked Sep 29 14:12:53 Stskeeps: not for a moment was there a question of whether we can find a good technical solution - the whole thing is a one sentence premise (my guess - based on feedback from Android developers) and now we're fitting the universe to it Sep 29 14:13:23 * lbt has to go .... l8r Sep 29 14:13:48 has there been anything on who eventually decides this for meego ? Sep 29 14:13:58 achipa: otoh, we can't say 'no, can't be done! unpossible!' Sep 29 14:14:36 the technical solution isn't simple, either Sep 29 14:14:43 achipa: so qt everywhere is bullshit? ;) < i think Sep 29 14:15:00 really, this is new territory, not just for us, but for Android, etc. Sep 29 14:15:02 the easiest way out is actually: only depend on the platform Sep 29 14:15:04 Stskeeps: certainly ! but that's why I sad something has to give/change. You can't keep on shoving a box through a circular hole for too long... Sep 29 14:15:05 specially the nokia vision which is c++/qt everywhere Sep 29 14:15:24 achipa: agreed Sep 29 14:16:07 achipa: another problem of this whole discussion is that people really have different understanding of terms and most importantly what's trying to be solved.. Sep 29 14:16:57 i am actually leaning towards that for 1.1, while solutions are made, the only 'sane' technical solution, given the timeframe, is 'only depend on the platform' Sep 29 14:17:47 Stskeeps: hey, that's what I said (or at least meant) when talking about the two groups of dudes who both have a good goal, but apparently fail to meet and sync :) Sep 29 14:17:52 yeah.. Sep 29 14:18:14 achipa: well, 1.1 is not the prettiest platform.. hopefully next iteration should kill the last irritating bits Sep 29 14:18:49 Stskeeps, you ll have many things to kill Sep 29 14:18:50 Hopefully without irrevocably breaking things in the long term. . . . Sep 29 14:18:58 Stskeeps: though the 'only platform' thing kills the bling appeal... Sep 29 14:19:25 achipa: i think a meego touch app could work in a netbook, though Sep 29 14:19:38 even in a tv, for what it matters Sep 29 14:19:40 there's no reason why it couldn't Sep 29 14:19:59 the discussion is how we make the difference as minimal as possible Sep 29 14:19:59 :P Sep 29 14:20:04 ? lack of pointer input ? Sep 29 14:20:12 achipa: nintendo wii ;) Sep 29 14:20:23 and still have app being usable Sep 29 14:20:29 Stskeeps: i *would* kinda put that under pointer :) Sep 29 14:21:28 multi targeted UIs in our own experience is difficult, the only thing that can really help here, is well defined human interface guidelines Sep 29 14:21:48 we already have part of the battle won, with a definitive set of user experiences to target Sep 29 14:21:55 TSCHAKeee2: if you say hildon, no suppoer for you ! :D Sep 29 14:22:22 achipa: it's not about toolkits really Sep 29 14:22:35 it's about making sure the user gets a consistent experience in line with the UX. Sep 29 14:22:39 achipa: but you're right, these people need to sit down in same room and talk Sep 29 14:22:41 TSCHAKeee2: (feeble attempt at a joke) Sep 29 14:22:47 achipa: ;) Sep 29 14:23:08 achipa: apologies, i am trying to contribute my own experience in this matter. ;) Sep 29 14:23:24 TSCHAKeee2: what's your expectations to meego as an app developer/solution maker? Sep 29 14:23:28 we have to deal with similar issues in LinuxMCE (we target a whole mess of devices.) Sep 29 14:23:31 within compliance Sep 29 14:23:59 TSCHAKeee2: agree except for the 'definitive set of user experiences', that's not definive by a long shot Sep 29 14:24:37 Stskeeps: simple, define well enough how the app should work on the different target devices, and i can make something that works on all those devices. If need be, take the UX icons you see on the web site, have a sticker that greys some of them out, if they don't work on say, IVI, etc. Sep 29 14:25:27 :nod: Sep 29 14:25:31 achipa: this is what needs to be defined and focused..not perfect..but enough so that there is rough consensus. Sep 29 14:25:55 guys, it can't be perfect, but some ground rules can be set. Sep 29 14:26:25 anyone in here have bootchart.jar ? Sep 29 14:27:12 question: are people expecting boxed software? Sep 29 14:27:19 It'd be helpful to set down all of the requirements before we start off on the discussion. Sep 29 14:27:30 or is the sticker terminology virtual Sep 29 14:27:52 virtual Sep 29 14:28:22 but I can go into pc world and browse the shelves for tonnes of software Sep 29 14:28:47 lcuk: a good question, nobody said that a store HAS to be virtual/net based Sep 29 14:29:19 http://www.splashtop.com/blog/ Sep 29 14:29:19 lcuk: as in, you could sell it on a mem card or whatever, in a box and all Sep 29 14:29:21 also would have to work out how to actually introduce said software onto the device Sep 29 14:29:25 MeeGo Handset running on OMAP4 Sep 29 14:30:04 the zoom thingy, right ? Sep 29 14:30:12 blaze Sep 29 14:33:49 yo Stskeeps Sep 29 14:33:54 moo Sep 29 14:33:55 o/ Sep 29 14:35:55 tablet: http://www.youtube.com/watch?v=PrdrBefMAEc Sep 29 14:36:51 yeah, i saw that not too long ago Sep 29 14:37:06 ooh thiago it almost manages to work at expected speed on the omap4 :P Sep 29 14:37:11 thiago: would you consider it a release blocker if handset UX can't run non-mtf apps? Sep 29 14:37:18 that's neat but I can't help but notice the annoying delay Sep 29 14:37:19 any idea why the photo viewer isnt loading thumbnails? Sep 29 14:37:37 Stskeeps: yes Sep 29 14:37:39 (time taken to load each picture appears to be scanning the full image instead of a tiny thumb) Sep 29 14:37:43 Stskeeps: but I'm biased Sep 29 14:37:52 thiago: can't run being 'show up as a white screen' Sep 29 14:37:57 Stskeeps, is tracker still wreaking havoc upon boot and generally being nasty? Sep 29 14:38:00 TomaszD: no Sep 29 14:38:07 Stskeeps: have we found out why? Sep 29 14:38:16 Stskeeps: is it the compositor? or the plainqt style? Sep 29 14:38:17 Stskeeps, so it's usable now? Sep 29 14:38:20 thiago: compositor Sep 29 14:38:24 Stskeeps: you mean that non-qt apps don't work either? Sep 29 14:38:30 thiago: yeah, xterm blanks too Sep 29 14:38:34 ouch Sep 29 14:38:39 definitely showstopper Sep 29 14:38:50 "braindead WM" Sep 29 14:39:12 thiago: i'm a little surprised by http://bugs.meego.com/show_bug.cgi?id=2953#c16 Sep 29 14:39:58 Stskeeps: sounds shortsighted to me Sep 29 14:40:10 a tad Sep 29 14:40:21 "I don't speak Finnish, therefore no one does and we don't have to support it" Sep 29 14:40:34 what's the worth of releasing a handset platform you can't run a qt app for? :P Sep 29 14:40:51 but i guess this discussion will continue Sep 29 14:42:16 so Stskeeps where can I find the latest greatest readymade image? at the codedrop? Sep 29 14:42:26 TomaszD: repo.meego.com under builds/trunk/ i think Sep 29 14:42:28 and handset Sep 29 14:42:34 thanks Sep 29 14:42:52 TomaszD: first boot isn't as hard havoc as it has been Sep 29 14:42:58 and second boots are very nice Sep 29 14:42:59 so that's what the sticky-note 'apt-get remove mcompositor' was about :S Sep 29 14:43:16 i vote for emacs aswem Sep 29 14:43:18 as wem Sep 29 14:43:20 wm Sep 29 14:43:20 :P Sep 29 14:43:22 * Stskeeps sighs Sep 29 14:43:42 twm Sep 29 14:43:55 Stskeeps: stciky keybaord? :P :) Sep 29 14:44:14 TSCHAKeee2: tired fingers Sep 29 14:44:16 you get that if you use emacs too much Sep 29 14:44:17 hmm no image here http://repo.meego.com/MeeGo/builds/trunk/daily/handset/repos/armv7l/packages/armv7l/ Sep 29 14:44:24 DawnFoster: how are we doing on that hardware queue thing? Sep 29 14:44:24 (another feeble attempt at a joke) Sep 29 14:44:49 TomaszD: no such thing as daily images, just weekly Sep 29 14:44:49 sjokkis: honestly, I just haven't had time to look into it Sep 29 14:44:57 ie, http://repo.meego.com/MeeGo/builds/trunk/1.0.90.4.20100928.1/ Sep 29 14:45:06 DawnFoster: that's okay Sep 29 14:45:16 hey, if I build some packages in my meego OBS home project (home:mairas), what's the URL for the respective repo? Sep 29 14:45:18 sjokkis: I'm guessing that we'll wait to implement it after 1.1 release at the end of Oct Sep 29 14:45:23 mairas: click 'go to repository' Sep 29 14:45:29 or somehing Sep 29 14:45:36 I do have it on my list of things to ask about today Sep 29 14:45:41 http://repo.meego.com/MeeGo/builds/trunk/1.0.90.4.20100928.1/handset/images/ google chrome thinks this page is in indonesian... Sep 29 14:45:45 at least the budget from our side anyway Sep 29 14:46:13 Stskeeps, meh... can't find Sep 29 14:46:52 Stskeeps, but that was a fast answer, anyway ;-D Sep 29 14:47:31 ahh, there it is Sep 29 14:47:32 thanks :-) Sep 29 14:53:09 * CosmoHill found this: http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/kernel/people/arjan/bootcharts/bootchart.svg Sep 29 14:55:57 thiago, that meego picture viewer, can you test it with 1500 photos Sep 29 14:56:35 infact, is meego able to read the 32gb eMMC ? Sep 29 14:56:38 hmm Sep 29 14:57:00 yes, but we don't touch it Sep 29 14:57:09 lcuk: not me Sep 29 14:57:14 I'm just linking to the video Sep 29 14:57:24 Stskeeps, so its readonly? Sep 29 14:57:28 or not visible? Sep 29 14:57:30 not visible Sep 29 14:57:33 we try to be non-destructive Sep 29 14:57:38 ie, I have not seen anything in photos other than the defaults Sep 29 14:57:41 balls Sep 29 14:57:52 i have ~2000 photos Sep 29 15:00:06 So, what are handset app devs supposed to use? Sep 29 15:00:14 in terms of? Sep 29 15:00:27 lcuk, you can mount it yourself... Sep 29 15:00:35 * thiago uses his handset as a real phone Sep 29 15:00:39 but I guess you probably already knew that Sep 29 15:00:40 but it's running maemo 6 Sep 29 15:00:46 thiago, burn Sep 29 15:01:39 I use phone, calendar and email Sep 29 15:01:45 and terminal Sep 29 15:06:39 Stskeeps, not being able to run apps on 1.1 Sep 29 15:06:57 thiago, Maemo 6 isn't a thing. :P Sep 29 15:07:25 GAN900: it is for me Sep 29 15:07:29 even though it isn't called that Sep 29 15:07:38 GAN900: think it's just a bug Sep 29 15:12:06 do last weekly release of meego supports phone? Sep 29 15:12:47 yes Sep 29 15:12:51 for n900 Sep 29 15:12:58 repo.meego.com one Sep 29 15:13:09 any screenshots? Sep 29 15:13:26 try it out yourself :) no videos or pics yet i think Sep 29 15:21:10 hi all, How I can add this repository on my neetbook repository list? http://download.obs.maemo.org/MeeGo%3a/current/standard/i586/ Sep 29 15:21:35 Stskeeps: will try it tomorrow with my other n900. i dont want to loose my system :) Sep 29 15:21:35 which url I need to use? Sep 29 15:22:13 thiago: A phone you use at home, and not in public ;-) Sep 29 15:23:46 pancake: non-destructive, dd to microsd card and load kernel with flasher over usb (not flash) Sep 29 15:24:12 Stskeeps: ah! then i can give it a try :) Sep 29 15:24:58 hey any word on how long till I can use the Handset Image with a couple of tools ? Sep 29 15:26:09 pancake: wiki.meego.com/ARM/N900/Install/MMC Sep 29 15:27:59 thanks Sep 29 15:28:25 any particular reason why the maemo OBS is being so slow? downloads keeps dying every ten minutes and going ~40KB/s Sep 29 15:30:39 Stskeeps: once running, meego has any way to take screenshots? Sep 29 15:31:09 pancake: ssh in and cp /dev/fb0 file.raw ;) Sep 29 15:31:21 i'm not sure really, we discussed it in #meego-arm earlier Sep 29 15:32:09 haha ok Sep 29 15:34:01 someone needs to make a package for scrot Sep 29 15:45:09 scrot is great Sep 29 15:46:12 No TSG meeting today Sep 29 15:46:24 We're rescheduling it - likely for Oct 6 Sep 29 15:51:37 Stskeeps: kernel panic booting the kernel from flasher-3.5 Sep 29 15:52:14 pancake: what exact command line did you use and is your back cover on? Sep 29 15:52:58 sudo dd bs=4096 if=meego-handset-armv7l-n900-1.0.90.4.20100928.1-mmcblk0p.raw.bz2 of=/dev/sdc Sep 29 15:53:19 you probably need to bunzip2 that first :) Sep 29 15:53:24 sudo flasher-3.5 -l -b -k meego-handset-armv7l-n900-1.0.90.4.20100928.1-vmlinuz-2.6.35.3-8.5-n900 Sep 29 15:53:32 and use -l -k vmlinuz -b Sep 29 15:53:48 ok Sep 29 15:54:14 my fault :P Sep 29 15:55:10 you were the 0xFFFF guy weren't you? Sep 29 15:55:23 yes Sep 29 15:55:48 :nod: then i remembered right Sep 29 15:56:17 :nod? :) Sep 29 15:56:55 To lower and raise the head quickly, as in agreement or acknowledgment. Sep 29 15:56:56 :P Sep 29 15:57:31 pancake, well actually it's not your fault, the wiki says sudo flasher-3.5 -l -b -k Sep 29 15:57:35 hehe, those advanced abstract emoticons .. :P Sep 29 15:57:42 Not anymore though :P Sep 29 15:57:45 Termana: fixed it? Sep 29 15:57:50 Stskeeps, mmm Sep 29 15:59:17 the bz2 step was just my fault, maybe this tutorial should point to the new firmware repository Sep 29 15:59:25 yeah Sep 29 15:59:36 we've just been so busy coding that we didn't get around to documentation :P Sep 29 16:00:09 i think that nitdroid guys where able to modify bootmenu to boot different kernels Sep 29 16:00:21 we intend on using u-boot instead Sep 29 16:00:30 multiboot has a fatal problem with kernels that doesn't support ubifs, like ours Sep 29 16:00:35 (waste of space) Sep 29 16:01:41 and that we have root=/dev/mmcblk0p1 Sep 29 16:01:45 instead of the internal nand Sep 29 16:03:40 yeah, i prefer uboot too Sep 29 16:03:48 i have to reboot Sep 29 16:03:54 modprobe is taking 100% cpu :) Sep 29 16:07:31 how's kexec with current Meego kernels? maybe http://www.solemnwarning.net/kexec-loader/ or something like it is an easier way to get a useful bootloader (i.e. one that can support any fs the kernels can support)? Sep 29 16:12:20 bfree: some of our drivers are really unhappy with kexec Sep 29 16:14:16 unhappy if they are loaded and then a kexec appears later? as in that case as "just a bootloader" there's probably no need for those drivers to be in the "kexec bootloader" ... but I guess that also depends on those drivers not being needed by the "bootloader" Sep 29 16:14:29 unhappy after kernel start Sep 29 16:18:04 * pancake booting meego in n900 :) Sep 29 16:19:07 cool Sep 29 16:19:46 SIM needed without pin code, (no pin entry dialog atm) Sep 29 16:19:49 uhm. black screen in X? it is slow to boot? Sep 29 16:19:55 give it a bit.. Sep 29 16:19:55 :P Sep 29 16:20:01 or it is just hanged? ok will wait Sep 29 16:20:07 oh Sep 29 16:20:07 its here Sep 29 16:20:08 :) Sep 29 16:20:12 first boot is always a tad nasty Sep 29 16:20:15 let's play Sep 29 16:20:19 sreadahead doing stuff, tracker indexing pictures, videos.. Sep 29 16:22:32 kinda slow Sep 29 16:22:46 :nod: first boot Sep 29 16:22:53 we also have a bit of memory pressure Sep 29 16:23:09 and a potential omap mmc bug in the upstream kernel :) Sep 29 16:23:14 so plenty of fun things Sep 29 16:23:28 and phone doesnt seems to work, i got black screen again :? Sep 29 16:23:38 give it a bit.. Sep 29 16:23:42 the black screen issue is new Sep 29 16:24:27 i think is hanged now Sep 29 16:24:43 what class microsd are you on? Sep 29 16:24:54 kingston Sep 29 16:25:06 worked fine with nitdroid Sep 29 16:25:13 class, not vendor :) Sep 29 16:25:21 gonna reboot Sep 29 16:25:40 :nod: Sep 29 16:25:59 there was a lot of last-minute changes coming in, so Sep 29 16:26:51 HC4 8GB Sep 29 16:29:17 just had a really weird black screen issue myself, hmm Sep 29 16:31:48 2nd boot looks better Sep 29 16:31:49 :) Sep 29 16:39:14 but phone not working and black screen after a while Sep 29 16:39:32 many icons are missing in preferences app Sep 29 16:41:15 :nod: Sep 29 16:41:21 phone works for others, so unsure what's going on Sep 29 16:41:54 but yeah, development images .. sigh :P Sep 29 16:42:17 :) Sep 29 16:42:28 * Stskeeps 's blood pressure is way too high these days : Sep 29 16:42:31 do battery charging works here? Sep 29 16:42:35 yeah Sep 29 16:42:41 wall charger support is a little broken Sep 29 16:47:16 brbr now white screen :P Sep 29 16:47:19 that's unusable Sep 29 16:47:53 yeah, i'm seeing same pattern atm too Sep 29 16:47:58 i think something sour got integrated Sep 29 16:48:33 Stskeeps: not all carriers supported? Sep 29 16:48:47 there are keybindings? Sep 29 16:48:57 pancake: modem feature is fairly new so unsure how capable ofono is at this stage Sep 29 16:49:38 ok Sep 29 16:52:06 Stskeeps: do it works for you? Sep 29 16:52:59 yes, it works for me and i had a fine telephone call with it Sep 29 16:54:53 meego handset? Sep 29 16:55:00 yeah Sep 29 16:55:12 I heard they make calls Sep 29 16:55:20 I've seen one do that live :-) Sep 29 16:55:23 it comes out the speakers but .. :) Sep 29 16:55:38 is camera working? Sep 29 16:55:39 now, the question is: how do you hang up? Sep 29 16:55:46 hahaha Sep 29 16:55:49 thiago_home: it's a trap :) Sep 29 16:55:50 pancake: not yet, we're working on mainlining kernel support Sep 29 16:57:01 ok good Sep 29 16:57:14 wtf, is the meego conf during a workweek? Sep 29 16:57:33 yes, this was discussed at length Sep 29 16:58:11 Stskeeps, meaning? Sep 29 16:58:57 meaning that you can find it on meego-dev mailing list :P it's during a work week, yes Sep 29 16:59:02 TomaszD: yes, monday to wednesday Sep 29 16:59:18 so how come people are actually coming Sep 29 16:59:28 two reasons: Sep 29 16:59:30 1) it's interesting Sep 29 16:59:40 2) people manage to convince their employers of that Sep 29 17:01:03 +1 for travelling on employers money :) Sep 29 17:01:47 well, that isn't required for what I said. Getting the days off would be a start. Getting to go without taking days off is better. Sep 29 17:01:58 employer paying you to do that even more so Sep 29 17:02:14 i kinda hope there'll be some workshop weekends once in a while to assist with community building Sep 29 17:03:32 but we're at like 400 registrations with 200 more places, so.. Sep 29 17:04:56 hum... Sunday community activities Sep 29 17:05:11 the community-building day was Wednesday Sep 29 17:05:55 :nod: Sep 29 17:06:03 i meant in terms of 'people who contribute in their free time' Sep 29 17:06:03 :P Sep 29 17:10:12 TomaszD, apparently we're more interested in corporate people than community types. Sep 29 17:10:32 Did we ever find budget for the pre-conference community days? Sep 29 17:14:33 OK, the TSG has been rescheduled for October 6 (not today) Sep 29 17:17:53 DawnFoster: ok Sep 29 17:19:12 sorry about the last minute notice (I would have liked more lead time, too) :) Sep 29 17:23:33 GAN900: sure, that's actively being done afaik Sep 29 18:13:54 argh, just wasted 15 minutes flashing the partition instead of the device Sep 29 18:34:01 trying to setup MIC2 but the repository key can be found on the server, this is what I got http://pastebin.ca/1951256 have someone a clue about this? Sep 29 18:35:07 by the way I'm using Ubuntu 10.04 Sep 29 18:46:37 lbt: ping Sep 29 18:54:02 hi! on my meego installation i am getting this process /usr/bin/python /usr/libexec/telepathy-butter Sep 29 18:54:42 i have not opened telepathy, nor any message system, which also slows down the computer very badly Sep 29 18:55:18 i am getting messages without being connected Sep 29 18:55:29 does this sound familiar? Sep 29 18:55:43 butterfly, msn Sep 29 18:59:39 vgrade: are you around? Sep 29 19:00:19 anyone in here put a postinstall that compiles something in their kickstart files? Sep 29 19:01:21 TSCHAKeee2: ew Sep 29 19:02:07 stephg: compiling emgd_drm Sep 29 19:02:13 stephg: no choice. Sep 29 19:02:43 can't really help you I'm afraid but the one thing I'd say is that you may have better luck scripting it all and then running that script from postinst Sep 29 19:02:46 stephg: it's complaining about not finding cc1, which is odd, because i am running it in %post with chroot, and gcc is fully installed, with cc1 in the right place. Sep 29 19:03:06 it'll do funny things with environment variables I'd have thought Sep 29 19:03:25 uff. Sep 29 19:03:36 okay, what i'll do is build, and put it in a tarball Sep 29 19:03:38 cc1 is the first stage c compiler Sep 29 19:03:40 and unpack that in postinst Sep 29 19:03:52 it's all a bit messy :( Sep 29 19:04:03 yeah, i am aware... i guess mic2 is futzing with the path Sep 29 19:04:14 and other env Sep 29 19:04:17 :/ Sep 29 19:04:25 the plot gets better and bettere Sep 29 19:04:41 well, it'd be tedious but env et al. will tell you what you do and don't have at postinst time Sep 29 19:04:53 yeah, good call. Sep 29 19:05:25 i'll just see if i can get away with pointing the module environment variables at the build root Sep 29 19:05:40 and trying to build modules, and putting them into a tarball to extract during image creation Sep 29 19:05:51 * TSCHAKeee2 has to do this because..well..the emgd repository disappeared :P Sep 29 19:06:06 damn you intel Sep 29 19:06:09 :P Sep 29 19:06:16 :( Sep 29 19:06:24 but that wasn't as almost comical as the way EMGD is distributed Sep 29 19:06:34 the linux package, is distributed as a windows executable Sep 29 19:06:41 wrapped in an eclipse built java project Sep 29 19:06:43 oo Sep 29 19:06:56 really encouraging you to use it Sep 29 19:06:58 that builds a driver construction set, so you can wrap up your driver and configuration into a tarball Sep 29 19:07:14 i'm just in awe at the bureaucratic abstraction Sep 29 19:07:19 to copy in a preinst, deflate postint and compile Sep 29 19:07:23 yup Sep 29 19:07:25 love it Sep 29 19:07:40 but i have to use this driver Sep 29 19:07:49 to get 2D, 3D, and video coprocessor accelleration Sep 29 19:08:00 out of my Z510/US15W based Archos 9 Sep 29 19:08:14 beautiful hardware..but man, that driver... #@(#@%(@#%@# ! :P Sep 29 19:08:37 * stephg consoles TSCHAKeee2 Sep 29 19:08:39 at least Archos didn't put EFI on the Archos 9 Sep 29 19:08:49 or i would be laughing and crying hysterically Sep 29 19:08:56 rocking back and forth Sep 29 19:09:27 of which, yes... the EMGD construction set even includes an EFI driver maker :P Sep 29 19:10:03 EFI.. sheesh.. the operating system..that..really isn't an operating system at all..nope, just an overgrown bootloader Sep 29 19:10:03 heh Sep 29 19:10:43 beyond my mac mini I've never actually seen an EFI box Sep 29 19:10:55 I have a few bits of embedded gear that uses EFI Sep 29 19:11:00 my o2 Joggler, for example Sep 29 19:11:16 Stskeeps: yes, it might be it, i am not sure, but it quite hits performance and i did not turn this service on Sep 29 19:11:21 joggler uses EIF? didn't know that Sep 29 19:11:26 Stskeeps: looks like a bug to me Sep 29 19:11:36 stephg: yup. it's one of the reasons it boots as fast as it does. Sep 29 19:11:57 Stskeeps: maybe i should try to get more info and report? or are you aware of that? Sep 29 19:15:01 zumbi: report it, i'm not really into netbook so i don't know :) Sep 29 19:15:30 TSCHAKeee2 :on anaconda on other platforms (i.e. redhat) I vaguely recall that you could whack a sleep 99999 into %post and therefor poke around the env before the reboot Sep 29 19:16:03 stephg: that's...a good idea Sep 29 19:16:14 don't know if that would help you with MIC, but if you have access to another virtual term it may help Sep 29 19:16:24 yeah, i can deal Sep 29 19:16:27 thanks Sep 29 19:17:18 i know emgd works with this device, because somebody took vgrade's stuff and made an archos9 netbook image Sep 29 19:17:30 so i just have to get the damn thing massaged in properly Sep 29 19:17:43 * TSCHAKeee2 is actually bastardizing Handset Sep 29 19:18:08 * Xisdibik pays attention to the channel after hearing massage Sep 29 19:18:19 heh Sep 29 19:18:52 Stskeeps: are you still at work? Sep 29 19:19:17 i'm always at work Sep 29 19:19:31 You live at Nokia? :o Sep 29 19:19:36 no, my couch Sep 29 19:19:57 couch at home, or at your office? Sep 29 19:20:21 rather, is the couch in a single family unit, or a big office building x) Sep 29 19:22:42 TSCHAKeee2: handset on the a9 might look... interesting... Sep 29 19:22:45 working from home :) Sep 29 19:23:06 dm8tbr: i'm using it as the basis for my new orbiter research. Sep 29 19:23:12 dm8tbr: going to change it quite a bit Sep 29 19:23:22 but i am starting with mcompositor and what's already been done, as a base Sep 29 19:23:25 * dm8tbr is waiting for the A101 :) Sep 29 19:24:00 and if I'm lucky I'll have SGX working by that time on my A5it Sep 29 19:25:00 dm8tbr: I am hoping that my work on the a9 will move over to the current-gen a7 and a5 as well... Sep 29 19:25:35 how so? the hardware is completely different, or do you mean UI wise? Sep 29 19:25:52 dm8tbr: meego runs on both ia32 and arm Sep 29 19:26:03 I am aware of that Sep 29 19:26:18 i can cross compile Sep 29 19:27:30 the challenge for me, will be developing a UI that provides a smooth user experience on the slower ARMs Sep 29 19:28:14 you mean gen6? I've written that off in terms of meego, no SGX core Sep 29 19:28:41 hm Sep 29 19:29:44 the first OMAP3 devices were generation 6, Archos5 and Archos7, aka IMT aka TIM Sep 29 19:29:56 then came gen7, Archos5 IT Sep 29 19:30:16 and now there is gen8, A28, A32, A43, A70, A101 Sep 29 19:31:08 the ARM cores run respectively at 600, 800 and 1000MHz Sep 29 19:31:50 the cortex-a8 has an SGX core. that's what the gen6's have in them Sep 29 19:32:24 no, gen6 does not have SGX Sep 29 19:33:56 ok Sep 29 19:44:26 rrix: pong Sep 29 19:44:54 lbt: You were the fellow who gave me a login for the Meego buildservice, correct? Sep 29 19:45:07 yup Sep 29 19:45:59 Okay... I had been distracted by $real_life for a few weeks, and tried to jump back in recently, but I can't login to the webui on buld.meego.com with the details you gave me.. unless I changed my password or something silly like that. Sep 29 19:48:14 I'll mail you Sep 29 19:49:05 Ok, that'd be much appreciated :) Sep 29 19:49:32 done Sep 29 19:58:16 lbt: much appreciated, danke! Sep 29 19:59:18 hey lbt Sep 29 19:59:46 o/ Sep 29 20:00:05 how are you? Sep 29 20:00:34 lbt: build.meego.com is still giving me a 401 on the webui login with the new details :( Sep 29 20:01:14 ah. that's because you want build.obs.maemo.org Sep 29 20:01:37 you only get build.meego.com when you have commit rights to a core package Sep 29 20:01:57 d'oh! Sep 29 20:03:25 There we go :) Sep 29 20:03:28 * rrix laughs Sep 29 20:03:34 See, now I feel silly. Sep 29 20:07:25 Okay, i'm in, wonderful :) Sep 29 20:07:41 rrix: congrats Sep 29 20:07:49 heh Sep 29 20:08:04 now start programming! Sep 29 20:18:44 TSCHAKeee2, hi, Sep 29 20:20:13 exit Sep 29 20:22:40 vgrade_: hey, am putting together a new ks for the archos9 that uses a tarball generated by the EMGD vendor software... I've gotten all the way down to building the emgd_drm module.. but it's failing inside the %post block not being able to find cc1.. so I think i'll just try to build the module outside of MIC2.... Sep 29 20:23:34 ok, i've never tried doing the compile inside the post Sep 29 20:25:20 vgrade_ it doesn't seem to like that at all Sep 29 20:25:42 vgrade_: do you just build the module out of the build process and then just copy it into the right place during %post ? Sep 29 20:28:29 with the iegd driver we built the driver into the kernel and then pulled that into the fs in the post Sep 29 20:28:41 * CosmoHill tugs on vgrade's tail Sep 29 20:28:59 ouch Sep 29 20:29:03 vgrade_: okay Sep 29 20:29:35 I never got the iegd module to build, things may be easier with emgd Sep 29 20:29:54 vgrade_: i wanna bitch slap whoever thought it was a swell idea to wrap the LINUX drivers in an ECLIPSE JAVA APP, wrapped in a WINDOWS INSTALLER (regarding emgd) :P Sep 29 20:30:17 do I remember vlj doing a compile of the nvidia driver within the ks? Sep 29 20:32:03 did you see the joggler ks files on jogglerwiki Sep 29 20:32:14 vgrade_: is there not going to be a meego repository anymore? Sep 29 20:32:20 yeah, but I thought the emgd repository had gone byebye Sep 29 20:34:01 no, I just meant as a guide Sep 29 20:34:11 ahhh yes Sep 29 20:34:19 i've been snipping from it Sep 29 20:34:24 from BuBu's Archos9 ks Sep 29 20:34:25 btw, the emgd beta is still out there Sep 29 20:34:36 and the official handset ks files Sep 29 20:34:51 i've got it putting all the packages i need in etc... just need to get emgd working Sep 29 20:35:05 i even have an emgd xorg.conf for the archos 9's display Sep 29 20:35:09 which works Sep 29 20:35:31 it's so @#(#@(@# close i can taste it Sep 29 20:42:07 TSCHAKeee2, http://wiki.meego.com/File:Nvidia-meego2.ks Sep 29 20:42:27 downloads then makes the nvidia kernel driver module Sep 29 20:43:21 wget, gcc, make added to the filesystem which allows a build to happen in post Sep 29 20:46:32 vgrade_: can you make an image/ks against trunk? Sep 29 20:49:05 sofar, what target, ux? Sep 29 20:49:21 hey sofar Sep 29 20:53:09 Hi Sep 29 20:53:41 lbt: any plan to update the qt libs in the meego current target on the meego obs ? Sep 29 20:55:09 isn't it 4.7.0 already? Sep 29 20:55:25 nop Sep 29 20:56:50 thiago_home: not on the community meego obs Sep 29 20:57:09 so it s prevent me to finish the pyside compilation Sep 29 20:57:15 as a class is missing Sep 29 20:58:58 which one? Sep 29 21:03:10 Khertan_: mmm yeah Sep 29 21:04:42 cyas Sep 29 21:07:10 http://repo.meego.com/MeeGo/builds/1.0.90/1.0.90.4.20100928.1/ Sep 29 21:08:46 Khertan_: running the sync script... Sep 29 21:09:30 nice Sep 29 21:09:31 thx Sep 29 21:35:00 can I bend anyone's ears about a new bug and it's categorisation? Sep 29 21:35:17 (as alot of the EUians will have gone to bed by now...) Sep 29 21:40:23 stephg, toss it out there and see if anyone bites. Sep 29 21:40:59 I found felipec in #meego-arm Sep 29 21:41:05 I bend his ear :) Sep 29 21:41:20 just a bug categorisation issue, is not big Sep 29 23:09:05 <__key__> sup Sep 30 00:17:23 Nice email, more confusion for the hotel issue. . . . Sep 30 00:45:22 Question: Would it be feasible to stick MeeGo on a bootable USB/SD card to run on a tablet? Kind of like a LiveCD kind of thing for netbooks. Sep 30 01:39:20 * peb_ is gone. Gone since Tue Sep 28 09:07:00 2010 **** ENDING LOGGING AT Thu Sep 30 02:59:57 2010