IRC log of #meego for Friday, 2011-04-01

lcukie kernel ml00:00
thiago_homelcuk: can't be done exactly like windows as it would require changing completely our toolchain00:00
thiago_homethe closest we can get is prelinking00:00
thiago_homemost desktop distros do it00:00
lcukreally?00:00
lcukonce the ELF is loaded00:01
lcukthe app would not know whether the block of code came from itself00:01
lcukor was gifted by the kernel or some other00:01
thiago_homethat's already how it works00:01
lcukreally?00:01
thiago_homeoh, yeah00:01
* lcuk blinks00:01
thiago_homethe difference between Linux and Windows is that on Linux all libraries a PIC and have no preferred load address00:02
thiago_homeon Windows, they are non-PIC and have a preferred load address00:02
* lcuk puts hand up00:02
thiago_homeso a library on Linux can be loaded anywhere in the virtual address space. There's no special place where the cost is minimised.00:02
w00t_pla causes its own set of problems though, too, heh00:02
lcukI thought the D in DLL was Dymanim00:02
lcukDynamic00:02
thiago_homeon Windows, if it is loaded in it's preferred address, then all of its internal relocations are done00:03
lcukthiago_home, so once the first thing has loaded libqt00:03
ali1234dynamic as in not static00:03
lcukhow come the second app  using it has practically same amount of time delay00:03
thiago_homeif it's not, then the loader needs to relocate the entire library and consume lots of non-shared pages for that00:03
*** lizardo has quit IRC00:03
w00t_which is also very slow00:03
thiago_homelcuk: same amount of delay as?00:04
*** magnetic__ has quit IRC00:04
lcukpractically starting the first app00:04
thiago_homethat is really not the case00:04
thiago_homethe load time can be decomposed in two major activities:00:04
thiago_home1) mapping the files from disk to memory00:04
thiago_home2) resolving the relocations00:05
thiago_home#2 is the same for every launch00:05
thiago_home#1 is the part that is shared. If the pages are already in memory, there's no disk I/O involved.00:05
*** b-man_ has joined #meego00:05
*** b-man_ has quit IRC00:06
*** markus has joined #meego00:07
w00t_2) can be lowered through things like reducing the number of exports and stuff, which also needs doing I've already noticed :p00:08
lcukthiago_home, resolving the relocations? if 1 worked it was mapped and done?00:08
*** amarsman_nl has joined #meego00:08
lcukw00t_, I already said that to you many times, "the well trodden path" as far as api is concerned00:08
*** magnetic__ has joined #meego00:08
thiago_homelcuk: ld.so can cache00:09
thiago_homelcuk: but it does need to resolve the relocations every time00:09
*** Venemo has joined #meego00:09
thiago_homelcuk: if the load address is different, the relocations are different00:09
lcukthiago_home, so it is not really ever making shared code memory available (because it is not shared, it is its own version with its own jumppoints within relocated?)00:09
*** pcacjr has quit IRC00:10
thiago_homelcuk: that's the "dirty text" problem00:10
lcuksure00:11
*** berndhs has joined #meego00:11
thiago_homelcuk: Linux libraries are PIC: the code runs in any load address, no relocations00:11
thiago_homeit's clean00:11
thiago_homeso the pages are shared across processes00:11
lcukso why the time spent in "2. resolving the relocations"00:11
thiago_homethe relocations are concentrated in a few pages00:11
lcukwhich you said was for every lib00:11
lcukok, the jump tables?00:12
thiago_homethe GOT mostly00:12
thiago_homeyes00:12
* lcuk nods00:12
thiago_homelet me find a blog I wrote about this00:12
lcukcool00:12
thiago_homehttp://labs.qt.nokia.com/2010/12/04/moving-code-around/ and http://labs.qt.nokia.com/2010/12/05/moving-code-around-more-easily/00:12
lcukhow does windows .net or even java manage?00:13
lcukbecause they have a big lib too00:13
thiago_homeJava doesn't count, it's JIT and bytecode00:13
thiago_home.NET (CLR) same00:13
*** andredieb has joined #meego00:13
lcukdoes everything happen in process?00:13
lcukI don't see android crashing when one app goes down00:14
thiago_homeI don't know, but it's a very important question00:14
thiago_homesame as for JITted Python or JavaScript:00:14
thiago_homethe code was produced by one process and not shared with others00:14
*** pmcgowan has quit IRC00:14
lcukthe single process hildon/liqbase/qt quick playground way00:15
* thiago_home realises that those two blogs were the last he blogged until last week00:15
thiago_homeI'll have to blog tomorrow again then00:15
*** jpe has quit IRC00:15
lcukit is april 1st for some folks already00:15
* mikeleib reads backlog00:16
*** cyborg-one has quit IRC00:16
mikeleiblcuk: thiago_home: PIC for x86 is ungood00:17
thiago_homemikeleib: the only important part is "it might be possible to dlopen non-PIC compiled with -z nocopyreloc"00:17
thiago_homemikeleib: I know00:17
*** astojilj has quit IRC00:17
thiago_homebut we have tons of libraries00:17
thiago_homeI bet you a beer at MeeGo Conf that if you profile a complex app, most of its time is spent in library code anyway00:17
thiago_homeso the marginal impact of compiling the app as PIC too will be minimal00:18
*** cyborg-one has joined #meego00:18
mikeleibbeer00:18
* w00t_ will be profiling as soon as he gets his lenovo running meego...00:18
* thiago_home remembers that he didn't pay for any beers during MeeGo Conf in Dublin, only for the ones he had on the Sunday before the event00:19
* mikeleib needs to profile as well00:19
* w00t_ booked his accomodation for SF a day or so ago :)00:19
*** mortenvp has quit IRC00:19
w00t_I'm staying a whole week00:19
* mikeleib has to get his talk approved to go00:19
w00t_extra time to do touristy type things00:19
w00t_thiago_home: to be fair, in dublin, it was kind of hard to run out of beer :-P00:20
*** balor has quit IRC00:20
thiago_homemikeleib: then I'll keep that beer in mind when reviewing your talk :-)00:21
thiago_homew00t_: that's the point00:21
mikeleibthiago_home: drink the beer before reviewing the talk00:21
thiago_homemikeleib: btw, "ungood"? Are you quoting arjan?00:21
thiago_home:-)00:21
*** ctusar has quit IRC00:22
*** felipec has quit IRC00:22
mikeleibthiago_home: chanelling00:22
* mikeleib wishes upon a star for hpa's x32 ABI to become widespread and for register to be plentiful on 32-bit x86 code00:22
*** Nesta_L has quit IRC00:23
thiago_homehttps://sites.google.com/site/x32abi/00:24
*** puffin has quit IRC00:25
*** chayin has quit IRC00:26
*** chayin has joined #meego00:26
*** _NIN has quit IRC00:27
*** zenvoid__ has quit IRC00:27
thiago_homemikeleib: after quick skimming through it: 32-bit in long mode?00:28
mikeleibyeah00:28
mikeleibyour pointers don't get all huge, but you get lots of registers00:28
*** phl0x81 has quit IRC00:29
thiago_homesounds like MIPS32 on a MIPS64 machine (only with half as many registers)00:29
thiago_homeor the ILP32 mode of IA-64. But then with only one eighth of the registers.00:29
lcukthiago_home, on iphone, I noticed apps still needed a startup splash screen, but that they loaded quickly,  are they binaries in same way?00:30
thiago_homelcuk: I think so00:30
*** baraujo has quit IRC00:30
thiago_homeiOS is Darwin, which uses the same code model as Linux, just not ELF00:30
*** tbf has quit IRC00:31
thiago_homethe one big difference I recall is that they use a two-level linking: symbol names are recorded with the library name that should provide them00:31
mikeleibhow does ld_proload work, then?00:31
thiago_homeso technically, resolving symbol-based relocations is less complex00:31
thiago_homesymbol injecting? I don't think it does.00:32
mikeleibfeh00:32
mikeleibat least prelink doesn't b0rk LD_PRELOAD00:32
lcukmikeleib, yeah it is just preloading a set of symbols at the top of the list00:32
w00t_that's almost an acceptable cost to pay in release environments00:32
lcukit does not speed loading unfortunately, but gives a way to modify behaviour00:32
w00t_development, maybe not00:32
*** jbos_away has quit IRC00:33
w00t_lcuk: he knows what it is00:33
lcuk\o00:33
w00t_he was asking how it works on mac given what thiago said about linking00:33
thiago_homethere are only 201 google results for searching "DYLD_PRELOAD" and that's after insisting to Google I really meant DYLD_PRELOAD00:33
lcukthe other 484 people over there might not >>00:33
mikeleibalas, in linooks, we are blessed with a hashing and searching system that is not optimized for large C++ symbols00:34
w00t_that's one way to put it :-)00:34
CosmoHillAnyone in here with an SE Elm or C510?00:34
thiago_homeQt symbol names aren't that big, if you compare to STL and Boost00:35
mikeleibefforts to change the way symbol relocation works have not been received well00:35
lcukRobot101, you might want to show this to spyro, he suggested it for liqbase a while ago http://www.theregister.co.uk/2011/03/31/apple_multitouch_spaces_patent_application/  i thought it was a bit funky00:35
mikeleibthiago_home: I assumed that Qt symbol names were purposefully not that big, after knowing how things worked in glibc00:35
thiago_homeC++ would benefit from a vtable relocation00:35
mikeleibs/glibc/binutils/00:35
infobotmikeleib meant: thiago_home: I assumed that Qt symbol names were purposefully not that big, after knowing how things worked in binutils00:35
mikeleibwhat a handy fellow00:36
w00t_indeed he is00:36
w00t_come ooooon00:36
thiago_homeI think he meant the bot00:36
w00t_this download is taking an eternity00:36
w00t_thiago_home: have you ever used 'perf' for profiling?00:37
mikeleibw00t_: profiling startup?00:37
w00t_mikeleib: that plus lots of other stuff, once I get my image :)00:38
w00t_126 kB/s, seriously, is download.meego.com running on dialup? :-P00:39
lcukthiago_home, those articles are really indepth!00:39
thiago_homelibQtGui.so.4: 27543 relocations, 21724 relative (78%) and 5819 for symbols, 1491 PLT entries, 1 for local syms (0%), 0 users00:39
w00t_thiago_home: oh, can you shoot me that script again?00:39
w00t_I had to wipe my scratchbox install, so I lost it00:39
mikeleiblcuk: articles ?00:39
* w00t_ will put it somewhere a bit safer this time00:39
*** magnetic__ has quit IRC00:39
mikeleibor is it ulrich's famous paper?00:40
thiago_homeof those 5819 relocations for symbols, 690 are _ZTVN10__cxxabiv120__si_class_type_infoE, 335 for _ZN7QObject16disconnectNotifyEPKc, 335 for _ZN7QObject11customEventEP6QEvent, 334 for _ZN7QObject13connectNotifyEPKc and 320 for __cxa_pure_virtual00:40
w00t___cxa_pure_virtual? what00:40
thiago_homemikeleib: yes, it's ulrich's script00:40
w00t_hm00:40
mikeleibif it's pure virtual, it needs to be differentiated from a null ptr00:40
w00t_ok00:40
lcukmikeleib, thiago_home called them blog posts, but they are a bit too informative to be called that http://labs.qt.nokia.com/2010/12/04/moving-code-around/    http://labs.qt.nokia.com/2010/12/05/moving-code-around-more-easily/00:40
*** DJWillis has quit IRC00:40
thiago_homehttp://paste.kde.org/8654/00:41
w00t_mikeleib: yeah, googling helped00:41
mikeleibsigh.. the solution in linux is to prelink.. but it mangles yer binaries00:42
*** Venemo has quit IRC00:42
mikeleibmakes life for things like EVM hard00:42
w00t_ARM doesn't even have prelinking, yet00:42
*** gmoro has quit IRC00:43
mikeleibjust statically link everything :-P00:43
thiago_hometrivia: QtGui has 690 "si" (single-inheritance) classes, 27 "vmi" (virtual or multiple inheritance) classes and 55 classes with no base00:43
w00t_I have considered that a few times, mikeleib :)00:43
w00t_would make updates a lot bigger, but if you only do them once a year or so it wouldn't be such a big deal00:43
lcukmikeleib, I believe that was seriously suggested for the community downloads00:43
* mikeleib wasn't serious00:44
lcukmy point exactly.00:44
thiago_homeQtopia used to have the "one big binary" mode00:44
lcukthiago_home, would it help at some level to consolidate the libraries00:44
lcukbeing practical like that00:44
mikeleibfix teh loader00:45
lcukis loading 10 smaller libraries slower than 1 larger combined00:45
lcukagreed mikeleib00:45
*** xplt has quit IRC00:45
thiago_homethe problem with more libraries is the symbol search path00:46
thiago_homeso having fewer big libraries is a good thing00:46
thiago_homeit was one of the driving decisions for KDELibs 400:46
mikeleibone must be pragmatic about it00:46
mikeleibbut the state of library relocation has lead people to do crazy things such as kdeinit or prelink or how openoffice has 300 libraries it dlopens lazily00:47
thiago_homesomething we don't get in MeeGo. w00t_ once showed me the libraries loaded by a given program and it was huge00:47
*** araujo has joined #meego00:47
thiago_homethe kdeinit hack is a "dynamic prelinking" trick00:48
*** Hoho has joined #meego00:48
w00t_thiago_home: though that program just had an utterly insane platform, really00:49
*** MoRpHeUz has quit IRC00:49
mikeleibwaldo works here, you know00:50
*** niku_ has quit IRC00:50
w00t_guess we know where he is then00:50
w00t_:-P00:50
lcukmikeleib, draw a circle round him now and leave your initials00:51
*** bigbrovar has quit IRC00:51
*** sergiusens has joined #meego00:53
*** lg_quassel has joined #meego00:54
*** tackat has joined #meego00:54
*** losinggeneration has quit IRC00:54
lcukthiago_home, do kdelibs load faster then?00:55
* mikeleib gets magic marker for next time he sees him00:57
*** DawnFoster has quit IRC00:57
*** eti has quit IRC00:58
*** Venemo has joined #meego00:58
*** mmc2 has quit IRC00:59
*** xplt has joined #meego00:59
aukewhere's waldo? :D00:59
aukesorry, unfunny pun. especially from a non-american. I apologize.01:00
w00t_hey, everyone else did it01:00
w00t_:-P01:00
auke(of course, Waldo is dutch like me)01:00
* w00t_ used to work with a lot of dutch people01:00
w00t_nice people, nice country01:01
w00t_shame about how flat it is though :)01:01
*** Venemo has quit IRC01:01
*** willer_ has quit IRC01:02
*** willer_ has joined #meego01:07
*** mpoirier has quit IRC01:08
*** xplt has quit IRC01:11
*** markus has quit IRC01:11
*** fredy has quit IRC01:12
thiago_homemikeleib: oh, yeah, waldo left many marks in KDE01:13
thiago_homeask him sometime about brockenboring01:13
*** ivanich has quit IRC01:14
*** ivanich has joined #meego01:17
*** aparna_ has quit IRC01:20
*** Alison_Chaiken has quit IRC01:22
*** lynxis has quit IRC01:24
*** xplt has joined #meego01:29
*** mortenvp has joined #meego01:29
*** Part` has quit IRC01:30
*** Part` has joined #meego01:30
*** felipec has joined #meego01:32
*** Venemo has joined #meego01:32
*** RhymeswA has left #meego01:33
*** tackat_ has joined #meego01:34
*** tackat_ has quit IRC01:34
aukew00t_: the nice thing about a flat country, is you get to see what sticks out well :)01:34
*** alvaro__ has quit IRC01:37
* CosmoHill wonders what you could do with some tall poles and pringle wifi antennas 01:39
CosmoHill(in the netherlands)01:40
*** dspeed has quit IRC01:40
*** rohanpm has quit IRC01:41
*** rohanpm has joined #meego01:41
*** OviQ2G has joined #meego01:41
w00t_auke: :-)01:42
*** OviQ2G_ has quit IRC01:42
* w00t_ has a meegoized tablet01:43
w00t_well, lenovo01:43
*** Trajan has joined #meego01:43
*** DawnFoster has joined #meego01:43
*** edisson has quit IRC01:44
*** Trajan has quit IRC01:44
mikeleibw00t_: see my home:mikeleib:branches:Trunk for hacked meego-qml-launcher and meego-ux-daemon01:45
w00t_mikeleib: hmm, what'd you do to 'em? ;)01:46
mikeleibI have added your patches to launcher and added the hide() method01:46
mikeleibI killed the lock screen in the daemon01:46
aukeCosmoHill: curvature of the earth is a bitch, but, a 10m pole gets you 10km Line of Sight...01:46
w00t_mikeleib: ! :)01:46
w00t_that sounds like some good changes01:46
CosmoHilloooo01:46
w00t_is the lockscreen stuff being upstreamed?01:46
w00t_or is it just a hack for now01:46
mikeleibnono01:46
*** gmoro has joined #meego01:47
mikeleibI commented it out b/c I have a test harness that reboots the system and measures memory usage01:47
*** pvuorela has quit IRC01:47
*** ukas has quit IRC01:47
w00t_ah, right01:47
w00t_(lucky)01:47
* w00t_ has his fingers and 'top'01:47
w00t_:-P01:47
* mikeleib would like to open source the harness (it's stupid shell script)01:47
mikeleibw00t_: top lies to you01:47
*** Kaadlajk_ has joined #meego01:47
w00t_yeah, I know the accuracy issues01:48
*** mythi has quit IRC01:48
w00t_but, it's a reasonable starting point01:48
mikeleibno.. it's not01:48
*** mythi has joined #meego01:48
*** Viltapi| has joined #meego01:48
*** Viltapi has quit IRC01:48
mikeleibX and the buffer cache are colluding with top to lie to you about memory usage01:48
*** Rade^ has quit IRC01:49
*** Lyytim has quit IRC01:49
w00t_*nod*01:49
*** Qaz has joined #meego01:49
*** Qaz is now known as Lyytim01:49
*** Rade^ has joined #meego01:49
mikeleibto really measure it, you need to apply pressure to the kernel until it has to make a tough choice01:49
*** pvuorela has joined #meego01:49
*** Kaadlajk has quit IRC01:49
*** ukas has joined #meego01:49
mikeleibwe have a program that mmaps and mlocks pages until swap happens01:49
mikeleibthat's the trigger point where you are out of memory01:49
mikeleibthen we reboot01:49
w00t_heh, that part on the n900 is easy, given how little ram it has :)01:50
mikeleibthen we measure that point under different conditions (app running/app minimized/no app) and repeat01:50
mikeleibthere's noise..01:50
Venemohey w00t_, 256 MB RAM is plenty :P few years ago it was even good a desktop!01:51
mikeleibso.. for photos on my exopc, I see 501.5megs median free memory with the photos app running01:51
w00t_Venemo: it's a lot, but it's not a lot compared to newer hardware01:51
Venemo:)01:51
mikeleiband 521.5 median megs free with it minimized01:51
mikeleibstd_dev is about 10 megs on each mesurement01:52
mikeleib16 samples each01:52
thiago_homeecho 1 > /proc/sys/vm/drop_caches01:53
mikeleibyeah01:54
mikeleibgotta modify the script.. I also modify the swappiness and dirty times01:54
*** mikeleib is now known as mikeleib_coffee01:54
w00t_Venemo: are you coming to SF, by the way?01:55
*** Hoho has left #meego01:55
Venemow00t_, SF?01:56
*** hugopl_ has quit IRC01:56
w00t_Venemo: meego conference, san francisco01:56
wmaronethat reminds me, I need to change my reservations for that...01:57
* w00t_ reads up on how to use perf01:57
Venemow00t_, I'm just a student. I can't even afford the plane tickets.01:57
*** marciom has quit IRC01:58
Venemow00t_, a single plane ticket from Budapest to SF costs about a monthly salary, so even if I had a job right now, I'd have issues with it.01:59
w00t_Venemo: is there no sponsorship options? I hadn't checked, but you could always apply for that, if so01:59
*** anky has joined #meego02:00
Venemow00t_, I haven't really checked. plus, I'm not sure if I have any exams or anything during that period. (which is likely)02:00
w00t_shame :)02:00
*** luck_laptop has quit IRC02:01
VenemoI think it's even worse for MohammadAG, as his location is even further :P02:01
*** mwichmann has joined #meego02:04
* w00t_ kicks perf_event_paranoid02:04
*** dchaverri26 has quit IRC02:05
Venemow00t_, do you have an N900 with a MeeGo hardfp image?02:05
w00t_yes02:05
Venemow00t_, and do you have a few minutes for me? :)02:05
*** McMAGIC-- has quit IRC02:06
w00t_for n900 stuff? I can't run it right now, no02:06
* CosmoHill wonders if MeeGo will work on the SE x10 Mini Pro02:06
Venemowalhava, can't run? how so?02:06
w00t_if you need help, probably02:06
Venemotab fail.02:06
w00t_I'm just busy with other stuff atm, would have to context switch and go get it etc02:06
*** Atarii has quit IRC02:06
Venemow00t_, no problem, it's not urgent at all :)02:06
w00t_what's up, though02:06
VenemoI was curious about what performance would my little app run on hardfp02:07
*** McMAGIC-- has joined #meego02:07
Venemothat's because I found that its performance bottleneck is probably the lots of fp operations in QGV02:08
*** halvors has joined #meego02:12
*** halvors has left #meego02:12
*** juanman has quit IRC02:14
*** k405 has quit IRC02:15
DawnFosterVenemo / w00t_: just FYI that people can still apply for travel sponsorship (paid flight / hotel) to attend the MeeGo Conference - it's an option during registration.02:21
VenemoDawnFoster, can you give me some details about this?02:21
*** mikeleib_coffee is now known as mikeleib02:22
DawnFosterVenemo: sure ...02:22
DawnFosterfrom our registration page: The MeeGo project recognizes the importance of face-to-face interaction, and also realizes that not every participant can be funded by their employers to attend or can pay their own travel. To encourage quality collaboration, there is limited need-based travel assistance available to defray the cost of attending.02:23
DawnFosterTravel sponsorships will cover hotel and, optionally, airfare (for people not in SF Bay Area)02:23
DawnFosterTo be eligible for travel assistance, you must: have some record of contribution and not work for a company who could pay for you to attend02:24
sjokkisi'm pretty bummed that i can't make the SF conference02:24
DawnFosterand agree to blog about the event02:24
sjokkisit's right between the first and second of my exams this semester02:24
DawnFostersjokkis: ah bummer - I've heard similar complaints from other students.02:25
sjokkisDawnFoster: no one told me to blog about anything for the dublin conference. is this a new thing?02:25
* CosmoHill finishes university on the 2nd of June02:25
*** anky has quit IRC02:25
DawnFosterthe timing is good for the project to align with release schedules02:25
DawnFostersjokkis: yeah, that's new.02:25
sjokkiswho is sponsoring this year? is nokia out?02:25
DawnFosternokia has still been involved in the conference02:26
*** MeeGoExperts has quit IRC02:26
sjokkisok02:26
*** mortenvp has quit IRC02:26
w00t_I see btrfs is still just as screwed up on tablet as it is on the n900...02:28
w00t_x86, rather02:28
*** k405 has joined #meego02:28
rustylynchw00t_: do you use the virtual keyboard on your n900 install?02:32
*** eijk_ has quit IRC02:32
rustylynchor anyone else using the n900 install of meego-ux (i.e. qml) bits?02:33
CosmoHillnight night02:33
*** CosmoHill has quit IRC02:33
rustylynchcurious if the keyboard orientation is tracking correctly02:33
w00t_yes02:33
*** DawnFoster has quit IRC02:34
rustylynchw00t_: and that's after applying all the orientation changes?02:34
rustylynchi'm seeing where meegotouch's view of an angle differs with mine02:35
*** felipec has quit IRC02:35
rustylynchi.e. the keyboard opens 90 degrees off02:35
*** dspeed has joined #meego02:36
rustylynchon the n900.... if you don't transform the screen, is the text in landscape or portrait?02:36
w00t_rustylynch: i haven't tried latest image, sage said that now we have some problems with orientation too though02:37
w00t_i swear, the more i look into orientation stuff, the more i'd rather leave it alone02:38
rustylynchyea, i'm thinking about just backing out the change to a branch02:38
rustylynchalthough... then i need to push a change to undo the 'fix' to the pegetron sensor :-<02:38
w00t_can you wait one more day for that? I'll have a look at how the n900 is tomorrow02:39
w00t_(won't right now as I'm poking performance stuff atm and near bed because my other half is nagging about my always staying up late)02:39
w00t_:P02:40
rustylynchunfortunately i have a 9am deadline to push stuff into Trunk:Testing02:40
w00t_bah, ok02:40
w00t_revert away, I don't mind02:40
rustylynchok02:40
w00t_it's no good if it's broken, and it's my responsibility to fix it02:40
w00t_ooi, do you know if it's broken on the lenovo s10-whatever it is too?02:40
w00t_I have that, so I can test any changes I make there02:41
rustylynchthere isn't an orientation sensor on that device02:41
w00t_..oh02:41
w00t_(that would explain why it isn't rotating, I just assumed it didn't have a sensor)02:41
rustylynchor if there is one, i can't find it02:41
w00t_+plugin02:41
*** dspeed has quit IRC02:42
w00t_argh, 12.11% of the time being spent inside i915_dri.so, that's fun :-)02:44
*** aloisiojr has quit IRC02:47
*** Openfree^ has quit IRC02:49
*** mlfoster has quit IRC02:49
*** qgil has quit IRC02:51
*** dmb has quit IRC02:53
w00t_I really wonder if anyone actually uses btrfs images, and if so, how they manage to get anything done02:59
w00t_it keeps locking up for me, an awful lot02:59
w00t_rustylynch: btw, googling suggests s10-3t does have an accelerometer, just that it's off by default03:00
*** wathek has quit IRC03:01
rustylynchthe stickers on the device sure make it look like there is something03:01
*** mlfoster has joined #meego03:01
ali1234it does have an accelerometer03:01
ali1234it's only 2 axis though03:01
ali1234and there is no linux driver03:02
*** mitsutaka has quit IRC03:02
ali1234i wrote everything i know here: http://wiki.meego.com/Devices/Ideapad#Accelerometer03:02
*** juanman has joined #meego03:03
*** thiago_home has quit IRC03:04
*** sheepbat has quit IRC03:04
*** pixelgeek has quit IRC03:04
*** sheepbat has joined #meego03:05
*** sergiusens has quit IRC03:05
*** dmb has joined #meego03:06
*** ganadist has quit IRC03:11
*** ganadist has joined #meego03:11
*** yanshuang has joined #meego03:17
*** alpsxing has joined #meego03:19
*** wazd has quit IRC03:20
*** BManojlovic has quit IRC03:31
*** mikeleib is now known as mikeleib_afk03:34
*** pmccarty has quit IRC03:39
*** mlfoster has quit IRC03:40
*** thiagoss has quit IRC03:46
*** Venemo has quit IRC03:46
*** willer_ has quit IRC03:46
*** Venemo has joined #meego03:48
*** thiagoss has joined #meego03:49
*** tackat has quit IRC03:50
*** dgc03052 has quit IRC03:57
*** jmorgan has joined #meego03:57
*** lg_quassel is now known as losinggeneration03:58
*** mitsutaka has joined #meego04:00
*** kimitake is now known as kimitake_idle04:02
*** mitsutaka has quit IRC04:05
*** mitsutaka has joined #meego04:06
*** kW_ has quit IRC04:12
*** ScriptRipper has quit IRC04:12
*** ScriptRipper has joined #meego04:13
*** Openfree^ has joined #meego04:13
*** gemfield has joined #meego04:14
*** kW_ has joined #meego04:16
*** glin has joined #meego04:19
*** rdesfo has joined #meego04:20
rdesfoIs the meego netbook project still being worked on?04:21
rdesfoI read an article online saying that it wasn't04:22
*** krh has joined #meego04:27
*** k405 has quit IRC04:31
*** Ascen has quit IRC04:36
rdesfohello04:47
*** bef0rd has joined #meego04:48
wmaroneit's a bit quiet right now04:49
wmaronebetter luck earlier in the day, especially if you're in the US04:49
*** dgc03052 has joined #meego04:52
*** puffin has joined #meego04:55
rustylynchthere still is work happening on netbook05:01
rustylynchfor a while people were thinking tablets would eat the netbook market, but the market is heating up for low end netbooks05:02
*** loft is now known as loft30605:03
*** npm has quit IRC05:03
berndhsI think people will want tablets with keyboards :)05:04
*** pcfe has quit IRC05:06
*** pcfe has joined #meego05:06
*** pcfe has joined #meego05:06
*** kW_ has quit IRC05:07
*** setanta_ has quit IRC05:10
*** pcacjr has joined #meego05:12
*** pcacjr has quit IRC05:12
*** pcacjr has joined #meego05:12
*** berndhs has quit IRC05:14
*** anky has joined #meego05:15
*** anky has quit IRC05:16
rdesforustylynch:thanks05:20
rdesfoberndhs: I pretty much have a table with a keyboard with the ASUS EEE PC convertible tablet.  only problem with it is that it's default OS is win705:22
*** anky has joined #meego05:22
* gabrbedd loves convertable tablet/netbooks much more than tablets.05:26
gabrbeddHowever, the Netbook UX wasn't all that great for touch, and the devs didn't seem interested in making it great for touch.05:27
rdesfoya, there's no way to get to the bar at the top of the screen when I flip the screen arround to use as a tablet05:28
gabrbeddrdesfo: Actually, if you touch your finger to the very very top it'll come down.05:30
* gabrbedd got pretty good at doing that05:30
rdesfoya, it doesn't always work.  I guess I still need to practice  :)05:30
gabrbeddThe trick is to start your finger just a tad below... and then slide it up to the y=0 position.05:30
gabrbeddIf the application is in fullscreen mode, it won't work.  Also, if your calibration is off then YMMV. :-)05:31
rdesfoyou know...It works well if I roll my finger to the edge of the screen05:32
rdesfodo you have xournal or anything for writing installed on yours?05:33
*** bigbrovar2 has joined #meego05:33
*** anky has quit IRC05:34
*** puffin has quit IRC05:35
*** awknn has joined #meego05:36
*** npm has joined #meego05:38
*** glin has quit IRC05:38
*** awknn has quit IRC05:43
*** xplt has quit IRC05:44
*** bigbrovar2 has quit IRC05:45
*** berndhs has joined #meego05:46
gabrbeddrdesfo: No, our company is targetting tablets... so we left the Netbook UX in February for the Handset UX.  That's been painful... but you know.05:50
rdesfo:)05:50
berndhsi seriously thing a compromise machine, tablet+keyboard could be really good05:52
rdesfodo you know what the plans are for the web accounts?05:52
gabrbeddrdesfo: Funny, though... just last week the handset ux was getting really nice on x86.... and then some Tablet-related changes re-b0rked it.05:52
rdesfo:(05:52
gabrbeddberndhs: I totally agree, 100%.  I couldn't convince our sales/marketing arm, though.05:53
rdesfothat's too bad.  I wish they would just something out there05:53
gabrbeddThe real problem is... it's actually /hard/ to sell a convertable.  People just don't get it until they've played with it.05:53
berndhsremovable keybd type of thing maybe, some deal like that05:53
gabrbeddNo matter how many times you say, "It's a touchscreen... cool, eh?"  They just don't get it.05:54
gabrbeddBut show them a tablet --- and it's instant cool.05:54
rdesfoya, it's kinda funny that tablets explode now that the touch screen has been out for a decade05:54
berndhswell yeah marketing did its job there :)05:54
*** raster has joined #meego05:55
*** glin has joined #meego05:56
rdesfoare there any plans to add more web accounts to the v1.2?05:56
gabrbeddTouchscreen prices have gone way down.05:56
gabrbeddrdesfo: I have no idea.05:56
*** srag has quit IRC05:58
rdesfoya, the battery life is pretty amazing too.  I've used the netbook for a few hours without any issue05:58
*** ifdef42 has joined #meego05:58
*** juan_man has joined #meego06:03
*** gmoro has quit IRC06:03
*** juanman has quit IRC06:03
*** trupheenix has joined #meego06:05
*** rdesfo has left #meego06:07
*** trupheenix_ has joined #meego06:08
*** gabrbedd has quit IRC06:09
*** Unmenschlich has quit IRC06:09
*** Unmensch has joined #meego06:09
*** puffin has joined #meego06:11
*** marciom has joined #meego06:13
*** marciom has quit IRC06:17
*** NishanthMenon has joined #meego06:22
*** jausmus has quit IRC06:26
*** Termana has joined #meego06:30
Termanamorning06:30
berndhsyo06:31
*** Ascen has joined #meego06:31
*** puffin has quit IRC06:37
*** trupheenix_ has quit IRC06:38
*** trupheenix_ has joined #meego06:38
*** trupheenix_ has quit IRC06:44
*** berndhs has quit IRC06:45
*** jausmus has joined #meego06:46
*** sergiusens has joined #meego06:49
*** alpsxing has quit IRC06:51
*** srag has joined #meego06:54
*** jausmus has quit IRC07:02
*** deepa1 has joined #meego07:03
*** timeless_w7ip has quit IRC07:04
*** tommim has joined #meego07:12
*** jausmus has joined #meego07:12
timophmorning07:14
*** yanshuang has quit IRC07:15
*** DawnFoster has joined #meego07:15
*** dgc03052 has quit IRC07:18
*** mwichmann has quit IRC07:19
*** lynxis has joined #meego07:19
*** odin_ has quit IRC07:22
*** alterego has quit IRC07:22
*** alterego has joined #meego07:23
*** phinaliumz has joined #meego07:24
*** liyan has joined #meego07:25
*** glin has quit IRC07:26
*** amarsman_nl has quit IRC07:27
*** yanli has quit IRC07:28
*** haritha has joined #meego07:28
*** deepa1 has quit IRC07:31
*** haritha has left #meego07:31
*** deepa1 has joined #meego07:31
*** DocScrutinizer2 has joined #meego07:34
*** yanshuang has joined #meego07:34
*** DocScrutinizer has quit IRC07:34
*** amarsman_nl has joined #meego07:37
*** amarsman_nl has quit IRC07:37
*** amarsman_nl has joined #meego07:38
*** hhartz has joined #meego07:38
*** glin has joined #meego07:40
*** slonopotamus has joined #meego07:43
*** bkalinga has left #meego07:43
*** bkalinga has joined #meego07:44
*** mikhas has quit IRC07:46
*** Ian-- has quit IRC07:47
*** thiagoss has quit IRC07:50
*** pundiramit has joined #meego07:56
*** Termana has quit IRC07:57
*** Termana has joined #meego07:57
*** pundiramit has quit IRC07:58
*** Ian-- has joined #meego07:59
*** mikhas has joined #meego08:00
*** pundiramit has joined #meego08:01
*** cherrot has joined #meego08:02
*** Ian-- has quit IRC08:03
*** pundiramit has quit IRC08:03
*** Kaadlajk_ is now known as Kaadlajk08:04
*** Nesta_L has joined #meego08:04
*** Ian-- has joined #meego08:05
*** niku_ has joined #meego08:09
*** ramkrsna has joined #meego08:11
*** Nesta_L has quit IRC08:11
bkalingaPackage gconf-2.0 was not found in the pkg-config search path.08:11
bkalingawhile building source inside qemu08:12
bkalingawhich package i need to install08:12
*** Nesta_L has joined #meego08:13
*** alpsxing has joined #meego08:15
*** kimitake_idle is now known as kimitake08:16
*** ar is now known as its_grg08:19
*** its_grg is now known as ar08:19
*** phinaliumz has quit IRC08:20
*** NishanthMenon has quit IRC08:20
*** pundiramit has joined #meego08:24
*** larin has joined #meego08:25
*** ysyrota has joined #meego08:27
*** trupheenix has quit IRC08:30
*** Termana has quit IRC08:33
*** andre__ has joined #meego08:33
*** andre__ has quit IRC08:33
*** andre__ has joined #meego08:33
*** slonopotamus has quit IRC08:35
*** villev has joined #meego08:35
*** pundiramit has quit IRC08:35
wmarone\o/ my touchscreen works08:37
Stskeeps\o/08:37
wmaronenow to figure out how to port this config over to meego, and put the tablet UI on this08:38
*** ab has joined #meego08:38
*** larin has quit IRC08:38
*** ar is now known as dragon_isnt_a_wo08:39
*** dragon_isnt_a_wo is now known as ar08:39
*** ar is now known as dragon_isnt_a_wo08:41
*** dragon_isnt_a_wo is now known as ar08:41
*** cherrot has quit IRC08:43
*** ar is now known as dragon_isnt_the_08:43
*** dragon_isnt_the_ is now known as ar08:43
*** jbos_away has joined #meego08:47
*** troys has quit IRC08:49
*** tbf has joined #meego08:54
*** aapo has joined #meego08:56
*** Aparna has joined #meego08:57
*** gemfield has quit IRC08:59
*** Nesta_L has quit IRC08:59
mikhasrustylynch, I am bit worried about https://bugs.meego.com/show_bug.cgi?id=15089 - as if these patches removed compositing support from the compositor ...09:00
_MeeeGoBot_Bug 15089 nor, Undecided, ---, x2rich, NEW, meegotouch based virtual keyboard does not open as expected09:00
*** tommim has quit IRC09:07
*** anky has joined #meego09:08
*** ubIx has joined #meego09:08
*** anky has left #meego09:09
*** ubIx_ has quit IRC09:11
*** jlamadon has joined #meego09:16
*** mlin_ has joined #meego09:21
*** andyross has joined #meego09:22
*** chainsawbike has quit IRC09:24
*** mlin_ has quit IRC09:24
*** thiago_home has joined #meego09:24
*** chainsawbike has joined #meego09:24
*** mlin has joined #meego09:25
*** jpe has joined #meego09:27
*** pundiramit has joined #meego09:30
*** pan1nx has joined #meego09:32
*** rigved has joined #meego09:33
*** jpal has joined #meego09:38
*** thiago_home has quit IRC09:40
*** mikhas has quit IRC09:40
*** ar is now known as gandalf_is_wolf09:42
*** aleksander_m has joined #meego09:42
*** gandalf_is_wolf is now known as ar09:43
*** kuuntelija has quit IRC09:43
*** mlin has quit IRC09:44
*** deepa1 has quit IRC09:46
*** magnetic__ has joined #meego09:46
*** deepa1 has joined #meego09:46
*** johd has quit IRC09:47
*** kimmok has joined #meego09:49
*** jbos_away has quit IRC09:49
*** mitsutaka_ has joined #meego09:49
*** kraiskil has joined #meego09:50
*** lynxis has quit IRC09:50
*** mitsutaka_ has quit IRC09:50
*** mitsutaka_ has joined #meego09:51
*** mitsutaka has quit IRC09:51
*** sergiusens has quit IRC09:55
*** sergiusens has joined #meego09:55
*** sergiusens has quit IRC09:55
*** sergiusens has joined #meego09:56
*** Tazpa has joined #meego09:59
*** ar is now known as alvarezp_is_wolf10:02
*** alvarezp_is_wolf is now known as ar10:02
*** andre__ has quit IRC10:04
*** kuuntelija has joined #meego10:07
*** pohly has joined #meego10:07
*** larin has joined #meego10:11
*** bef0rd has quit IRC10:11
*** ar is now known as its_snova10:11
*** KaL has joined #meego10:11
*** its_snova is now known as ar10:11
*** mdfe_ has joined #meego10:12
*** astojilj has joined #meego10:15
*** x_O has joined #meego10:16
*** murrayc has joined #meego10:18
*** Joppeffs has joined #meego10:22
*** arkub has joined #meego10:28
*** shenghua has quit IRC10:28
*** mikhas has joined #meego10:30
*** ivanich has quit IRC10:32
*** trupheenix has joined #meego10:32
*** andyross has quit IRC10:33
*** bergie has joined #meego10:36
*** mlin has joined #meego10:36
*** Hoho has joined #meego10:36
*** calvaris has joined #meego10:37
*** ericlr has joined #meego10:37
*** sigue has quit IRC10:40
*** javiF has joined #meego10:40
*** sigue has joined #meego10:41
*** Dan_Mihai_BU_RO has joined #meego10:42
*** frade has joined #meego10:44
*** sigue has quit IRC10:47
*** sigue has joined #meego10:48
*** ar is now known as gnarf_died10:49
*** gnarf_died is now known as ar10:49
*** ar is now known as its_jsec10:50
*** its_jsec is now known as ar10:50
*** DJWillis has joined #meego10:51
*** andre__ has joined #meego10:58
MohammadAGVenemo, I have exams, and that's ignoring the fact that the tickets are $160010:58
*** MacDrunk has quit IRC10:58
Corsacmeego spring conf?10:59
*** kontio has joined #meego10:59
*** lynxis has joined #meego10:59
MohammadAGSF11:00
*** zutesmog has joined #meego11:04
*** Mirv has quit IRC11:06
*** schend has joined #meego11:06
VenemoMohammadAG, yeah, but DawnFoster told me that there are sponsorship options. and if anyone should get that, that's you!11:09
Stskeepsthe downside is that you have to make a payout first and then reimburse11:09
Stskeeps:P11:09
MohammadAGVenemo, there's an exam on 23 and another on 2511:11
VenemoStskeeps, OUCH!11:11
VenemoMohammadAG, well then get them to pay your trip back and forth :P11:12
*** TheOpenSourcerer has joined #meego11:12
*** Mirv has joined #meego11:14
*** mortenvp has joined #meego11:15
*** mattock has joined #meego11:16
*** wazd has joined #meego11:17
*** odin_ has joined #meego11:18
*** florian_kc has joined #meego11:19
*** florian_kc has joined #meego11:19
*** nebulon has joined #meego11:20
*** florian_kc is now known as florian11:22
*** schend has quit IRC11:22
*** drussell has joined #meego11:25
*** dazo_afk is now known as dazo11:27
*** rigved has quit IRC11:27
*** lupine_85 has left #meego11:29
*** blitz00 has joined #meego11:32
*** kimitake is now known as kimitake_idle11:33
*** anky has joined #meego11:33
*** schend has joined #meego11:35
*** gabor has joined #meego11:38
*** ivanich has joined #meego11:38
*** fearghalohare has joined #meego11:40
*** LoneWolf_ has joined #meego11:46
*** FLaT^^` has quit IRC11:47
*** juan_man has quit IRC11:48
*** dharman has joined #meego11:56
*** kidproquo has joined #meego11:56
*** notmart has joined #meego11:58
*** swc|666 has quit IRC11:58
*** jas4711 has joined #meego11:58
*** zutesmog has left #meego11:59
*** dneary has joined #meego11:59
*** dneary has quit IRC11:59
*** dneary has joined #meego11:59
*** schend has quit IRC12:02
*** drussell has quit IRC12:05
*** drussell has joined #meego12:07
*** mlin has quit IRC12:07
*** jmorgan has quit IRC12:10
*** Nesta_L has joined #meego12:12
*** Viltapi| is now known as Viltapi12:13
*** jmorgan has joined #meego12:18
lbthttp://mail.google.com/mail/help/motion.html12:18
*** achipa has joined #meego12:23
*** achipa has quit IRC12:23
*** achipa has joined #meego12:23
*** ramkrsna has quit IRC12:24
Viltapilbt: hehe nice one. also, check http://www.opensuse.org/12:25
*** mikeleib` has joined #meego12:32
*** jpe has quit IRC12:34
*** mikeleib_afk has quit IRC12:35
nid0el reg's been fairly subtle: http://www.theregister.co.uk/2011/04/01/seagate_triple/12:35
*** murrayc has quit IRC12:38
*** rigved has joined #meego12:39
*** schend has joined #meego12:41
*** dharman has quit IRC12:45
*** Nesta_L has quit IRC12:48
*** murrayc has joined #meego12:51
*** Openfree^ has quit IRC12:52
*** dharman has joined #meego12:53
bkalingaI am getting a problem in meego-sdk-update-target12:53
bkalingacan some one point out whats going wrong12:53
bkalingaError: The meego-handset-ia32-madde-sysroot-1.1.99.0.20110329.5.conf has been installed. A different name should be provided.12:54
bkalingaIt is referring to: /usr/lib/madde/linux-i686/cache/madde.conf.d/meego-handset-ia32-madde-sysroot-1.1.99.0.20110329.5.conf12:56
bkalingashall I delete it manually?12:56
*** astojilj has quit IRC12:57
*** mitsutaka has joined #meego12:58
*** mitsutaka has quit IRC12:58
*** pmo5 has joined #meego12:59
*** mitsutaka_ has quit IRC13:01
*** anky has quit IRC13:03
*** petrux has joined #meego13:08
andreizrohy. I'm having some problems compiling glibc on ARM. I am using MeeGo 1.1.90.5.20110301.7. The qemu installed on the worker is 0.14.0. Here is the error: http://pastie.org/1743070 .... any clues?13:09
*** gmoro has joined #meego13:11
*** lgombos has quit IRC13:12
*** gemfield has joined #meego13:13
*** tbf has quit IRC13:13
*** inz has quit IRC13:14
*** inz has joined #meego13:15
*** kW_ has joined #meego13:20
*** drussell has quit IRC13:20
*** tbf has joined #meego13:20
*** MeeGoExperts has joined #meego13:20
*** yanshuang has quit IRC13:25
*** notmart has quit IRC13:32
*** ivanich has quit IRC13:34
*** mwichmann has joined #meego13:36
*** aboyer has quit IRC13:37
*** achipa has quit IRC13:37
*** baraujo has joined #meego13:37
*** gemfield_ has joined #meego13:37
*** gemfield has quit IRC13:38
*** lizardo has joined #meego13:38
*** CosmoHill has joined #meego13:38
*** aboyer has joined #meego13:39
*** aboyer has joined #meego13:39
*** zeddii has quit IRC13:39
*** Nesta_L has joined #meego13:40
*** glin has quit IRC13:40
*** lukus has joined #meego13:41
*** gemfield_ has quit IRC13:42
*** achipa has joined #meego13:43
*** achipa has quit IRC13:43
*** achipa has joined #meego13:43
*** ramkrsna has joined #meego13:43
*** gabor has quit IRC13:46
*** DocScrutinizer2 is now known as DigitalPioneer13:47
*** DigitalPioneer is now known as DocScrutinizer213:47
*** DocScrutinizer2 is now known as DocScrutinizer13:47
*** RhymeswA has joined #meego13:48
*** pcacjr has quit IRC13:50
*** mlwane has joined #meego13:51
*** lgombos has joined #meego13:54
*** vokimon_home has quit IRC13:56
*** Nesta_L has quit IRC13:58
*** gabor has joined #meego14:00
*** pohly has quit IRC14:01
*** zeddii has joined #meego14:02
*** x_O has left #meego14:02
*** gabor has quit IRC14:02
*** aivanov has quit IRC14:03
*** astojilj has joined #meego14:06
*** haltdef has quit IRC14:06
*** tzorvas_ has joined #meego14:07
*** tzorvas_ has quit IRC14:07
*** haltdef has joined #meego14:07
*** gabor has joined #meego14:07
*** ramkrsna has quit IRC14:08
*** tommim has joined #meego14:08
*** piociek_ has quit IRC14:09
*** piociek_ has joined #meego14:09
*** ksinny has joined #meego14:10
*** notmart has joined #meego14:10
*** wazd has quit IRC14:11
*** dneary has quit IRC14:12
*** ivanich has joined #meego14:14
*** ksinny_ has joined #meego14:17
*** ksinny has quit IRC14:18
*** luck_laptop has joined #meego14:19
*** ismael1 has quit IRC14:19
*** thiagoss has joined #meego14:20
*** prashant_ has quit IRC14:21
*** astojilj has quit IRC14:22
*** KaL is now known as KaL_lunch14:23
*** drussell has joined #meego14:24
*** setanta_ has joined #meego14:24
*** kuuntelija has quit IRC14:25
*** achipa has quit IRC14:27
*** wasikevin has joined #meego14:31
*** puffin has joined #meego14:32
*** alpsxing has quit IRC14:33
*** Sunloung has joined #meego14:33
*** NIN101 has joined #meego14:34
*** lescrooks has joined #meego14:34
*** fearghalohare has quit IRC14:37
*** thiagoss has quit IRC14:37
*** ottela has joined #meego14:38
*** wasikevin has quit IRC14:41
*** kuuntelija has joined #meego14:43
*** logoel has joined #meego14:43
*** ksinny_ has quit IRC14:45
*** peisanen has left #meego14:46
*** pcacjr has joined #meego14:46
*** pcacjr has quit IRC14:46
*** pcacjr has joined #meego14:46
*** deepa1 has quit IRC14:48
*** deepa1 has joined #meego14:48
*** achipa has joined #meego14:51
*** achipa has quit IRC14:51
*** achipa has joined #meego14:51
*** tmikola has quit IRC14:52
*** tmikola has joined #meego14:52
*** MoRpHeUz has joined #meego14:53
*** astojilj has joined #meego14:54
*** jespada has joined #meego14:56
*** zenvoid has joined #meego14:57
Venemoa very nice joke: http://www.opensuse.org/14:57
*** ksinny has joined #meego14:58
*** lukus has quit IRC14:58
CosmoHillVenemo: same home page for all 514:58
Venemolol, that's even funnier! :D14:58
*** lukus has joined #meego14:59
*** Termana has joined #meego14:59
*** tommim has quit IRC15:00
VenemoCosmoHill, a nice extension to that: http://skvidal.wordpress.com/2011/04/01/new-linux-distro-and-pkg-manager/ :D15:03
*** snowpong has joined #meego15:04
*** ksinny_ has joined #meego15:05
*** Openfree^ has joined #meego15:06
*** ksinny has quit IRC15:06
*** puffin has quit IRC15:07
*** pundiramit has quit IRC15:08
*** boiko_ has joined #meego15:09
*** boiko has quit IRC15:09
*** pmo5 has left #meego15:10
*** ksinny has joined #meego15:14
*** ivanich has quit IRC15:14
*** ksinny_ has quit IRC15:15
*** dneary has joined #meego15:15
*** achipa has quit IRC15:15
*** achipa has joined #meego15:15
*** achipa has joined #meego15:15
*** pan1nx has quit IRC15:16
*** dneary has quit IRC15:16
*** javiF has quit IRC15:17
*** gmoro has quit IRC15:19
*** andredieb has quit IRC15:19
*** ksinny_ has joined #meego15:20
*** ksinny has quit IRC15:20
*** achipa has quit IRC15:21
*** villev has quit IRC15:22
*** sergiusens has left #meego15:25
*** ksinny has joined #meego15:25
*** kraiskil has quit IRC15:26
*** ksinny_ has quit IRC15:27
*** blitz00 has quit IRC15:28
*** pmcgowan has joined #meego15:28
*** villev has joined #meego15:28
*** Termana has quit IRC15:28
*** willer_ has joined #meego15:29
*** fearghalohare has joined #meego15:30
*** KaL_lunch is now known as KaL15:31
*** elenbert has joined #meego15:31
*** k405 has joined #meego15:31
*** tbf has quit IRC15:33
*** deepa1 has quit IRC15:33
*** achipa has joined #meego15:35
*** achipa has quit IRC15:35
*** achipa has joined #meego15:35
*** ottela has quit IRC15:36
*** elenbert has left #meego15:37
*** ottela has joined #meego15:38
*** achipa has quit IRC15:39
*** ksinny has quit IRC15:39
*** ksinny has joined #meego15:40
*** juanman has joined #meego15:40
*** sigma6_ has joined #meego15:41
*** Termana has joined #meego15:41
*** sigma6_ has quit IRC15:41
*** eijk has joined #meego15:41
*** anky has joined #meego15:43
*** gmoro has joined #meego15:43
*** lazhar has joined #meego15:44
*** andre__ has quit IRC15:45
*** achipa has joined #meego15:47
*** ask___ has quit IRC15:47
*** achipa has quit IRC15:48
*** lynxis has quit IRC15:48
*** ksinny_ has joined #meego15:48
*** ksinny has quit IRC15:48
*** Aard has joined #meego15:51
*** murrayc has quit IRC15:51
*** aapo has quit IRC15:52
*** lynxis has joined #meego15:56
*** jpe has joined #meego15:56
*** lazhar has left #meego15:56
*** alvaro__ has joined #meego15:57
*** notmart has quit IRC15:58
*** Termana has quit IRC16:00
*** jsv has quit IRC16:01
*** Doge has joined #meego16:03
*** mairas has quit IRC16:05
andreizrocan somebody tell me if I need binfmt misc support to allow qemu to build armv7el ??16:05
Aardyes16:06
*** anky has quit IRC16:06
*** mortenvp has quit IRC16:07
*** leinir has quit IRC16:07
Stskeepsyes16:07
*** Stecchino has left #meego16:08
*** Doge has left #meego16:09
*** krau` is now known as krau16:09
*** mmc1 has joined #meego16:09
*** berndhs has joined #meego16:11
mikhasjbos, can you compile inputmethod framework on meego yourself?16:11
*** mpoirier has joined #meego16:11
*** boiko_ has quit IRC16:14
*** boiko_ has joined #meego16:15
*** kimylly has quit IRC16:15
*** Moku has quit IRC16:16
*** Moku has joined #meego16:16
*** jas4711 has quit IRC16:17
*** niku_ has quit IRC16:18
*** boiko_ is now known as boiko16:20
*** bleeter has quit IRC16:24
*** cherrot has joined #meego16:26
*** lescrooks has quit IRC16:27
*** DawnFoster has quit IRC16:27
*** ksinny has joined #meego16:28
*** bleeter has joined #meego16:28
*** diegohcg has joined #meego16:28
*** ksinny_ has quit IRC16:28
*** stefanoP has left #meego16:31
*** Evanescence has joined #meego16:34
*** astojilj has quit IRC16:34
*** gabrbedd has joined #meego16:35
*** xnt14 has quit IRC16:36
*** MohammadAG has quit IRC16:36
*** pohly has joined #meego16:37
*** MohammadAG has joined #meego16:38
*** MohammadAG has quit IRC16:38
*** MohammadAG has joined #meego16:38
*** schend has quit IRC16:39
*** xplt has joined #meego16:39
*** xnt14 has joined #meego16:39
*** ksinny_ has joined #meego16:40
*** ksinny has quit IRC16:40
villevfyi http://confusingdevelopers.wordpress.com/2011/04/01/intels-qt-quick-components-available-for-ubuntu/16:45
villevpickers (date etc) don't work properly16:45
*** KaL is now known as KaL_out16:45
cherrotWhy my QEMU cant't display the fonts? (black boxes instead...)16:46
cherrotATI GPU + Ubuntu10.1016:47
*** raster has quit IRC16:47
*** mattock has quit IRC16:48
*** cherrot has quit IRC16:50
CosmoHillwho's a moderator on the forum?16:50
*** kimitake_idle is now known as kimitake16:50
Stskeepsclick "report"16:50
CosmoHillyeah I just remembered that16:50
*** lynxis has quit IRC16:51
*** mdfe_ has quit IRC16:53
*** psycho_oreos has quit IRC16:53
*** ismael has joined #meego16:54
*** DJWillis has quit IRC16:55
*** mirek2_ has quit IRC16:59
*** kontio has quit IRC17:00
*** ksinny_ is now known as ksinny17:00
*** trupheenix has quit IRC17:01
*** marja__ has quit IRC17:01
*** dchaverri26 has joined #meego17:02
*** puffin has joined #meego17:03
*** kimmok has quit IRC17:05
*** edisson has joined #meego17:07
*** peisanen has joined #meego17:08
*** peisanen has left #meego17:08
*** ericlr has quit IRC17:11
*** mmc1 has quit IRC17:13
*** mmc1 has joined #meego17:13
*** kimitake is now known as kimitake_idle17:16
*** Venemo has quit IRC17:17
*** jpal has quit IRC17:17
*** aloisiojr has joined #meego17:17
*** frade has quit IRC17:18
*** mmc1 has quit IRC17:20
*** leinir has joined #meego17:23
*** wmarone has quit IRC17:23
*** wmarone has joined #meego17:23
*** Evanescence has quit IRC17:26
*** TSCHAKeee has quit IRC17:26
*** TSCHAKeee has joined #meego17:27
*** [daemon]_ has joined #meego17:28
*** DawnFoster has joined #meego17:29
*** psycho_oreos has joined #meego17:30
*** [daemon] has quit IRC17:31
*** andredieb has joined #meego17:32
*** ssirkia has joined #meego17:32
*** DawnFoster has quit IRC17:33
ssirkiaHi! Anybody familiar with pulseaudio-setting-mfld in gitorious? Do you/they really want changes to .spec and .yaml trough gitorious? The files are there.17:35
*** deno has joined #meego17:36
*** ScriptRipper has quit IRC17:38
*** ScriptRipper has joined #meego17:38
Stskeepssorry to everyone that was just forcibly exited from #meego-dev :) please read http://lists.meego.com/pipermail/meego-community/2011-March/003822.html17:38
*** Openfree^ has quit IRC17:42
*** larin has quit IRC17:42
CosmoHillby the sounds of it, that forced exit was probably the most activity it's seen17:42
CosmoHillStskeeps: could you set the topic to something like "Please join #meego"17:43
Stskeepsi have17:43
CosmoHillgood17:43
Stskeepsalso it's +s now17:43
Stskeeps:P17:43
*** Dan_Mihai_BU_RO has quit IRC17:43
CosmoHillsecret or silent?17:43
*** tbf has joined #meego17:43
Stskeepssecret17:44
*** lynxis has joined #meego17:44
CosmoHillokay, now if only you could do that to #meego...17:44
*** Dan_Mihai_BU_RO has joined #meego17:44
Stskeepswe discussed this :)17:44
CosmoHillhence the ...17:45
*** c--y has joined #meego17:45
*** Dan_Mihai_BU_RO has quit IRC17:45
*** ysyrota has left #meego17:47
*** logoel has quit IRC17:47
ssirkiaquestion 2:  I see ' echo "ia32_icdk" > /etc/boardname-override '  in meego-handset-ia32-mtf-1.1.99.1.20110331.81.ks  but not in meego-tablet-ia32-mfld-1.1.99.1.20110331.81.ks   So what's up with that?17:50
*** javiF has joined #meego17:50
Stskeepsssirkia: supposedly there's a bug with iCDK DMI17:51
Stskeepsand tablet prolly has a better DMI17:51
*** mikhailz has joined #meego17:51
*** zeddii has quit IRC17:52
*** zeddii has joined #meego17:53
*** leinir has quit IRC17:54
*** peisanen has joined #meego17:55
ssirkiaright - didn't realize that tablet may be another HW.17:56
*** leinir has joined #meego17:56
*** Evanescence has joined #meego17:57
*** wazd has joined #meego17:58
*** ivanich has joined #meego18:00
*** lizardo has quit IRC18:00
*** KaL_out is now known as KaL18:00
*** baraujo has quit IRC18:00
*** edisson has quit IRC18:00
*** aleksander_m has quit IRC18:01
*** lizardo has joined #meego18:01
*** edisson has joined #meego18:01
*** mlfoster has joined #meego18:02
*** fearghalohare has quit IRC18:03
*** zeddii has quit IRC18:04
*** lynxis has quit IRC18:04
*** pohly has quit IRC18:04
*** fredy has joined #meego18:05
*** baraujo has joined #meego18:05
*** thiago has quit IRC18:06
*** lynxis has joined #meego18:06
*** andredieb has quit IRC18:07
*** ddompe has joined #meego18:07
*** wazd has quit IRC18:08
*** lmoura has joined #meego18:09
*** snowpong has quit IRC18:09
*** halvors has joined #meego18:09
*** luck_laptop has quit IRC18:11
*** halvors has left #meego18:11
*** mord has joined #meego18:12
*** jpe has quit IRC18:13
*** slonopotamus has joined #meego18:16
*** luist has joined #meego18:17
*** halvors has joined #meego18:17
*** peisanen has quit IRC18:19
*** halvors has left #meego18:20
*** ab has quit IRC18:21
*** ctusar has joined #meego18:24
*** slonopotamus has quit IRC18:27
*** amarsman_nl has quit IRC18:28
*** florian has quit IRC18:28
*** pixelgeek has joined #meego18:29
*** piociek_ has quit IRC18:30
*** DawnFoster has joined #meego18:31
*** calvaris has quit IRC18:31
*** eti has joined #meego18:34
*** lynxis has quit IRC18:35
*** amarsman_nl has joined #meego18:35
*** TomaszD has joined #meego18:35
*** amarsman_nl has quit IRC18:35
*** LoCusF has quit IRC18:36
*** LoCusF has joined #meego18:36
*** amarsman_nl has joined #meego18:36
*** ekuo has quit IRC18:40
*** ekuo_ has joined #meego18:41
*** mwichmann has quit IRC18:42
*** mitsutaka has joined #meego18:44
*** thiago_home has joined #meego18:45
*** thiago_home is now known as thiago18:45
*** TomaszD has quit IRC18:46
*** trupheenix has joined #meego18:47
*** MarcA-N has joined #meego18:47
*** maligor has joined #meego18:48
*** andredieb has joined #meego18:50
*** lynxis has joined #meego18:51
*** andre__ has joined #meego18:52
*** andre__ has quit IRC18:52
*** andre__ has joined #meego18:52
*** slonopotamus has joined #meego18:53
*** ksinny_ has joined #meego18:53
*** ksinny has quit IRC18:54
*** mmc1 has joined #meego18:54
*** Aparna has quit IRC18:55
*** pohly has joined #meego18:55
*** ksinny_ is now known as ksinny18:56
*** lynxis has quit IRC18:57
*** mikhas has quit IRC18:58
*** anky has joined #meego18:58
*** TomaszD has joined #meego18:59
*** TomaszD has joined #meego18:59
*** mitsutaka has quit IRC19:02
*** rigved has quit IRC19:03
*** slonopotamus has quit IRC19:06
*** thiagoss has joined #meego19:06
*** juanman has quit IRC19:06
*** Aparna has joined #meego19:07
*** Hoho has left #meego19:09
*** ksinny has quit IRC19:11
*** larin has joined #meego19:11
*** c--y has quit IRC19:13
*** Tsarpf has joined #meego19:13
w00t_rustylynch: hi, did things go back to working when you reverted the orientation changes?19:13
DawnFosterstskeeps: ping19:13
Stskeepsdawpong19:14
StskeepsDawnFoster: pong19:14
DawnFosterStskeeps:  well, it's the first of the month, and I'm starting my metrics :)19:14
DawnFosterany chance you can run the irc stats in the next couple of days?19:15
DawnFoster(no big rush)19:15
* w00t_ should set up public stats for meego sometime19:15
w00t_I already run some for some Qt channels19:15
DawnFosterdneary is working on automating everything19:16
StskeepsDawnFoster: will do19:16
DawnFosterhttp://wiki.meego.com/Metrics/Dashboard19:16
DawnFosterStskeeps: thanks!19:16
*** arjan has joined #meego19:17
*** Evanescence has quit IRC19:17
*** inz has quit IRC19:18
*** jophish has quit IRC19:20
*** KaL has quit IRC19:21
*** inz has joined #meego19:23
*** mitsutaka has joined #meego19:24
*** mitsutaka has quit IRC19:25
*** nebulon has quit IRC19:25
*** ksinny has joined #meego19:26
*** tzorvas_ has joined #meego19:27
*** dneary has joined #meego19:28
*** dneary has joined #meego19:28
dnearyDawnFoster, Thanks for the info19:29
dnearyOn my way out the door to strip wallpaper all evening, but I'll see you next week in SFO19:30
*** anky has quit IRC19:30
*** bigbrovar has joined #meego19:30
*** petrux has quit IRC19:30
*** anky has joined #meego19:30
*** mikhailz has quit IRC19:31
DawnFosterdneary: have fun? :)19:31
*** mitsutaka has joined #meego19:31
*** achipa has joined #meego19:31
*** dneary has quit IRC19:32
*** deno has quit IRC19:32
*** ksinny_ has joined #meego19:37
*** ksinny has quit IRC19:37
*** marciom has joined #meego19:38
*** gabor has quit IRC19:39
*** mitsutaka has quit IRC19:40
*** mwichmann has joined #meego19:40
*** c--y has joined #meego19:40
*** arkub has quit IRC19:41
*** andyross has joined #meego19:41
*** gmoro has quit IRC19:43
*** balor has joined #meego19:44
*** inz has quit IRC19:44
*** bergie has quit IRC19:47
*** kraiskil has joined #meego19:48
*** c--y has quit IRC19:49
*** Atarii has joined #meego19:50
*** schend has joined #meego19:51
*** Armi^ has joined #meego19:52
*** pmccarty has joined #meego19:54
*** anky has quit IRC19:54
*** balor has quit IRC19:55
*** thiago has quit IRC19:56
*** jlamadon has quit IRC19:56
*** thiago has joined #meego19:56
*** rdesfo has joined #meego19:56
*** andredieb has quit IRC19:57
*** Tsarpf has quit IRC19:58
rustylynchw00t_: yes, after reverting then orientation changes across the board are working again19:58
*** c--y has joined #meego19:59
*** kimitake_idle is now known as kimitake19:59
*** dharman has quit IRC19:59
*** c--y has quit IRC19:59
*** inz has joined #meego20:00
w00t_rustylynch: ok, sorry for the hassle20:01
w00t_I will investigate what's going on on the n900 end20:01
rustylynchwell... i think the bug is still valid, it's just a matter if getting all the moving parts to agree on the definition20:01
*** kidproquo has quit IRC20:02
*** pixelgeek1 has joined #meego20:03
w00t_easier said than done :)20:03
*** thiagoss has quit IRC20:04
*** pixelgeek has quit IRC20:04
StskeepsDawnFoster: http://stskeeps.subnetmask.net/irc/data/irssistats.mar2011.html20:04
*** DJWillis has joined #meego20:05
w00t_Stskeeps: no #meego-arm then?20:05
thiagorustylynch: important info, please pass it along to your team: http://labs.qt.nokia.com/2011/04/01/qt-hidden-gems/20:07
thiago:-)20:07
* rustylynch looks20:07
*** schend has quit IRC20:07
Stskeepsw00t_: http://stskeeps.subnetmask.net/irc/data/irssistats.arm.mar2011.html20:07
CosmoHillStskeeps: could you make is so we can view the parent directory?20:08
w00t_thiago: *grin*20:08
thiagow00t_: :-)20:08
* thiago needs to configure his webserver to reply with error 41820:08
w00t_I am indeed a teapot20:09
w00t_however did you guess20:09
*** ksinny_ has quit IRC20:09
*** onen|openBmap has joined #meego20:10
*** dspeed has joined #meego20:11
*** ksinny has joined #meego20:11
*** ddompe_ has joined #meego20:12
rustylynchnice... didn't know about the -fkeep-programmers-inline, would be useful with a '-fread-your-damn-email' flag20:12
*** ddompe has quit IRC20:15
*** ddompe_ is now known as ddompe20:15
* w00t_ could make a joke about another flag starting with '-f' that would be useful during heated technical decisions, but refrains20:16
w00t_*discussions rather20:16
*** rdesfo has left #meego20:16
*** ksinny has quit IRC20:17
*** ksinny has joined #meego20:17
arjanhmm no flames on the latest architecture change mail20:18
arjanmaybe people think it's an april 1st joke20:19
CosmoHillhey arjan20:19
w00t_arjan: it's also a bit less radical which helps :)20:20
thiagoarjan: it sounded to me very well reasoned, no need for flaming20:20
thiago"hey, we don't think they're mature, so they stay but we don't want to commit to them just yet"20:20
w00t_"we want to let these components mature, so we're not making them mandatory"20:20
*** mitsutaka has joined #meego20:20
*** githogori has quit IRC20:20
* w00t_ wonders why his USB disk is not showing up for him to write an image to it20:21
CosmoHillcos it remembers the last time you used it?20:21
thiagoarjan: are you coming to LCS next week?20:22
*** fsl has joined #meego20:22
*** srag has quit IRC20:23
*** zeddii has joined #meego20:24
*** zimmerle has joined #meego20:24
*** bigbrovar has quit IRC20:26
*** gmoro has joined #meego20:26
w00t_rustylynch: did the fixed packages make it into T:T by the way?20:26
*** andyross has quit IRC20:26
w00t_or, somewhere on obs I can build an image against?20:26
*** troys has joined #meego20:28
*** srag has joined #meego20:28
CosmoHillfor april falls MeeGo should have changed the converance location or date20:29
rustylynchw00t_: yes, all my updates are now in T:T20:31
DawnFosterStskeeps: thanks!20:31
*** hugopl has joined #meego20:31
*** norayr has joined #meego20:31
*** norayr is now known as naemo20:31
*** tg has quit IRC20:33
*** ksinny_ has joined #meego20:34
*** ksinny has quit IRC20:34
Stskeepsarjan: nothing in that mail that isn't somehow based in reality at least - i'm personally missing a bit how the architecture diagram actually looks right now20:36
*** magnetic__ has quit IRC20:36
Stskeepsarjan: then there's of course the whole flux of project governance (who's in what roles), but that's a project-wide problem not specific to architecture20:36
arjanwe'll have a new diagram in a week or so20:36
Stskeepsgood20:36
arjanno point doing halfway ones ;)20:36
Stskeepsand in addition to that, to prevent people to do incompatible branches to fill the roles of those components, to somehow talk about the intended direction/roadmap of the features they cover20:37
*** lukus has quit IRC20:37
*** tg has joined #meego20:37
Stskeeps(i do know it's not included in compliance)20:38
*** ksinny has joined #meego20:39
*** mitsutaka has quit IRC20:40
*** ksinny_ has quit IRC20:40
aukeStskeeps: wth, you kicking me from channels? XD20:40
timoph:D20:40
Stskeepsauke: sorry, did actually note this in advance on meego-community@ :)20:41
* timoph should do the same in -qa-tools20:41
Stskeepshopefully it'll make sure people don't come to a dead channel20:41
*** trupheenix has quit IRC20:41
*** divan has joined #meego20:42
*** renato has joined #meego20:44
*** ksinny_ has joined #meego20:46
*** ksinny has quit IRC20:46
*** hstende has joined #meego20:48
*** hugopl has quit IRC20:48
*** javiF has quit IRC20:49
aukeStskeeps: they will20:49
*** lcuk has quit IRC20:49
*** hugopl has joined #meego20:49
*** ivanich has quit IRC20:53
*** thiagoss has joined #meego20:53
*** ksinny has joined #meego20:53
*** ivanich has joined #meego20:54
*** phl0x81 has joined #meego20:54
*** Deck` has quit IRC20:54
*** ksinny_ has quit IRC20:54
aukewe should clear users in here once in a while too, lol20:55
w00t_auke: screw it, let's close down meego and start a new project20:56
w00t_there's too many people here! :-P20:56
TSCHAKeeehaha20:56
* TSCHAKeee gets ready to test Tablet UX on the Archos 920:56
* CosmoHill sets fire to octave20:56
*** tg has quit IRC20:58
*** ottela has quit IRC20:58
vgradeTSCHAKeee, hi20:59
TSCHAKeeerofl, ears burning? ;)20:59
TSCHAKeeehey Martin.20:59
vgradeTSCHAKeee, hows things20:59
TSCHAKeee;)20:59
*** villev has quit IRC20:59
TSCHAKeeegood, am taking some idle time from work to cobble together a tablet ux ks for archos9 just to see if it comes up21:00
vgradenice one, seen the N900 and vega videos21:00
TSCHAKeeecame back from an extended date/sexcapade in Dublin all nice and rested.21:00
TSCHAKeeeyes, I did..very nice :)21:00
TSCHAKeeeis the Vega using acceleration? or is it just drawing really well?21:01
*** ksinny_ has joined #meego21:01
vgradejust frame buffer21:01
vgradehave not managed to get any perfomance out of the panels though, still a slide show there.21:02
*** ksinny has quit IRC21:02
vgradeA9 should rock with tablet UX21:03
*** onen|openBmap has quit IRC21:03
vgradepanels idea is a little what we talked about, one QML app per panel for mce21:04
*** MoRpHeUz has quit IRC21:04
maligorvgrade, tablet ux checks for intel products ;-P21:05
maligorjk21:06
*** tg has joined #meego21:06
*** jbos_away has joined #meego21:06
TSCHAKeeeI'm really hoping now that Tablet UX is available21:07
*** ksinny has joined #meego21:07
TSCHAKeeethat I can start developing the prototype ideas for a new orbiter21:07
vgrademaligor, what do you mean checks?21:07
GAN900Going to Mars?21:07
maligorvgrade, it's intel code21:07
*** ksinny_ has quit IRC21:07
w00t_mnementh: were you going to merge async to libseaside master at some point, btw?21:08
maligorand jk means just kidding21:08
*** boiko_ has joined #meego21:08
maligorand tablet ux is very raw still21:08
TSCHAKeeeis it all running on a sort of generic QML engine?21:08
*** boiko has quit IRC21:09
w00t_TSCHAKeee: see: meego-qml-launcher21:09
*** magnetic__ has joined #meego21:09
*** ph0b028 has quit IRC21:09
vgradeyup, all code is on gitorious21:09
*** luist has quit IRC21:09
gabrbeddStskeeps: Do you know if mdecorator is still broken (I haven't checked last night's build)21:10
*** luist has joined #meego21:11
Stskeepsgabrbedd: i think it's still being discussed, it really wonders me that they pulled out entire decorator code for tablet ux21:11
Stskeepsi mean, something's wrong if not starting mdecorator doesn't do the trick :)21:12
*** luist has left #meego21:12
*** McMAGIC-- has quit IRC21:12
*** boiko_ has quit IRC21:13
Stskeepsgabrbedd: it's a patch that can be disabled, btw21:13
gabrbeddStskeeps: It looked to me like it broke mdecorator on the Handset UX... which IMHO is a major party foul21:13
*** andre__ has quit IRC21:13
arjanwho's working on the handset ux nowadays ?21:13
gabrbedd(That is, Handset UX, too)21:13
*** ph0b028 has joined #meego21:14
Stskeepsarjan: well, the thing is noone actually said anything about handset in ages - or what the new UX's goal is in general21:14
maligorI'd guess intel is pushing tablet now ;P21:14
*** boiko_ has joined #meego21:14
maligorand nokia people are wondering what they should be doing21:14
GAN900arjan, well, the whole unilateral dictate-from-Intel, behind-closed-doors, evidence-free way the last one went down was probably your core problem. :)21:15
Stskeepsthere's no word if 'tablet UX' is supposed to be the handset one too :)21:15
maligorStskeeps, it wouldn't work21:15
gabrbeddarjan: our company hansen't decided between Handset UX and Tablet UX.21:15
Stskeepsmaligor: was fairly decent for me21:15
timophwhy? I though it already works21:15
maligorStskeeps, yeah, but even with the touchscreen netbook I have at work, it's ... too ... wide?21:16
maligormaybe if it was reorder to center instead of left21:16
maligorbut still, it's massive21:16
Stskeepsarjan: if it's possible, 5 lines talking about the UX purpose on a mailing list would solve a lot of problems :)21:16
gabrbeddarjan: Tablet UX broke mdecorator, and I kind of like the whole array of apps thing.21:16
maligoris the rotation issue in the tablet ux still there?-)21:17
arjanI'll argue that mdecorator was already broken, just in different ways ;)21:17
arjanit's damn high up in the crash top 1021:17
Stskeepsmaligor: yes, but that's being investigated - it isn't as simple as it looks :)21:17
arjanas in ... number one in the list with 4x more crashes than anything else21:17
maligorit's certainly amusing :-P21:17
maligoror frustrating if you have to use it21:17
arjan(in case people care, this is the crash top 5:21:18
arjan    430 Guilty function: main in /usr/bin/mdecorator21:18
arjan    111 Guilty function: QGLWidget::event in /usr/lib/libQtOpenGL.so.421:18
arjan     61 Guilty function: ?? in meego-app-im21:18
arjan     55 Guilty function: main in /usr/lib/tumbler-1/tumblerd21:18
arjan     48 Guilty function: ?? in /usr/lib/meego-app-browser/meego-app-browser21:18
arjan     45 Guilty function: eglCreateImageKHR in /usr/lib/libEGL.so.121:18
arjan)21:18
gabrbeddarjan: Agreed... but it /existed/ (which can't be said for Tablet)...21:18
*** magnetic__ has quit IRC21:18
*** gouchi has joined #meego21:18
mnementhw00t_: I think i was waiting on dialer to finish testing. i'll double check and then yes21:18
gabrbeddarjan: And I can't get a straight answer on whether or not Tablet will have a replacement.21:18
mnementhabout to push async to tablet after we debug some proxy model issues21:19
*** BManojlovic has joined #meego21:19
*** BManojlovic has joined #meego21:19
mnementherr not tablet sorry but the UX git repos21:19
mnementhUX is handset tablet ivi... i believe21:20
Stskeepsand that's the clear message that's not there :)21:20
*** qgil has joined #meego21:21
thiagoarjan: why does your top 5 contain 6 entries? :-)21:21
Stskeepsbecause at the moment, people don't know if there's a seperate handset 'UX' under works, since it's called 'tablet UX', or it's all 'UX' for multiple verticals :)21:21
arjanthiago: because I can't count when I cut and paste21:22
arjanI actually have a top 50 that I pasted from21:22
thiagoarjan: I'm told you're the one who did the benchmarking of the performance penalty when using -fPIC21:22
*** SunilSaxena has joined #meego21:22
*** SunilSaxena has left #meego21:22
*** sjgadsby has joined #meego21:22
arjanI collected most of the data, I didn't do the actual typing to kick the benchmark21:22
arjan-fPIC is about 20 to 25% on 32 bit x86 ;-(21:22
arjan(which is a universal range that is used and confirmed all the time here)21:23
*** mmc1 has quit IRC21:23
arjanif you want to know where in the 20 to 25% range something will hit specifically we need to talk compiler and CPU versions ;-)21:23
thiagoright21:24
thiagobut my question is: was this tested with a regular application that has anywhere from 30 to 100 libraries loaded?21:24
mnementhStskeeps: it is meant for handset tablet and ivi or whatever device. i currently test my code on a tablet and handset21:24
Stskeepsmnementh: thanks21:24
thiagoI don't doubt that -fPIC code is slower due to the missing register and to the indirect addressing21:25
arjanthiago: pretty much; I've seen numbers in this range from browser benchmarks to .. to ..21:25
arjanthis is the overhead number if the majority of executed code is in the .so21:25
thiagobut I'm wondering if the impact is really relevant if most of the work is actually in the libraries21:25
arjanif half your work is in the main binary and half in library... thumb in the air number would be 12% cost21:25
arjanbut libraries MUST be -fPIC21:26
thiagoyes21:26
arjanyou can do some things to make it less costly21:26
mnementhStskeeps: there are design flaws on some things when you use them on a handset. i pulled out the index bar for contacts because on a handset it was unusable. i'm about to add another version back in. if you find issues with the code on a handset, file a bug. i know i need to add sms, im, call links into contacts. trying to figure out the best way to determine the difference between any generic dialer and tablet (runtime or compile time) deci21:26
arjanlike static leaf functions inside .c files will have less overhead potentially21:26
thiagosorry, I didn't get this: if half the work is in the libraries, the impact is 12%21:26
thiagoif it's majority in the libraries, it's 20-25%21:27
thiagocompared to what? Everything in the app compiled without -fPIC?21:27
Stskeepsmnementh: you got cut off in the end - but anyway, on the n900 we had UX running quite quickly after released, but yes, we'll feed back issues21:27
gabrbeddarjan: I wonder if your libEGL crash is related to bug 13274.21:27
_MeeeGoBot_Bug https://bugs.meego.com/show_bug.cgi?id=13274 cri, High, ---, peng.li, WAIT, mcompositor (Mesa, EGL) crashes on unchecked pointer21:27
arjanthiago: yup21:27
Stskeepsmnementh: one issue i see at the moment is that there doesn't seem to be lower-resolution (800x480) themes for UX, so that may be a performance hit21:27
arjancompared to effectively a static binary21:27
arjan(well not glibc static, but you know what I mean)21:28
Stskeepsmnementh: due to need to resize a lot21:28
*** ksinny_ has joined #meego21:28
w00t_there is something of a performance hit21:28
thiagoarjan: ok, so I have to ask: considering the libraries *are* there, what's the impact of having the app compiled as -fPIC, compared to the same app without?21:28
w00t_and also a memory hit21:28
w00t_Stskeeps: theme adds about 5mb onto meego-ux-daemon process21:28
mnementhStskeeps: the bugzillas are sort of in chaos IMHO so just file a bug as best as you can categorize it. as long as anything Contact related has my or Kaitlin's name on it we will see it. :)21:28
Stskeepsyep21:28
*** ksinny has quit IRC21:28
TSCHAKeeevgrade: do I have to use the emgd against the automotive adaptation kernel?21:29
mnementhStskeeps: file a bug on the theme :) and i will mention this to designers for you21:29
Stskeepsmnementh: thank you21:29
arjanthiago: you mean PIE.. well so that depends on how much work is done in the app21:29
thiagoarjan: yes, PIE21:29
arjanlike for a browser, most work is done in the main binary (because of the pic cost, they moved the work to the main binary)21:29
thiagoarjan: the reason I'm asking: yesterday we were discussing the booster/kdeinit hack (fork+dlopen of the app)21:29
thiagosomeone said you had said it was a bad idea due to the performance cost21:30
arjanthat breaks many other things21:30
w00t_arjan: meego-ux-daemon (for instance) does not do a lot of work21:30
arjanlike all security frameworks21:30
w00t_which is where we were discussing this about21:30
arjanbecause it's been proven (NSA level academic proof) that the only time you can safely assign a security context is at exec time21:30
w00t_sorry, qml-launcher21:30
arjanso fork+dlopen is an invalid optimization for that reason alone.21:30
thiagoright21:30
arjannever mind performance21:30
mnementhStskeeps: i passed your comment on low-res asset alternative on to designers for you and will let you know if i hear back21:30
thiagoso what we need is an improved loader21:31
arjanthiago: do we have proof the loader is at fault ?21:31
arjanfor the overhead?21:31
arjanalso we need 1) less symbols21:31
arjanand 2) prove that it's really link time21:31
thiagoyes, definitely21:31
vgradeTSCHAKeee, yes mate, are you going to take the latest EMGD21:31
arjansince we do prelink everything.. linking is not all that expensive21:31
thiagow00t spent a lot of time reducing the symbol exports of some libs21:31
arjanunless you do millions and millions21:32
thiagoprelinking is also a good thing21:32
w00t_not relevent to this21:32
w00t_I do plan to do the same thing for a lot of these libraries though21:32
thiagobut C++ does have thousands of relocations, even in simple libs21:32
TSCHAKeeevgrade: whatever emgd-bin points to, yeah, i think that's 1893?21:32
vgradeTSCHAKeee, you could use other kernel but you would need the EMGD patch from automotive21:32
w00t_assuming I ever figure out how to get a sane development environment setup21:32
arjanthiago: one thing I've been thinking about is to glob all qt libs into one .so21:32
arjanthen at least you don't need to do the cross .so linking21:32
TSCHAKeeevgrade: ok, just checking.21:32
arjan(and we can also avoid PLT hops between them anyway)21:33
thiagoarjan: hmm21:33
arjanin practice apps get the whole lot of them anyway21:33
thiagoarjan: never mind the BC breakage there, but that's an idea21:33
arjan(maybe not ALL, but there's a common set of maybe 8 or so that are joint)21:33
arjanBC breakage is inevitable at this point to get something to really perform21:33
thiagoit can be done on ELF21:33
thiagowithout BC breakage, that is.21:33
arjanwe need to get over that first, get it working, and at the end see if we can put BC back without damage21:33
thiagobut we have bigger fish to fry before21:34
*** thiagoss has quit IRC21:34
thiagoswap out the X11 code with Lighthouse on Wayland, bring OpenGL in (so one less lib)21:34
w00t_swapping out X11 removes a lot of libraries21:35
w00t_not one21:35
thiagomove the widgets out for non-desktop/netbook21:35
w00t_composite, fixes, ...21:35
*** ksinny has joined #meego21:35
*** ZogG has quit IRC21:35
vgradeTSCHAKeee, I don't think anyone outside intel boards have had 1893 runnig.  lbt tried with the 1893 userspace with my joggler (older automtive) kernel without much success.  So you do need a matched pair.21:35
* TSCHAKeee facepalms21:36
TSCHAKeeewhich one would that be?21:36
*** ksinny_ has quit IRC21:36
* w00t_ runs off to eat21:36
* lbt never got round to a kernel rebuild21:37
*** thiagoss has joined #meego21:38
mnementhStskeeps: We used to have different themes assets for the different devices but we haven't kept up with the lower-res versions so the answer is... there is a plan for it... and i will keep hounding them for you. :)21:38
*** MarcA-N has quit IRC21:40
*** githogori has joined #meego21:41
* Stskeeps heads off for some badminton21:41
Stskeepsbbl21:41
* mnementh heads to lunch21:41
vgradeTSCHAKeee, latest is in https://build.meego.com/package/show?package=kernel-adaptation-intel-automotive&project=Trunk, https://build.meego.com/package/show?package=emgd-bin&project=Trunk%3Anon-oss21:42
*** ZogG has joined #meego21:42
*** magnetic__ has joined #meego21:45
*** TheOpenSourcerer has left #meego21:47
*** Jade has quit IRC21:48
*** ksinny_ has joined #meego21:48
*** ksinny has quit IRC21:49
*** wathek has joined #meego21:51
wathekHi all21:51
wathekwhat's the difference between the pan gesture and the swipe gesture?21:51
CosmoHillI'd imaging that "pan" moves the image in that direction where as swipe moves to the next or previous image21:53
CosmoHill"pan" would be for zoomed in images21:54
*** balor has joined #meego21:54
wathekI see21:54
wathekyep21:54
*** balor has quit IRC21:54
*** balor has joined #meego21:55
*** Quilck has joined #meego21:56
*** leinir has quit IRC21:57
*** balor_ has joined #meego22:02
*** eti has quit IRC22:04
TSCHAKeeevgrade: linux-2.6.35-emgd-0002-1893-build.patch22:06
rustylynchsomebody remind me... what's the way we are suppose to annotate a bug # in changelogs, i seem to recall something like BEA#XXXX22:06
TSCHAKeeevgrade: that is in the latest automotive adaptation22:06
TSCHAKeeevgrade: so it looks like i have no choice.22:06
*** briglia has joined #meego22:06
*** tbf has quit IRC22:07
TSCHAKeeevgrade: I was able to get it up to an xterm, but the uxlaunched qml environment wouldn't come up22:07
rustylynchhmm.... i see use of BMC#XXXX22:07
gabrbeddrustylynch: I think I saw it doc'd on the wiki.  Possibly in the Packaging/Guidelines22:08
lbtFYI: I'm changing some ldap settings on c. OBS - it may affect osc/login briefly22:08
*** magnetic__ has quit IRC22:10
*** ksinny_ has quit IRC22:12
vgradeTSCHAKeee, thats the patch22:12
TSCHAKeeevgrade: yup, it looks like it's matched to 189322:13
vgradeTSCHAKeee, you get a black screen?22:13
TSCHAKeeei'm building my own copy in my repo22:13
TSCHAKeeevgrade: i can get an xterm22:13
vgradeI mean when you launch tablet ux22:13
TSCHAKeeevgrade: but if i let uxlaunch go, it just sits at a black screen, and if I ctrl-alt-F1 to the console, uxlaunch barfs and tries to relaunch X22:13
vgradetry tapping, swiping on the right hand side of the screen in the half way up22:14
vgradelock screen is invisible22:15
vgradewhat ks did you base your buld off22:15
TSCHAKeeethe one in trunk/latest .. 033022:15
TSCHAKeee2011033022:15
lbtrustylynch: http://wiki.meego.com/Packaging/Guidelines#Changelogs22:16
lbtrustylynch: been documented forever... totally ignored22:16
vgradeTSCHAKeee, good to know we have latest EMGD up.  That one should have working libva as well22:17
*** magnetic__ has joined #meego22:17
lbtand another of those "meego isn't thinking about it's customers" issues ... why are features called FEA# ? don't you think vendors will have their own FEA# too ...22:18
TSCHAKeeevgrade: nope, nothing seems to be happening... of course, show cursor is off now so i can't see shit :P22:18
*** tbf has joined #meego22:19
lbtrustylynch: BMC==bugs.meego.com22:19
*** k405 has quit IRC22:19
vgradeTSCHAKeee, try tapping swyping all around there have been some orientation issues22:19
TSCHAKeeeew22:20
TSCHAKeeelooks like only thing running is mcompositor22:20
TSCHAKeeethere should be other things running22:20
*** luist has joined #meego22:20
rustylynchlbt: ok, that makes sense... a bit obscure, but makes sense22:20
*** boiko__ has joined #meego22:21
vgradeTSCHAKeee, thats not right, you should have meego-ux-daemon, that kicks everthing else off22:21
vgradesec, while I boot the vega22:22
gabrbeddTSCHAKeee: Did you build your image with `--pkgmgr=yum` ??22:22
TSCHAKeeegabrbedd: nope i didn't.22:22
gabrbeddTSCHAKeee: I think I had something similar happen... and that fixed it.22:22
*** tg has quit IRC22:22
TSCHAKeeefreaky ok22:22
*** boiko_ has quit IRC22:22
TSCHAKeeegabrbedd: as option to mic-image-creator ?22:23
lbtrustylynch: was supposed to increase the reliability of automated changelog->bug tools22:24
lbtbut since we can't even link a changelog entry to a particular rpm file ... well...22:24
arjanlbt: which is fiction anyway22:24
lbtarjan: what's fiction?22:25
arjanthat changlog->tools things actually work22:25
lbtROFL22:25
arjanor changelog -> automatic statistics reporting22:25
lbtwe ran the whole thing in Nokia22:25
lbtit worked perfectly22:25
gabrbeddTSCHAKeee: yes.22:25
arjanit's putting the work on a lot of engineers to save one program manager from having to do work22:25
*** hugopl has quit IRC22:25
lbtno, it's not22:25
arjanlbt: it works in a completely closed system and by putting all the load on the engineers not the PMs22:26
lbtit's ensuring that developers who make small errors have them caught early22:26
lbtit ensures that you can focus on real issues22:26
lbttake a look at why packages are rejected22:26
lbtmost can be caught by tools22:26
arjanI know it's extremely frustrating22:26
arjanI built most of those tools in a previous life22:26
lbtthen the RE guys can actually focus on using their brains22:27
arjanbut we also make the bar too high22:27
lbtyeah - I build them for Nokia ... but you know that22:27
arjanwe reject things for nitpicking stuff too much as well22:27
lbtand by the way... who is "we"?22:27
lbtMeeGo?22:27
arjanwe as 'the whole meego project'22:27
lbtincluding the vendors?22:27
arjanwhatever goes into meego.com22:28
lbtwho very rarely get considered22:28
lbtthis is one of my major frustrations with meego22:28
lbtwe/you don't consider how vendors are supposed to use it22:28
arjandefine vendor22:28
arjanOSV or OEM ?22:28
lbtboth22:28
lbtmainly OEM here22:28
arjanwell meego IS an OSV22:28
arjanbut well22:28
lbtNokia? LGE?22:29
arjanto some degree you are right, but also to some degree their influence is proportional to the amount of work put in22:29
lbtsure you have elite engineers in MeeGo (and not that many .... less experienced ones)22:29
arjanwe (Intel) are working with (unnamed) OEM on a product just fine22:29
arjanand that seems to work out quite well22:29
lbtbut companies need to build product using their hired workforce22:29
*** xnt14 has quit IRC22:29
lbtand they need to automate and check22:29
lbthaving this in meego is eating your own dog food22:30
TSCHAKeeedamn my mic isn't new enough22:30
*** MohammadAG has quit IRC22:30
lbtand yes I'm talking about the whole BOSS vapourware thing22:30
*** tg has joined #meego22:31
lbtwe don't put enough effort into thinking how vendor e2e works - and the tools they need to manage repos22:31
arjanif only there were 48 hours in a day and 8 days in a week and I'd redo the tooling I did in the previous job22:31
lbt*nod*22:31
lbtI would like to use some experience you have there to make BOSS based automation work better22:31
maligorI think what you learn from android is that the OEM's will mess up the codebase so it's totally incompatible22:31
maligorand then they say they can't update it because the hardware isn't compatible22:32
*** hugopl has joined #meego22:32
lbtwell, my focus is on being able to present a rational and viable tooling suite22:32
lbtnot "thou shalt"22:32
gabrbeddWhat is BOSS?22:33
CosmoHillwhat about STFU?22:33
lbtit runs scripts one after the other using AMQP to ensure reliable processes22:33
CosmoHillSoftware Tools For U22:33
lbthttp://wiki.meego.com/Release_Infrastructure/BOSS22:33
maligorlbt, you mean to help them mess it up faster for the product, heh22:34
lbtand arjan "all the load" ... spelling bug# in a consistent way ?22:34
gabrbeddlbt: thanks22:34
*** larin has quit IRC22:34
*** divan has quit IRC22:35
arjanlbt: it's not the spelling of a bug number if a bug already exists22:35
arjanbut the stupidity of having to file a bug if none exists...22:35
arjanit all adds up.22:36
lbtwell hold on22:36
lbtthat's different22:36
lbtthat's a meego process22:36
w00t_that is admittedly annoying22:36
lbtnot a vendor process22:36
arjanif you're fixing a bug, mentioning it I am fine with.22:36
lbtbug-1073 you mean ?22:36
lbtcome on bug bot22:36
lbtbug NOK#101922:36
lbtbug NOK #101922:36
lbtbug BMC#101922:37
w00t_bug 107322:37
berndhsbut 101922:37
lbtoh, I guess it's off22:37
_MeeeGoBot_Bug https://bugs.meego.com/show_bug.cgi?id=1073 nor, Undecided, 1.0, michael.meeks, RESO DUPLICATE, Unable to add new Tasks (all languages, including English)22:37
w00t_just 'bug number' :p22:37
lbtyour bugzilla or mine?22:37
lbtso yes, it helps to be consistent about how you spell a bug22:37
lbtand in nokia we had rules about work that did actually result in shipped products22:38
*** andybleaden has joined #meego22:39
maligorbut nokia had a strong background on closed systems22:40
*** balor_ has quit IRC22:40
lbtmaligor: well, the products were closed, but they were built by OSS type people22:41
*** balor has quit IRC22:41
maligoryeah, but I mean symbian as the 'background'22:41
lbtand they used OSS technology and principles22:41
lbtnah, not really22:41
lbtall the Maemo was Debian22:41
maligormaemo/meego was relatively recent in nokia history22:41
*** wathek has quit IRC22:41
w00t_maligor: it's also what lbt is talking about ;)22:41
lbtyes, but it's very discrete in nokia22:42
lbtand not tarnished by S22:42
w00t_symbian doesn't really come into it22:42
maligoryeah, but I mean company rules and operation22:42
lbtso it's an engineering group who've done this for 7 years and shipped real debian/OSS based products22:42
maligoralbeit I don't know internals, and I've heard they gave too much power to the engineers ;P22:42
lbtyes they're in a corporate (like intel)22:42
lbtindeed - you can't have it both ways22:43
lbtso the point is ... there *are* things they learnt22:43
*** wathek has joined #meego22:43
lbtthe risk now is that due to some douche many mgmt levels up... these passionate engineers are labelled as WP7 freaks22:43
maligorisn't there a difference with intel however.. nokia sold products to consumers22:44
lbtand anything coming out of nokia is dismissed22:44
lbtmaligor: yes... that is the point exactly22:44
lbtmeego needs to understand what vendors need22:44
lbtand vendors == nokia22:44
lbtso nokia's "concepts" are what will drive vendor thinking22:45
maligorI'm not as confident as you are about that22:45
lbtwell, this is an irc chat - nuances aren't here22:45
lbtbut I think they will assess meego and see a lack of bug tracking and other 'good practice' and feel worried22:46
lbtnote "feel"22:46
maligoryou're too engineer centric22:46
lbt!22:47
lbtI'm manager centric22:47
lbtengineering manager, sure22:47
maligorwell, engineering manager would be the same thing22:47
lbtso, given the context of the chat, what makes you say that?22:47
maligor"lack of bug tracking and other 'good practices'"22:48
lbtyes...22:48
maligorno, they won't22:48
maligorquite frankly, marketing is all too often oblivious to this22:48
lbtdepends who "they" is and what they're assesing22:48
maligoron both sides22:48
lbtheh22:48
lbtwhen assess something like meego you have the marketing guys in the bar and the engineers by the whiteboard22:49
maligorI've known some engineers who went into marketing and they were really good22:49
*** MarcA-N has joined #meego22:49
maligorbut most just aren't22:49
lbtwhen they get back to base they discuss and consider22:49
*** dazo is now known as dazo_afk22:49
lbtthis is nothing to do with marketing22:49
lbtwhere "this" is the conversation I was in :)22:50
maligorbut it does22:50
lbtno, it doesn't :)22:51
lbtMeeGo does, for sure22:51
maligoryou don't need a perfect engineered system to sell the system22:51
lbtagreed22:51
maligorthe engineers will want that22:51
lbtgood ones won't22:51
lbtthey'll want a flexible one22:52
lbtthey'll want a framework22:52
*** magnetic__ has quit IRC22:52
lbtsome consistency22:52
maligorisn't that the perfect one then?22:52
*** wathek has quit IRC22:52
lbtwell no22:52
lbtframework is almost, by definition, incomplete22:53
maligorwell, I'd say that that a raw framework isn't a good idea, even from good engineers perspective22:54
lbtwe are in disagreement then22:54
maligorit means the testing will be delayed too much22:54
lbtwhat?22:54
maligorI mean non-engineer input22:55
lbtwhat?22:55
maligoryes, they're the rare species22:55
lbtso I'm talking about the processes used to manage the feature->product delivery process22:55
lbtwhat about you?22:56
lbtI don't care how we get features defined22:56
lbtI don't care if they use Qt or gtk to build it22:56
lbtclearly someone should22:56
lbtI don't22:56
maligoryou mean the crap the OEM's add ontop I guess by feature22:57
maligorI'm bad at manager speak I have to say22:57
lbtyou mean the stuff OEM's sell .... which drives revenue and pays my mortgage? yes22:57
lbtand I also care about how that pushes down into meego22:57
maligorI guess we were thinking about entirely different things, sorry about that :P23:00
*** LoCusF has quit IRC23:01
*** LoCusF has joined #meego23:02
*** tg has quit IRC23:02
*** andybleaden has quit IRC23:03
lbtmaligor: no problem...23:03
*** sergiusens has joined #meego23:07
w00t_thiago: you're an RPM-ite aren't you? is there a way to find and install the build dependencies for a package?23:07
*** murrayc has joined #meego23:07
*** kW_ has quit IRC23:08
lbtw00t_: obs can tell you23:08
lbtfor an obs package23:08
gabrbeddw00t_: something besides `zypper si -d` ?  (source install, dependencies only)23:09
*** kW_ has joined #meego23:09
w00t_gabrbedd: will give it a look, thanks23:09
lbtosc dependson if it helps23:09
mnementhw00t_: next contacts package has the correct IM pkgconfig depends. sorry about that. :)23:09
w00t_don't have obs/osc setup on my laptop23:09
w00t_er23:10
w00t_lenovo.. thing23:10
w00t_mnementh: cool stuff23:10
*** slummer has quit IRC23:11
*** sergiusens has quit IRC23:11
*** tg has joined #meego23:11
*** magnetic__ has joined #meego23:11
*** lynxis has joined #meego23:12
*** pcacjr has quit IRC23:12
*** sevarco has joined #meego23:13
*** swc|666 has joined #meego23:13
*** vblazquez has quit IRC23:14
*** thiagoss has quit IRC23:15
*** Frye has quit IRC23:18
*** lynxis has quit IRC23:19
* Stskeeps yawns23:20
* CosmoHill flicks a tick-tak in23:21
*** Aparna has quit IRC23:21
*** andybleaden has joined #meego23:23
*** mwichmann has quit IRC23:24
thiagow00t_: rpm -qRp packagename.rpm to find them23:26
thiagow00t_: to install the deps, use zypper23:26
*** pohly has quit IRC23:26
w00t_mmk, thanks23:26
lbtgoddam ldap23:26
*** slummer has joined #meego23:27
*** mwichmann has joined #meego23:27
*** murrayc has quit IRC23:32
*** murrayc has joined #meego23:32
*** balor_ has joined #meego23:33
*** balor has joined #meego23:33
*** sjgadsby has quit IRC23:34
StskeepsDawnFoster: btw, remember http://wiki.meego.com/MeeGo-Meeting_IRC_Schedule for TSG's23:36
*** Jade has joined #meego23:36
DawnFosteroh oops. You mean that page that I'm always nagging other people to update ;)23:37
Stskeepshehe23:37
Stskeepswill be a hell of a morning for me.. TSG, then n900 bug triage, then n900 common software/hardware adaptation23:37
* w00t_ won't be making any of those meetings for sure23:37
w00t_6am is usually when I go to bed23:37
w00t_:P23:37
Stskeepsw00t_: time to stop being a vamprie23:37
Stskeepsvampire23:38
w00t_i vannnttt to suuuck your blooood23:38
w00t_hey, i even have the right extended incisors for it23:38
w00t_:P23:38
DawnFosterupdated!23:38
*** Jade has quit IRC23:38
DawnFosterfunny - even the 11pm -midnight my time is past this old lady's bedtime :)23:39
*** mlwane has quit IRC23:39
*** Jade has joined #meego23:39
DawnFosterw00t_: now you have an excuse to stay up an extra hour23:39
*** Tsarpf has joined #meego23:40
*** OSW has joined #meego23:42
*** OSW has quit IRC23:42
*** tg has quit IRC23:44
w00t_DawnFoster: noooo :P23:44
*** tg has joined #meego23:44
w00t_i'm trying to make my routine less messed up23:44
w00t_not more23:44
lbtTSG at 6am ... neat23:47
andybleadenDawnFoster, Hi Any news on whether there is much new features coming up with meego 1.2 A few people asking on the boards and elsewhere in the last few days?23:47
CosmoHillthe last time I was up at 6am I hit them with a pillow for waking me23:47
*** TSCHAKeee has quit IRC23:48
*** TSCHAKeee has joined #meego23:48
*** balor has quit IRC23:48
*** balor_ has quit IRC23:49
*** balor_ has joined #meego23:49
*** balor has joined #meego23:49
gabrbeddandybleaden: I think one of the new features is an actual working (Handset|Tablet) UX.23:50
* lbt wonders what was wrong with a time that hit most of the MeeGo people at either early evening or mid morning ...23:50
DawnFosterandybleaden: this is the best place to get an idea of what is in 1.2 http://meego.com/about/roadmaps23:50
DawnFosterif you click on the x's you get the list of features tagged with that release23:51
DawnFosternot sure if tablet will be 1.2 or not23:52
andybleadenDawnFoster; sorry to confuse .I meant with the netbook. See I type SOO fast in meego I hit return to soon23:52
*** luist has quit IRC23:52
andybleadena23:52
*** mwichmann has quit IRC23:52
andybleadengabrbedd, sorry to confuse you too :)23:53
*** luist has joined #meego23:53
andybleadengabrbedd, DawnFoster  I  am also following tablet stuff etc but I mean only with netbook23:53
DawnFosterthe netbook stuff is listed on that page - not sure about new features.23:54
*** luist has quit IRC23:54
*** marciom has left #meego23:57
*** inz has quit IRC23:58
*** inz has joined #meego23:59
*** Wellark^ has quit IRC23:59
gabrbeddDawnFoster: Thus the pipe in my regex.  :-)  All the chatter here and on ML talks like Handset is dead, though.23:59

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