**** BEGIN LOGGING AT Sun Nov 28 02:59:58 2010 Nov 28 13:50:52 hi pespin Nov 28 13:50:56 here it is: http://pastebin.com/Ws4XhXVB Nov 28 13:55:38 pespin_, did you get my message? Nov 28 13:57:55 mdbus2 -s org.shr.phoneui /org/shr/phoneui/Settings org.shr.phoneui.Settings.DisplayQuickSettings has a workarround tough, with that I can use quick settings instead of settings to prevent dimming the screen Nov 28 14:04:40 GNUtoo|laptop, hi, sorry I'm in a house with some connection problems ;) Nov 28 14:04:58 np, I can wait Nov 28 14:05:04 I've found a workarround Nov 28 14:05:13 => i will make a script to do that dbus call Nov 28 14:06:28 it seems some versioning problem about E stuff + openssl Nov 28 14:08:34 GNUtoo|laptop, I would pass that traceback to #edevelop Nov 28 14:08:48 or to JaMa|ZzZ Nov 28 14:09:07 that's why I thought it was not in the code yesterday Nov 28 14:09:10 but in the packaging Nov 28 14:10:15 like libcrypto not build against openssl 0.98 or something similar. Nov 28 14:10:32 isn't it a mather of recompiling(PR bump) ? Nov 28 14:10:43 we're at openssl 1.0.0 Nov 28 14:10:46 or something like that Nov 28 14:10:50 1.0.0b Nov 28 14:11:14 ok Nov 28 14:11:27 but curl was upgraded yesterday Nov 28 14:11:32 ok Nov 28 14:11:33 so it should be built against it Nov 28 14:11:34 got it Nov 28 14:11:49 so I should wait for the feeds to catch-up Nov 28 14:12:09 iirc everything should be in feeds already Nov 28 14:12:42 do you have 7.21.2? Nov 28 14:13:19 of libcurl Nov 28 14:13:21 I'll look Nov 28 14:13:58 libcurl4 Nov 28 14:14:06 opkg list_installed | grep curl => libcurl4 - 7.21.2-r4.0.6 Nov 28 14:15:09 and the issue is only on htcdream, right? Nov 28 14:15:22 I don't know Nov 28 14:15:31 I'll check on om-gta02 Nov 28 14:15:38 I can start shr-settings on gta02 Nov 28 14:15:43 ok Nov 28 14:15:53 so I bet it is only with htcdream+official feeds Nov 28 14:15:58 if that's the case where it fails for you Nov 28 14:16:10 http://pastebin.com/Ws4XhXVB Nov 28 14:16:26 shr@opmbuild:~$ ls /var/www/shr.bearstech.com/shr-unstable/ipk/armv6-novfp/libcurl* Nov 28 14:16:30 /var/www/shr.bearstech.com/shr-unstable/ipk/armv6-novfp/libcurl-doc_7.21.1-r4.1.6_armv6-novfp.ipk Nov 28 14:16:33 /var/www/shr.bearstech.com/shr-unstable/ipk/armv6-novfp/libcurl4_7.21.1-r4.1.6_armv6-novfp.ipk Nov 28 14:16:38 hmm can you paste whole opkg info libcurl4? Nov 28 14:16:50 I guess you have libcurl from armv4t feed on your htcdream Nov 28 14:17:05 ah ok Nov 28 14:17:07 let me look Nov 28 14:17:40 possible because all packages are listed twice Nov 28 14:17:40 and I'll start another build on buildhost Nov 28 14:17:55 GNUtoo|laptop: check the one with state installed :) Nov 28 14:18:09 http://pastebin.com/Fd11kr4P Nov 28 14:18:29 indeed armv4t Nov 28 14:18:45 maybe that's why htcdream is slow? Nov 28 14:18:54 could be Nov 28 14:19:17 problem is that opkg doesn't reinstall packages when same version with better architecture gets available in feeds :/ Nov 28 14:19:24 ok Nov 28 14:19:29 so I install a new image? Nov 28 14:20:02 and armv4t is usually first in feeds, that's why I normally remove all "other" archs from /etc/opkg/*-feed.conf after flashing Nov 28 14:20:35 ouch ok Nov 28 14:21:06 but you can grep all armv4t packages in your image and reinstall those with -force-reinstall Nov 28 14:21:11 ok Nov 28 14:21:15 how do I do that Nov 28 14:21:19 what file should I grep Nov 28 14:21:22 there is a status file right Nov 28 14:21:23 ? Nov 28 14:21:37 yes or you can "export" it with list_installed Nov 28 14:21:58 and better to remove those .conf first and regenerate list with opkg update Nov 28 14:22:48 yes but list_installed doesn't show the arch Nov 28 14:23:26 I'll try second solution Nov 28 14:25:50 second solution obviously didn't work Nov 28 14:26:03 what should I do now? Nov 28 14:26:30 (rm some.confs ; opkg update;opkg upgrade didn't obviously work) Nov 28 14:26:42 because it doesn't upgrade if the arch is better Nov 28 14:27:44 GNUtoo|laptop, for x in `opkg list installed`; do opkg install --force-reinstall $x; done Nov 28 14:27:45 then I'll reinstall only libcurl4 Nov 28 14:27:53 reinstalling all the packages should work I suppouse :P Nov 28 14:27:56 Sharwin_F, isn't that dangerous? Nov 28 14:28:02 it reinstall *all* packages Nov 28 14:28:08 no idea xD Nov 28 14:28:29 * opkg_install_cmd: Cannot install package libcurl4. Nov 28 14:28:53 you could add an if grepping info from "opkg info $x | grep arch" == whatever Nov 28 14:29:01 before installing Nov 28 14:29:27 that seem hard Nov 28 14:29:32 I would need grep -C Nov 28 14:29:41 because arch is not on the same line than the package name Nov 28 14:29:52 I would have to do a complex script Nov 28 14:30:02 moreover I will need to clean the status file by hand Nov 28 14:30:07 which is not what I want to do Nov 28 14:30:14 try: grep 'Architecture: armv4t' -B 6 /usr/lib/opkg/status | grep ^Package | sed 's/Package: //' | xargs Nov 28 14:31:22 not sure if not-installed armv4t are removed from status after opkg update (without armv4t-feed.conf) Nov 28 14:31:38 if not then add grep also for installed state Nov 28 14:31:54 ok Nov 28 14:32:10 it's not Nov 28 14:33:25 so before grep Package add | grep 'install ok installed' -B 5 | Nov 28 14:33:42 14 packages armv4t Nov 28 14:34:09 I can't do it Nov 28 14:34:15 opkg is armv4t Nov 28 14:34:26 if I remove it....I've no more opkg Nov 28 14:34:34 after reinstalling those I would try it again with higher -B 9 (not sure if there are some optional lines between) Nov 28 14:34:59 grep 'Architecture: armv4t' -B 6 /usr/lib/opkg/status | grep ^Package | sed 's/Package: //' printed me all the packages Nov 28 14:35:01 thanks a lot Nov 28 14:35:11 yup that's problem of newer -force-reinstall implementation :/ Nov 28 14:35:35 before it just overwritten old files, now it removes and then installs :/ Nov 28 14:35:44 * JaMa|ZzZ leaving.. Nov 28 14:36:31 GNUtoo|laptop: for opkg you can unpack by hand :/ Nov 28 14:36:37 lol Nov 28 14:38:38 anyway thanks a lot Nov 28 15:15:40 has someone reported this to E? http://trac.shr-project.org/trac/ticket/1247 Nov 28 15:20:58 Heinervdm, I don't know but it's a big issue for me Nov 28 15:21:30 GNUtoo|laptop: for me too, as a lot of gtk apps aren't working Nov 28 15:21:42 indeed Nov 28 15:21:54 s/working/useable Nov 28 16:00:11 GNUtoo|laptop: hi is it you who was looking for a pre 2 ? Nov 28 16:00:27 GarthPS, not exactly,I'm mostly broke Nov 28 16:00:48 maybe ask morphis Nov 28 16:01:02 but I was proposed an old palm-pre not-2 not-plus Nov 28 16:01:14 I was asked if I was in the US Nov 28 16:01:17 GNUtoo|laptop: ok my bad I don't remember how did. Nov 28 16:01:22 I said that I was in italy Nov 28 16:01:31 and I didn't ear more Nov 28 16:01:54 GarthPS, I am interested in the palm-pre but don't plan to buy one Nov 28 16:02:09 GNUtoo|laptop: :) o, Nov 28 16:02:13 ok Nov 28 16:02:37 baiscally I was in france during the summer Nov 28 16:02:47 and I had the possibility to buy a palm-pre-plus Nov 28 16:02:52 but prices were too high Nov 28 16:03:20 so I ended up buying a n900 Nov 28 16:03:24 I was asking that because someone on palm france forum was selling one Nov 28 16:03:35 how much? Nov 28 16:03:41 350€ Nov 28 16:03:58 also there is the issue that I'm in italy Nov 28 16:04:01 so... Nov 28 16:04:06 If it's simlocked Nov 28 16:04:13 I wouldn't be able to use it Nov 28 16:04:21 <[Rui]> hms... current image won't connect to gsm? Nov 28 16:04:37 [Rui], current om-gta02 image? Nov 28 16:04:42 <[Rui]> yesh Nov 28 16:04:56 too bad Nov 28 16:05:05 <[Rui]> I thought I couldn't because I had upgraded with some i/o errors yesterday (didn't fsck before) Nov 28 16:05:08 GNUtoo|laptop: I heard that it can be unlocked Nov 28 16:05:11 ah possible Nov 28 16:05:15 GarthPS, ok Nov 28 16:05:31 <[Rui]> so I decided to get a fresh image (from yesterday) and no luck, it seems Nov 28 16:05:35 GNUtoo|laptop: http://forum.palmpre-france.com/viewtopic.php?id=915 Nov 28 16:06:38 they charge for it on the net? Nov 28 16:06:42 and here is the sale thread http://forum.palmpre-france.com/viewtopic.php?id=910 Nov 28 16:06:44 doesn't seem very secure Nov 28 16:06:50 GNUtoo|laptop: don't know Nov 28 16:07:33 but I read here too (or webos internal) that some one has something to try to unlocke the pre 2 Nov 28 16:07:35 anyway they sell palm-pre-plus Nov 28 16:07:41 too Nov 28 16:07:53 which is a lot cheaper and seem interesting Nov 28 16:07:59 too bad I'm not in Lyon Nov 28 16:08:16 I know no one in lyon Nov 28 16:08:21 if it was in paris.... Nov 28 16:08:25 it would have been easier Nov 28 16:08:38 but second hand is sometimes problematic Nov 28 16:08:51 because there could be some stuff that doesn't work as expected Nov 28 16:08:56 such as the battery Nov 28 16:09:14 GNUtoo|laptop: hum.. Nov 28 16:09:40 the palm-pre-plus could be interesting Nov 28 16:09:42 16G Nov 28 16:09:58 palm-pre 2 is nearly the same and only has a faster cpu Nov 28 16:10:03 so not very interesting Nov 28 16:10:17 GNUtoo|laptop: yop Nov 28 16:10:36 (it's not that I don't like faster CPU, but it's that it's not cheap) Nov 28 16:11:54 GarthPS, how's the pre-2 with SHR? Nov 28 16:12:04 <[Rui]> it seems phonefsod wasn't started Nov 28 16:13:54 uhm adair I upgraded yesterday and my phone is connecting fine Nov 28 16:15:39 mickeyl, hi, does fsogsmd supports "message status support"? I'd like to activate it, since last 2 multi-part sms I've send using phoneui didn't arrive to its destination :S Nov 28 16:16:01 pespin-: at least with ogsmd it works Nov 28 16:16:18 lindi-_, uhm how do I activate it? there's some method in dbus? Nov 28 16:17:25 GNUtoo|laptop: did not tried yet Nov 28 16:17:27 (I don't have my FR near right now) Nov 28 16:17:37 GarthPS, ok Nov 28 16:17:46 GarthPS: next week if morphis did me a kernel for the pre 2 Nov 28 16:17:53 GarthPS, basically it could be a good idea to document what works and what doesn't Nov 28 16:18:04 GNUtoo|laptop: yeah sure! Nov 28 16:18:05 a lot of stuff is untested Nov 28 16:18:11 and some stuff is undocumented Nov 28 16:18:29 for instance I don't know if keyboard is fully mapped, works somehow, or doesn't work at all Nov 28 16:18:30 pespin-: iki.fi/lindi/openmoko/sms-send Nov 28 16:18:55 GNUtoo|laptop: ok I have to go. next time. Nov 28 16:19:29 ok Nov 28 16:20:00 GNUtoo|laptop: but yep I want to do that the must consistant possible Nov 28 16:20:06 GNUtoo|laptop: CU Nov 28 16:20:55 ok see you Nov 28 16:23:03 lindi-_, do you know if this can this be set by default in some config file? I'd like to simply activate it or not for all messages I send without having to set it with each sms Nov 28 16:24:58 pespin-: what program do you use for sending sms? Nov 28 16:25:10 phoneui Nov 28 16:25:37 pespin-: maybe you could add an option to that Nov 28 16:26:22 I think best solution would be to have default value in freesmartphone config, and then modify it manually or using some GUI (like shr-settings) Nov 28 16:27:02 pespin-: how would you disable it then if it was done in ogsmd? Nov 28 16:27:28 lindi-_, settinf the default value to false Nov 28 16:27:31 *setting Nov 28 16:28:07 there should be one persistent value loaded at FSO startup. and then some dbus method to change it. Nov 28 16:28:40 and then, if you want, you can change it per message if you (don't) need it for some specific purpouse. Nov 28 16:28:45 pespin-: maybe it's just me but I'd keep it in the clients Nov 28 16:29:14 like you do in your script. You could add a boolean param there to request the status sbmission message or not. Nov 28 16:29:26 if you don't put anything, jsut do whatever you set by default Nov 28 16:30:20 lindi-_, why? I think setting it in FSO gives more independence and easier development for clients. Nov 28 16:31:03 if I have several apps for messaging, I don't want to change the status on each one. Nov 28 16:32:01 pespin-: then all apps need to handle all possible combinations of options Nov 28 16:32:31 lindi-_, btw, I'm not saying to remove it from client capabilities, but just add default options for the apps which doesn't want to handle that and just use what the user set by default Nov 28 16:34:13 lindi-_, as its done now, all apps need to add functionality for this. If we are able to set a default for FSO apps, it's up to the apps to add more complexity and capabilities or do things more easy for the user Nov 28 16:35:18 then I can ie. use shr-settings or change conf file to change the way all the apps behave at once. Nov 28 16:36:04 and then toggle states for individual apps if necessary. Nov 28 17:02:13 Hi! Is eve on the freerunner fast enough to use realtime ajax? Especially, is it fast enough to use a search suggestion tool? Nov 28 17:02:29 <[Rui]> peterq: not sure Nov 28 17:02:38 <[Rui]> have an exaple so I can test? Nov 28 17:05:04 pespin-: look at my debian chromium-browser bug reports, they have some benchmarks Nov 28 17:05:13 pespin-: submitted with timo.lindfors@iki.fi Nov 28 17:06:23 lindi-_, peterq ^ not me! ;) Nov 28 17:07:05 ah indeed Nov 28 17:07:09 [Rui]: Not yet, I'm currently deciding how to implement it ;-) Nov 28 17:07:31 <[Rui]> peterq: honestly, network speed is probably the biggest issue Nov 28 17:07:41 [Rui]: No, the server is on the local host Nov 28 17:08:13 I think I'll implement it using ajax in any case, but leave the trigger event configurable. Nov 28 17:08:36 i.e. timeout or button press Nov 28 17:43:54 hi mrmoku Nov 28 17:44:10 btw is it possible to view youtube on SHR? if so how? Nov 28 17:44:22 I tried the following approachs: Nov 28 17:44:29 *using gnash => too slow Nov 28 17:44:50 *using gnash to dowload the video => ok but uses 100% cpu and so uses the battery a lot Nov 28 17:45:07 * using http://m.youtube.com Nov 28 17:45:21 works on my desktop with gstreamer-totem but not on the device with mplayer Nov 28 17:45:30 neither on my desktop with mplayer Nov 28 17:45:52 if I remember well trevino made an app Nov 28 17:45:57 but I was never able to run it Nov 28 17:46:08 because it didn't compile or something like that Nov 28 17:49:13 GNUtoo|laptop: 1) youtube-dl Nov 28 17:49:22 yes that's possible Nov 28 17:49:29 but I wonder how much deps it requires Nov 28 17:49:39 feel free to wonder :) Nov 28 17:49:41 I also tried to compile clive but I don't remember succeding Nov 28 17:49:47 or cclive rather Nov 28 17:51:07 both clive and cclive seem to be in debian Nov 28 17:51:40 ok Nov 28 17:51:45 but I run SHR unfortunately Nov 28 17:51:57 maybe I should try cclive again Nov 28 17:53:48 GNUtoo|laptop: debian chroot? Nov 28 17:53:50 :) Nov 28 17:53:57 lol Nov 28 17:54:15 maybe python deps are better Nov 28 17:54:22 as they take less space Nov 28 17:54:27 why worry about space? Nov 28 17:54:58 because I've tons of music Nov 28 17:55:14 get larger SD card Nov 28 17:55:22 32GB are expensive Nov 28 17:55:24 and I'm broke Nov 28 17:55:46 so for now I keep 16G + 32G Nov 28 17:55:52 16G microsd Nov 28 17:55:56 and 32G onenand Nov 28 17:55:58 on n900 Nov 28 17:56:06 n900? Nov 28 17:56:15 yes I'm trying to free it Nov 28 17:56:32 SHR is running on it Nov 28 17:56:43 not maemo/meego/whatever Nov 28 17:56:44 only SHR Nov 28 17:56:53 the kernel is flashed instead of maemo's one Nov 28 17:56:58 so it boots to SHR only Nov 28 17:57:03 GNUtoo|laptop: phone calls? Nov 28 17:57:07 not yet Nov 28 17:57:08 <[Rui]> youtube-dl should work for easy download Nov 28 17:57:30 but ofono is free software Nov 28 17:57:38 so is the plugin for the nokia modem Nov 28 17:57:53 so sre who is someone, did an initial implementation of a lib Nov 28 17:58:06 which does registering to the network Nov 28 17:58:08 pin Nov 28 17:58:18 and similar but no phonecalls/sms/3g yet Nov 28 17:58:21 I wonder what to do Nov 28 17:58:33 I'm not good in libs designs Nov 28 17:59:08 hi GNUtoo|laptop Nov 28 17:59:15 hi mrmoku Nov 28 17:59:27 mrmoku, I saw you bugreported for the top bar Nov 28 17:59:29 we should add alsa states for n900 to fsodeviced Nov 28 17:59:36 GNUtoo|laptop: no, was not me Nov 28 17:59:44 probably just got assigned to me :P Nov 28 17:59:45 ah ok but you took the bug Nov 28 17:59:47 ok Nov 28 17:59:52 auto-assigned ;) Nov 28 17:59:57 ah right Nov 28 18:00:00 devilhorns still not there :/ Nov 28 18:00:03 all new bugs goes to you Nov 28 18:00:05 ok Nov 28 18:00:10 who is devilhorns Nov 28 18:00:19 GNUtoo|laptop: coder of illume2 Nov 28 18:00:24 ok Nov 28 18:00:36 maybe we should just give mokowm a chance :) Nov 28 18:01:11 who/what is mokowm? Nov 28 18:01:18 the android-like wm? Nov 28 18:01:26 yeah, the one from daniele Nov 28 18:01:30 ok Nov 28 18:01:36 hmmm Nov 28 18:01:40 why not bumping PR Nov 28 18:01:42 might be tooo android like ;) Nov 28 18:01:47 s/PR/srcrev Nov 28 18:02:06 of what? Nov 28 18:02:54 TAsn: who is the man to talk to about illume2 bugs? Nov 28 18:04:36 GNUtoo|laptop: anyway... for the alsa-state files... I'm planning to capture them with alsamixer from maemo Nov 28 18:04:49 ok Nov 28 18:04:54 and add them to fsodeviced Nov 28 18:05:07 of the top-bar package Nov 28 18:05:23 yeah, I know top bar is more important :P Nov 28 18:05:29 though I have no idea where to look at Nov 28 18:05:34 I'll try then Nov 28 18:05:38 do the alsa-states then Nov 28 18:05:41 ok Nov 28 18:07:40 it's named.... Nov 28 18:07:44 illume-indocator Nov 28 18:08:02 illume-settings->plugins->mobile Nov 28 18:08:47 btw maybe we should redesign a bit the illume2 theme Nov 28 18:08:56 a list of the running apps would be cool Nov 28 18:09:02 it was present in illume1 Nov 28 18:09:22 with tons of apps it's annoying to switch between them with just a next button Nov 28 18:10:20 /usr/lib/enlightenment/modules/illume-indicator Nov 28 18:10:47 it's part of e-wm Nov 28 18:10:56 so maybe we should bump EFL_SRCREV Nov 28 18:11:12 Heinervdm: iirc [Rui] was talking about #1247 with raster or someone when trying to fix topbar over lock screen Nov 28 18:11:35 GNUtoo|laptop: TAsn was working on that (in secret :P) Nov 28 18:11:42 dunno what state it's in Nov 28 18:11:44 ah ok Nov 28 18:11:47 JaMa|ZzZ: so it should be known to them Nov 28 18:11:52 <[Rui]> JaMa|ZzZ: that and make the idle screen ignore the keyboard resize Nov 28 18:13:59 GNUtoo|laptop: btw. I don't think the problem necessarily lies within the indicator module itself Nov 28 18:14:18 actually quite probably not Nov 28 18:15:16 shhh, don't tell. Nov 28 18:15:26 TAsn: PUSH ;) Nov 28 18:15:33 I stopped quite fast :( Nov 28 18:15:37 we want it Nov 28 18:15:38 ahh Nov 28 18:15:40 someone with nice boot.scr for n900? I'm not sure if their u-boot can read btrfs :/ Nov 28 18:15:42 I got to the point where I can list the windows Nov 28 18:15:46 from outside of a module Nov 28 18:15:51 which means we can create an elm list Nov 28 18:15:54 so that's pretty ready Nov 28 18:16:00 if anyone wants the code. Nov 28 18:16:13 JaMa: I think I already asked... but don't remember if you responded :) Nov 28 18:16:20 you're dual-booting to SHR with u-boot? Nov 28 18:16:56 mrmoku: yesterday I've installed u-boot and I'm dual booting maemo, meego with it sofar Nov 28 18:17:08 TAsn: first we should solve the topbar problem Nov 28 18:17:10 JaMa: ahh, ok Nov 28 18:17:29 JaMa: I did not manage to boot SHR... neither with boot.scr nor with a kernel on a third fat partition Nov 28 18:17:33 mrmoku: for SHR I have to update env or provide boot.scr (which should be read from 1st uSD partition, but not sure if btrfs is ok) Nov 28 18:17:56 I think with meego u-boot only fat is ok :/ Nov 28 18:17:58 mrmoku: now I have to type "run noloboot" to boot to maemo :) Nov 28 18:18:01 does not even read ext2 Nov 28 18:18:07 JaMa: yeah :) Nov 28 18:18:38 btw. building from scratch with my new i5 for the first time :D Nov 28 18:18:41 mrmoku: but then why does it expect boot.scr on 1st partition where is btrfs and kernel on vfat on 3rd Nov 28 18:18:50 why not put both on 3rd or 1st Nov 28 18:19:06 good question Nov 28 18:19:15 maybe I'll just build own u-boot and repartion for my needs Nov 28 18:19:22 I did a recipe for that Nov 28 18:19:30 mrmoku, i5 - nice :P Nov 28 18:19:31 problem is that with our toolchain it does not work correctly Nov 28 18:19:40 but then it's pain again do have everything different then all others Nov 28 18:19:49 if I build u-boot with the old om toolchain it works Nov 28 18:20:01 well... it does not have to be that different Nov 28 18:20:09 ah.. iirc we have some patch for gcc-4.5 in OE u-boot Nov 28 18:20:15 ohh Nov 28 18:20:26 TAsn: yeah, a nice clarkdale :) Nov 28 18:20:39 TAsn: running ArchLinux :) Nov 28 18:22:43 sweet :) Nov 28 18:22:44 JaMa: my problem was that built with OE u-boot was building and somehow working Nov 28 18:22:50 just booting a kernel did not work Nov 28 18:23:02 same thing built with old om toolchain did boot the kernel Nov 28 18:33:36 GNUtoo, I got youtube-dl working on shr some days ago. It worked fine afair, but I'm not sure, don't remember quite well hehe Nov 28 18:34:07 ok Nov 28 18:34:18 do you have a recipe? Nov 28 18:36:36 GNUtoo, nop. But it's only 1 python file Nov 28 18:36:54 which has tons of deps Nov 28 18:37:04 JaMa, hi superman, I'm having some problem with shr-image ;) http://paste.pocoo.org/show/297239/ Nov 28 18:37:23 GNUtoo, afair you'll need to install 2 o 3 python packages Nov 28 18:37:41 GNUtoo, just launch it and look at the import errors on tracebacks ;) Nov 28 18:38:18 ok Nov 28 18:38:48 JaMa, btw, thanks for the info on glibc the other day Nov 28 18:40:26 IOError: [Errno 5] Input/output error Nov 28 18:40:36 are you sure it's not hw problem? Nov 28 18:41:42 JaMa, could be Nov 28 18:42:13 in fact I have lots of problems with the hard drive I use for data Nov 28 18:42:27 check dmesg if there is something about I/O error too Nov 28 18:42:31 it even hangs everything Nov 28 18:42:36 if yes then probably not OE fault Nov 28 18:42:48 here it sometimes resets SATA ports Nov 28 18:43:02 when there is some error on SATA channel Nov 28 18:43:24 then all I/O waits for port availability (really annoying) Nov 28 18:43:24 ok I'll try after rebooting the PC and running fsck Nov 28 18:43:42 I'm using IDE here Nov 28 18:44:16 GNUtoo, list of my python modules installed (there are some which you won't need probably, as I tried other python apps too) http://paste.pocoo.org/show/297242/ Nov 28 18:46:51 JaMa, I have an IO error party here ;) http://paste.pocoo.org/show/297250/ Nov 28 18:46:58 but it happens usually Nov 28 18:48:37 GNUtoo, btw, did you get flac working on enjoy+OE? Nov 28 18:50:23 no Nov 28 18:50:31 I was waiting for it Nov 28 18:51:54 ok I might try later Nov 28 18:52:33 ok thanks Nov 28 18:54:11 pespin: I would check disk and cable and of course backup everything :) Nov 28 19:05:22 GNUtoo, btw, I've been trying enjoy while moving in the city and it works better than excpeted on the gta02 :) Nov 28 19:11:08 mrmoku: Hi, jesus mccloud told me, I should ask you for write access to shrgit, to push new nEo-theme Nov 28 19:16:23 Paulus: send me you're ssh pubkey please :) Nov 28 19:16:27 mrmoku: btw did usbcon in n900 u-boot work for you? Nov 28 19:16:35 JaMa: usbcon? Nov 28 19:16:41 ahh.. u-boot Nov 28 19:16:42 did not try Nov 28 19:16:50 to connect from pc to u-boot Nov 28 19:16:56 through ttyUSBx Nov 28 19:17:24 pespin, ok Nov 28 19:17:26 brb Nov 28 19:18:20 JaMa, if it worked it would be cool but I didn't look into it enough Nov 28 19:20:19 JaMa, argh, rebooting+fsck didn't help. I continue having IO errors Nov 28 19:25:25 pespin, what device? Nov 28 19:25:33 microsd or NAND? Nov 28 19:27:18 GNUtoo, PC hard drive lol Nov 28 19:27:31 pespin, ouch Nov 28 19:27:41 then backup the content Nov 28 19:27:44 I can't bitbake package-index Nov 28 19:27:56 use SMART to find out the cause Nov 28 19:28:04 s/use/and use/ Nov 28 19:28:04 GNUtoo|laptop meant: and use SMART to find out the cause Nov 28 19:28:12 * pespin googles for smart Nov 28 19:28:37 http://en.wikipedia.org/wiki/S.M.A.R.T. Nov 28 19:29:08 google is not always the answer(/me prefers wikipedia) Nov 28 19:32:32 GNUtoo|laptop, it is! first link in google is wikipedia :P Nov 28 19:32:41 ok lol Nov 28 19:36:19 well, in any case, it seems I'll have to clean OE and start from scratch Nov 28 19:38:00 pespin: won't be much better on faulty hw Nov 28 20:14:02 hmm... 5 hrs for a n900 lite image from scratch is something I can live with :) Nov 28 20:20:57 5h of compilation ? Nov 28 20:22:00 yup Nov 28 20:22:20 well... downloading... compilation... packaging Nov 28 20:22:28 all what is involved in building :-) Nov 28 20:30:36 GNUtoo|laptop: nice.... stereout and switching to headset works fine :-) Nov 28 20:30:45 nice!!!! Nov 28 21:10:51 JaMa: hi, btw how do you merge new stable kernels (e.g. 2.6.34.1 2.6.34.2 and so on..) Nov 28 21:11:21 JaMa: when i do git merge v2.6.34.1 i get conflict on some files which is quite strange... Nov 28 21:27:05 radekp: rebase -i and replace first patch in repo with newer stable kernel patch Nov 28 21:27:18 radekp: partially because that's also how it's applied in OE Nov 28 21:27:47 radekp: whole stable patch on top of release tarbal and then patches from shr repo Nov 28 21:28:06 radekp: so I want them rebased on top of latest stable patch Nov 28 21:28:20 SHR: 03raul1 07shr-themes * re6af500b2a73 10/ (14 files in 4 dirs): added support for illume2 and the modules: home, home-toggle, kbd-toggle, mode-toggle, illume-indicator Nov 28 21:41:33 JaMa: oki thanks Nov 28 22:26:17 SHR: 03raul1 07shr-themes * raf8d5ecb5cbe 10/ (14 files in 4 dirs): e-wm-/elm-theme-neo: added support for illume2 and the modules: home, home-toggle, kbd-toggle, mode-toggle, illume-indicator Nov 28 23:01:58 guys , is there a mailing-list specific to FSO ? Nov 28 23:02:52 I mean where I can ask a question about the use of the framework ? Nov 28 23:05:02 Some people have asked about the status of evopedia in SHR. If you want to test it, it should be usable again. Please use the git version ( http://gitorious.org/evopedia/ ). Nov 28 23:07:24 You have to download an archive, change ~/.evopediarc accordingly, run evopedia and point you browser to http://localhost:8080/ . Nov 28 23:13:20 <[Rui]> peterq: that's great! I've downloaded a dumprecently only to find out it wasn't working :) Nov 28 23:15:33 [Rui]: Are you able to compile and test it? Unfortunately, I don't have a Freerunner anymore to test it. Nov 28 23:15:57 <[Rui]> peterq: that's so bad... Pulster is having a nice deal now Nov 28 23:16:27 <[Rui]> peterq: I doubpt I'll be able to do it tonight Nov 28 23:16:33 <[Rui]> I'm fighting drupal blank pages Nov 28 23:16:54 [Rui]: No problem, but it would be great if I could get some feedback some time. Nov 28 23:17:06 <[Rui]> peterq: you're evopedia's author? Nov 28 23:17:17 [Rui]: yes Nov 28 23:17:41 <[Rui]> peterq: allright! thanks for it :) **** ENDING LOGGING AT Mon Nov 29 02:59:57 2010