**** BEGIN LOGGING AT Tue May 22 02:59:59 2012 May 22 03:00:39 Sc0rpius, huge thanks, but something is still wrong... May 22 03:00:46 it doesn't replace anything May 22 03:00:52 what OS are you using? May 22 03:00:52 or my file got fcked somehow May 22 03:00:57 Maemo :P May 22 03:01:03 doing everything on device May 22 03:01:19 I'll restore file from pastebin I've sent You May 22 03:01:34 maybe during trial and error I've failed to restore original content at some point May 22 03:01:44 I'm fighting with it for freaking 6 hours May 22 03:02:02 beford for 1,5 hour too :P May 22 03:02:13 it works here May 22 03:02:22 challenge solved May 22 03:02:23 xD May 22 03:02:30 let me ssh to the n900 and check May 22 03:03:51 it works ok here with the file May 22 03:04:04 Sc0rpius, zerobin links give me - after pasting - output without new lines May 22 03:04:24 could You please re send me my own file :P as my own link doesnt work for me? May 22 03:04:31 yeah it sucks but there's a workaround May 22 03:04:33 press Clone May 22 03:04:36 and copy/paste from there May 22 03:04:38 lol May 22 03:04:40 thanks May 22 03:06:16 wors on the n900 for me May 22 03:06:36 yea, it works! Sc0rpius and beford, You're my heroes ;) May 22 03:06:47 if you want to be purist May 22 03:06:55 small glitch only - need more escaping on TYPE=/"swap/" May 22 03:06:59 ? May 22 03:07:01 you can replace \t for the blank spaces you need to be in the exact indentation May 22 03:07:03 but I'll manage May 22 03:07:15 yes May 22 03:07:17 more scaping May 22 03:07:22 http://pastie.org/3947969 May 22 03:07:31 wait, wait, what \t May 22 03:07:44 the script was a \n\t (a tab after the newline) May 22 03:08:05 I see May 22 03:08:07 yes yes May 22 03:08:09 here: \n\tblkid May 22 03:08:11 found it May 22 03:08:29 you can replace \t for several spaces so it's just below the previous line in perfect identantion May 22 03:08:32 and I can delete /t with exact number of spaces? May 22 03:08:38 \t is tab, yep? May 22 03:08:40 yeah May 22 03:08:50 but tab is 8 spaces May 22 03:08:52 and you need 6 May 22 03:09:50 I noticed small problem May 22 03:09:59 $swap2 is passed like that May 22 03:10:04 not it's value May 22 03:10:11 probably something easy will check that May 22 03:10:33 its being scaped May 22 03:10:38 I thought you wanted literal $swap0 and $swap2 May 22 03:10:40 remove \ before $ May 22 03:10:54 then they will be empty May 22 03:11:11 he had them defined on his script May 22 03:11:14 because $swap0 and $swap2 will be sed variables not the outer script variables May 22 03:11:24 oh and THAT'S a problem difficult to solve May 22 03:11:47 Sc0rpius, maybe just May 22 03:11:48 nah it will work. May 22 03:11:50 it will work May 22 03:11:53 I just tested it May 22 03:12:01 export swap2="ANYTHING" May 22 03:12:04 create $forsed variable to feed sed May 22 03:12:09 and then ran the script without the \ before the $ May 22 03:12:10 and it worked May 22 03:12:15 ok May 22 03:12:20 thanks... May 22 03:12:27 yetp why swap0 is properly translated May 22 03:12:31 and swap2 not? May 22 03:12:50 export should be just one line above sed? May 22 03:13:19 btw, why blkid || grep works as blkid \| grep May 22 03:13:33 i.e. one escape one pipe = two pipes as result? May 22 03:13:43 heh that's funny May 22 03:13:51 use swap3 instead of swap0 and it will work May 22 03:14:07 ?! May 22 03:14:09 I have to look why a $variableendingin0 won't work May 22 03:14:17 but it just don' May 22 03:14:19 dont May 22 03:14:22 btw swap0 was translated properly only 1st time, 2nd time failed May 22 03:14:45 look, on first place it replaced it with /dev/mmcblk1p2 May 22 03:14:47 oh May 22 03:14:51 then just put a g at the end May 22 03:14:52 on second apperance it haven't May 22 03:15:00 hm? May 22 03:15:08 sed "s@/sbin/swapon \-a || echo \"Failed to enable paging partition.\"@blkid \-g\nblkid \| grep $swap0.*TYPE=\\\\\"swap\\\\\" \&\& /sbin/swapon $swap3 \|\| /sbin/swapon $swap2@g" May 22 03:15:12 see the g at the very end? May 22 03:15:18 yea May 22 03:15:29 what does it matter? haven't found it in docs May 22 03:15:34 that will make process the line several times May 22 03:15:40 it does!! May 22 03:15:42 oh May 22 03:15:58 I used wrong wording May 22 03:16:01 I mean't May 22 03:16:02 so that's why swap0 wasn't working the second time. May 22 03:16:07 "what does it means" May 22 03:16:25 s/means/mean May 22 03:16:32 s/means/mean/ May 22 03:16:32 Estel_ meant: s/mean/mean May 22 03:16:37 of, whatever ;) May 22 03:16:38 g means global May 22 03:16:41 ok, I'll try... May 22 03:17:20 yeah it means "Global replacement" May 22 03:17:30 without it, it'll only replace the first occurrence of everything that matches May 22 03:17:47 http://www.grymoire.com/Unix/Sed.html#uh-6 May 22 03:18:11 now it works 100% ok :) (I just tested it) May 22 03:19:27 almost there... it's just that now scrpt never ends May 22 03:19:30 script* May 22 03:19:55 adjust-rcS-late, upon calling, is processing infinitely May 22 03:20:12 well I'm not running your script just the sed line over the file May 22 03:20:24 Yea, suspected that May 22 03:20:28 somehow adding g May 22 03:20:45 made it run forever (and after killing, original file content isn't changed) May 22 03:20:54 any idea how to make it terminate properly? May 22 03:21:25 false alarm, I'm just idiot May 22 03:21:32 (frankly, just tired) May 22 03:21:41 copied it without specifying file etc May 22 03:21:43 fixing May 22 03:21:51 anyway IO'm wondering why you use -i May 22 03:21:52 I'm May 22 03:22:06 oh to replace the file May 22 03:22:11 that's a dangerous option May 22 03:22:18 inplace edit yea May 22 03:22:22 yeah May 22 03:22:31 well editing the file is dangerous May 22 03:22:36 :P May 22 03:23:59 yea! May 22 03:24:08 now tell me why are you doing all this in the first place May 22 03:24:29 just required micro fix for ammount of spaces and it works great! May 22 03:24:40 thanks a lot Sc0rpius, You're awesome, You know? May 22 03:24:46 and I agree sed is great May 22 03:24:51 haha not really but I've been working with sed for a long time May 22 03:24:54 ~apologise sed May 22 03:24:54 and awk too May 22 03:25:00 and sed+awk is a very powerful combination May 22 03:25:04 as for why I need it May 22 03:25:12 yea, but sometimes tricky May 22 03:25:22 I prefer perl <3 May 22 03:25:26 are you Piotr? May 22 03:25:30 I'm preparing package for repos, which contain... well, let me paste my description: May 22 03:25:32 yes :) May 22 03:25:38 oh so you're running for the council May 22 03:25:42 yea May 22 03:25:57 the results will be the day after tomorrow I guess May 22 03:26:22 I should go back to my Whatsapp client for N900 May 22 03:26:34 the java based? May 22 03:26:38 no I'm making my own May 22 03:26:40 Qt based May 22 03:26:53 the project is fairly advanced May 22 03:27:04 but still not ready for people use May 22 03:27:04 hm, nice May 22 03:27:14 it sounds like quite huge task May 22 03:27:25 Sc0rpius, here is description of what I'm cooking May 22 03:27:26 http://sebsauvage.net/paste/?a024cb4a7357d82d#59rshwfdfjqUzPpYIwwfwG3MdeAsADMcBwOJD/Xamb0= May 22 03:27:28 nope, it's actually pretty easy May 22 03:27:32 the GUI is what makes me waste more time May 22 03:27:37 * Sc0rpius clicks May 22 03:27:42 (not passed through text editor yet, may contain typos or nasty grammar) May 22 03:28:23 I though whatsapp is closed source so no way for proper port other than running java midlets May 22 03:28:25 hmm so it disables and enables swap when it detects fragmentation May 22 03:28:31 yeah it's closed source May 22 03:28:40 you can always reverse it May 22 03:28:57 + sets user defined swap to be enabled on boot or backup swap if first fail May 22 03:29:06 that's what Wazzap did May 22 03:29:09 and that's what I did too May 22 03:29:23 +, I'll add in a second 3th sed line (forget it) to save stats for counter May 22 03:29:32 everything started when the guy that made the Java port said May 22 03:29:33 Sc0rpius, lol, nice May 22 03:29:44 ? May 22 03:29:46 "Java versions for S40 devices are not obfuscated" May 22 03:29:50 and everybody went to decompile those versions May 22 03:29:50 haha May 22 03:30:13 everybody tried before with the Android versions, that are extremely obfuscated, and pretty hard to reverse because of that May 22 03:30:27 nobody ever thought the S40 versions were totally plain with no protection at all May 22 03:31:20 ah thats why sudden of nothing 7575 threads about whatsapp appeared May 22 03:31:23 on tmo... May 22 03:31:24 yeah May 22 03:31:41 and I'm sure I'm not the only making another one to add Wazzap a little pressure hehe May 22 03:32:07 webos needs a client too May 22 03:32:13 who uses that? May 22 03:32:31 webos users ? May 22 03:32:31 I must admit I missed it as I was never interested in this program - but You're definitely goind to make many people happy. May 22 03:32:34 :P May 22 03:32:49 I ported an app from Webos to Maemo May 22 03:32:58 SplashID, because I really needed it May 22 03:33:40 * Estel_ searchs for it on packages interface May 22 03:33:46 heh it's not there May 22 03:33:51 btw, I need to add 3th line to sed: May 22 03:33:52 /usr/bin/iostat -md mmcblk1p2 | grep mmcblk1p2 | awk '{print $6}' >/root/reswap.stat May 22 03:33:53 since that's pretty illegal I never submit it May 22 03:33:58 I hope I'll manage to do it now May 22 03:34:01 without stucking May 22 03:34:11 surely need to escape -md May 22 03:34:20 pipes May 22 03:34:20 no May 22 03:34:23 ? May 22 03:34:31 but you need to space \$ and the \' May 22 03:34:44 and maybe the \| May 22 03:34:49 I would do it just in case May 22 03:35:04 s/space/scape May 22 03:35:11 escape actually May 22 03:35:35 ok, proceeding May 22 03:59:30 Sc0rpius, little question, if You don't mind May 22 03:59:52 is there a way to make sed find text matching pattern (wildcard) and replace it? May 22 04:00:35 for example, I would like him to find mmcblk*p* (mmcblk0-9p0-9) and replace it with fixed text May 22 04:00:43 wildcards are an option? May 22 04:00:59 yeah sure May 22 04:01:04 s/mmcblk*p*/mmcblk1p2/ for example May 22 04:01:12 that would be: May 22 04:01:15 not need for any special escaping, marking etc? ;) May 22 04:01:23 s/mmcblk.*p.*/mmcblk1p2/ May 22 04:01:28 ah May 22 04:01:30 .* May 22 04:01:34 dot asterisk May 22 04:01:38 or: May 22 04:01:49 s/mmcblk[0-9]+p[0-9]+/mmcblk1p2/ May 22 04:02:00 [0-9]+: at least one digit (it could be several) May 22 04:02:11 [0-9]*: none, or several digits May 22 04:02:14 thanks the latter is even better May 22 04:02:28 I doubt someone got more than 10 partitions, but still May 22 04:03:03 and .*: jus 1 digit? May 22 04:03:15 or at least 1? May 22 04:03:50 * 0 or more matches of the previous regexp May 22 04:03:56 + 1 or more matches of the previous regexp May 22 04:03:59 . = any char May 22 04:04:00 so: May 22 04:04:08 .+ = one character or more May 22 04:04:17 .* = nothing or anything hehe (sounds weird) May 22 04:04:24 :) May 22 04:04:31 a.*b would match ab, a1b, aaskdjfhakjb, etc. May 22 04:04:40 a.+b would only match a1b, assdfsdfb May 22 04:04:46 but no ab. May 22 04:04:51 and [0-9] is to limit it for digits May 22 04:05:00 instead of all alphanumeric May 22 04:05:16 [0-9] one single digit from 0 to 9 May 22 04:05:20 I got it. May 22 04:05:22 [0-9]+ several digits May 22 04:05:55 [0-9]*nothing or any number of digits May 22 04:06:06 thank a lot, You got talent to explain things, surely. May 22 04:06:08 exactly, you got it May 22 04:06:21 sorry for bothering You and taking out of developing ;) May 22 04:06:43 it's ok, it's too hot for me to code tonight May 22 04:06:50 27C May 22 04:07:00 and no A/C in this room, only in the bedroom where TV is May 22 04:07:03 so TV is calling hehe May 22 04:09:10 :) I got 28 too but only during day May 22 04:09:20 29 today expected May 22 04:09:49 but now it's quite pleasant morning (6:09 AM) May 22 04:11:40 it's 11:41pm here, during the day it reaches 36C is crazy May 22 04:13:01 where it is, where do You live? May 22 04:13:26 btw, last question here - any way to make sed into replacing all occurenced of pattern May 22 04:13:31 not only first found? May 22 04:13:56 (I'm sure there is, and I promise to read whole manual tommorow, too tired to do it right now :P) May 22 04:14:46 Caracas, Venezuela May 22 04:14:58 g at the end will replace all occurrences May 22 04:15:05 ah, so temperatures are justified. May 22 04:15:09 sed manual is pretty long May 22 04:15:19 thats why I'm asking now May 22 04:15:29 btw I'm on "far north", Poland May 22 04:15:39 that's far May 22 04:15:40 :) May 22 04:15:41 but it's just a little cooler ;) May 22 04:16:11 hm, so g replaced all occurences... why it helped us with $swap0/$swap2? May 22 04:16:24 first pattern was replaced @ first run May 22 04:16:35 so any another run shouldn't alter it May 22 04:17:54 it's weird May 22 04:18:00 but it worked nonetheless May 22 04:18:12 yea :) May 22 04:35:21 <3 May 22 05:12:50 ...and here is how file should look after operation: May 22 05:12:52 http://sebsauvage.net/paste/?c15cb8bf247c7a39#1QwS15G45PHlF8fuxzSc2alQoQIitGcBWO3UZUuw8s4= May 22 05:13:16 (just numbers modified on 5 place, normally script will take new values from config) May 22 05:13:37 Sc0rpius, if You could look at it after returning, I'll be very grateful. May 22 05:14:36 I'm here May 22 05:14:40 I was whining at #mer May 22 05:14:58 oh :) May 22 05:14:59 I think I miss the problem? May 22 05:15:19 ok, I'll re-paste my monologue ;) May 22 05:15:39 Sc0rpius, could You help me with one last thing? May 22 05:15:46 I though I'll manage to do it myself, but still failing May 22 05:16:03 beside adjust-rcS-late.sh, I'll also include update-rcS-late.sh May 22 05:16:07 ok May 22 05:16:09 the latter is almost identical script, that take already modified rcS-late May 22 05:16:37 and update locations swaps there May 22 05:16:44 (in case user change swap layout and update config, update-rcS-late.sh will update it for user safely) May 22 05:16:50 I tried to just imput same things on both sides of @ May 22 05:16:56 on "old" content side using wildcard mmcblk[0-9]+p[0-9]+ May 22 05:17:03 and on "new" content side, use exactly same content as with previous script ($swap0 etc) May 22 05:17:18 ok May 22 05:17:28 yet, resulting modified file is totally screwed up May 22 05:17:33 whole rcS-late is filled with patterns ;) May 22 05:17:36 what's your script this time? May 22 05:17:38 I've also triedd to update 5 occurences in 5 steps... May 22 05:17:44 but results vere similar May 22 05:17:50 Sc0rpius, here is my 2nd script (modified to not load external config): May 22 05:18:02 http://sebsauvage.net/paste/?9217d7d86f9cf762#hh6lpRRVhTBJnBo+XxJBDZW5/5Ag1yfmE2zXU9zgJPk= May 22 05:18:12 here is file to be modified: May 22 05:18:20 http://sebsauvage.net/paste/?f2348cacc4e4fc8f#jhkbnYBZKiWYdgi6tJ60jB3guPDqxybWbfK6QwbnrWM= May 22 05:18:31 ...and here is how file should look after operation: May 22 05:18:37 http://sebsauvage.net/paste/?c15cb8bf247c7a39#1QwS15G45PHlF8fuxzSc2alQoQIitGcBWO3UZUuw8s4= May 22 05:18:44 (just numbers modified on 5 place, normally script will take new values from config) May 22 05:18:54 playback complete ;) May 22 05:19:19 hmm May 22 05:20:22 after fail of "5 steps" solution, I tried what You see in script now - whole text in one step May 22 05:21:34 and what are you getting with your script? May 22 05:22:44 'cos I'm getting a total disaster with it May 22 05:23:50 same here May 22 05:24:50 mostly because you forgot to escape > May 22 05:25:11 no , it's not that May 22 05:25:14 lemme see what's wrong May 22 05:26:32 ok May 22 05:26:38 try your script without escaping & and | May 22 05:29:00 but that will never work May 22 05:29:03 listen May 22 05:29:06 sed works line by line May 22 05:29:12 you can't match two lines on sed at a time May 22 05:29:33 I can see that you have a \n in the match expression, that will never work May 22 05:29:56 but this script is to "revert" the first script, what I would do is create a .bak file or something instead of doing another script for reverting May 22 05:30:04 somewhere theyMve written about using 1!H and such things May 22 05:30:06 no no May 22 05:30:08 not revert May 22 05:30:25 just update mmcblk*p* values May 22 05:30:43 and honestly I've tried line by line approach in many steps May 22 05:30:51 ok May 22 05:30:51 (5 steps for 5 values to replace) May 22 05:30:58 but you don't need to match the first blkid -g line May 22 05:30:58 it resulted in same disaster May 22 05:31:04 sure May 22 05:31:11 just 2nd and 3nd May 22 05:31:18 isn't easier like this: May 22 05:31:19 should be doable in 2 steps May 22 05:32:12 hmm May 22 05:32:21 the problem is that there are two swaps May 22 05:32:48 yea. May 22 05:33:01 swap0 is 2 times in first line and 2 times in second May 22 05:33:09 but i would definitly do simpler scripts like: May 22 05:33:10 swap2 is only one time, in first line May 22 05:34:49 this will be funny but: May 22 05:35:06 sed s/mmcblk.p.[^$]/$swap0/g May 22 05:35:08 and then: May 22 05:35:17 sed s/mmcbkl.p.$/$swap1/ May 22 05:35:19 and done. May 22 05:35:44 I would summarize your really big script with just those 2 lines. May 22 05:36:00 would be wonderful, but May 22 05:36:15 wouldn't it in step 2nd replace thing from step 1nd? May 22 05:36:25 resulting in swap2 everywhere? May 22 05:36:34 no the first one will replace any mmcblk that is not at the end of a line with swap0 May 22 05:36:48 and the second line will replace only mmcblk that are at the end of a line with swap1 (or 2 or whatever) May 22 05:37:25 kk, trying May 22 05:37:25 if that scares you, you can change it to: May 22 05:37:44 sed s/mmcblk.p.*||/$swap0/g <-- all mmblk that are behind a || May 22 05:37:56 sed s/||.*mmcbkl.p.$/$swap2/ <-- all mmblk that are after a || May 22 05:38:05 no, why scarry :) just need to check May 22 05:38:09 I see May 22 05:38:15 and actually I can summarize the first script to something very simple too May 22 05:39:25 if you think somebody has more than 9 partitions use [0-9]+ instead of . May 22 05:51:23 Sc0rpius, little problem May 22 05:51:33 ? May 22 05:51:34 on 1st occurence, it also replaces a dot May 22 05:51:57 what dot? May 22 05:52:07 blkid | grep /dev/mmcblk7p3.*TYPE=\"swap\" May 22 05:52:09 becomes May 22 05:52:17 blkid | grep /dev/mmcblk1p2*TYPE=\"swap\" May 22 05:52:33 (missing dot before *TYPE) May 22 05:52:38 I see May 22 05:52:46 i wanted to fix it, but May 22 05:52:56 it breaks other occurences ;) May 22 05:53:29 I'm using 1st version You proposed May 22 05:53:44 sed -i s@mmcblk.p.[^$]@$swap0@g /home/user/original-rcS-late May 22 05:55:29 yeah lemme think May 22 05:55:31 I know why May 22 05:56:20 also there is missing space after 2nd occurence May 22 05:56:43 && /sbin/swapon /dev/mmcblk7p3 || May 22 05:56:50 && /sbin/swapon /dev/mmcblk1p2|| May 22 05:56:57 (space before pipes) May 22 05:57:35 sed "s/mmcblk.p.\([^$]\)/$swap0\1/g" file May 22 05:57:41 and for the second one: May 22 05:57:53 same for 2nd line: May 22 05:57:54 /usr/bin/iostat -md mmcblk1p2| grep mmcblk1p2| awk May 22 05:58:03 /usr/bin/iostat -md mmcblk1p2 | grep mmcblk1p2 | awk May 22 05:58:06 yeah it's fixed with: May 22 05:58:07 sed "s/mmcblk.p.\([^$]\)/$swap0\1/g" file May 22 05:58:10 (should be with space May 22 05:58:12 ok May 22 05:59:52 the second one works fine: May 22 06:00:08 sed "s/mmcblk.p.$/$swap2/" file May 22 06:04:14 synology uses cgi May 22 06:04:19 thanks a lot, works flawlessly under all conditions May 22 06:04:33 You've made it so simple Sc0rpius :) May 22 06:04:52 I see that with such thing expertise gained due to experience matters really, really very much May 22 06:05:20 I've been using loong scripts just hoping to get it working, and Yours 6x shorten works ideally :) May 22 06:07:19 Sc0rpius, what is Your tmo link? May 22 06:07:29 s/link/nick/ May 22 06:07:29 Estel_ meant: Sc0rpius, what is Your tmo nick? May 22 06:07:58 want to give proper credits in script comment and package description :) May 22 06:11:21 tmo link? May 22 06:11:25 nick May 22 06:11:26 tmo nick hmm May 22 06:11:59 it's Scorpius May 22 06:12:05 ;) thanks May 22 06:12:11 I was checking if it was with an o or with a zero May 22 06:12:13 (I forgot) May 22 06:12:21 understood May 22 06:18:30 Estel do you use Backupmenu right? May 22 06:18:34 'cos I think you post in that thread May 22 06:18:38 yes May 22 06:18:46 do you use it with multiboot (default) or with U-Boot? May 22 06:19:01 in fact I use backupmenu-multiboot variant, manually updated to latest verion May 22 06:19:08 s/verion/version/ May 22 06:19:09 Estel_ meant: in fact I use backupmenu-multiboot variant, manually updated to latest version May 22 06:19:31 I would really like to stop using multiboot and use U-Boot since everything works with U-Boot (Nemo, Nitdroid, etc) but I love my Backupmenu May 22 06:19:49 I don't use U-Boot yet, I'm still not sure if it's not posing regressions. Probably will switch when thumb2 arrives May 22 06:20:04 backupmenu can be used with U-boot for 100% May 22 06:20:13 that's what I've heard May 22 06:20:15 I remember someone asking it it U-boot thread May 22 06:20:16 ye May 22 06:20:27 s/ye/yea/ May 22 06:20:27 Estel_ meant: yea May 22 06:20:36 although I don't have any details :( May 22 06:20:39 some guy uploaded some files to make it work but the link expired May 22 06:20:48 hm May 22 06:27:49 anyway the first thing I need is a microSD and I don't have one May 22 06:27:59 after that I'll think about U-Boot + Backupmenu May 22 06:30:41 hm, why not using eMMC for this? May 22 06:32:45 the thing is that I want to test Mer/Nemo May 22 06:32:49 but I need a microSD card for that May 22 06:43:13 I see. Sure thing May 22 06:43:23 but sd cards should be cheap May 22 06:43:29 be sure to buy class 4 one May 22 06:43:35 prefferably genuine sandisk 8GB May 22 06:43:46 most performance, better than class 6 or 10 May 22 06:46:45 heh May 22 06:47:46 ufff, ereswap finished May 22 06:48:02 I took it as first project to upload to extras as I though it'll be faster May 22 06:48:19 but during preparing ideas for make it more conveinent for users came... May 22 06:48:29 and it turned out to be hardest and most complex May 22 06:48:46 not it's like backend for a swap management utility May 22 06:49:17 can be used from terminal, via desktop shortcuts (obviously), queen-beecon-widgets, shortcutd etc... May 22 06:49:31 and writing gui for it should be trivial for anyone experienced May 22 06:50:17 whole code is rather simple and commented very verbosely, so it should be quite good for other people to learn few tricks I've scavenged from pros (and small, very small fraction of my inventions) May 22 06:50:35 only thing it's lacking now is enabling ramzswap (on demand) May 22 06:51:10 I hope You people will enjoy it ;) later I'll upload other, more simple yet useful May 22 06:51:14 things May 22 06:51:16 see ya! May 22 07:07:45 would anyone commend a web based file manager i can run on the n900 so i can grab files from other pcs on the lan without having to take the phone out of my pocket? May 22 07:07:52 commend=recommend May 22 07:21:44 Psi: what about plain old sftp May 22 07:22:25 merlin1991, ping May 22 07:23:27 merlin1991, I've finished my work on ereswap, although got predictable problems with builder May 22 07:23:44 Sicelo: need a client May 22 07:23:46 I suspect it's /debian/rules fault, so here it is: May 22 07:23:56 i want something that works without me having to install anything on their pc May 22 07:25:11 http://sebsauvage.net/paste/?416a9573dc5751c6#6HvCkkZUEujhPy5GmJvy48ZIhCMvciQCHMZLhNKsSCU= May 22 07:25:31 summary log from builder just says "failed" without providing any hints May 22 07:25:43 detail logs is here, although, also not helpful: May 22 07:26:54 Psi: hmm, ftp server on your N900 then. any pc has an ftp client. May 22 07:27:54 http://sebsauvage.net/paste/?c6f081284e324b62#gVlGl5GHa22wirEpW7zHROJXdTYkviFzP4msAopXzlA= May 22 07:29:02 here is my ereswap_1.0.dsc: May 22 07:29:08 http://sebsauvage.net/paste/?1e3a45f2cf7e1f8a#nMHsqM2WVNS2UajQk2/HgS3gkhnjh5w+5jW7MgpOmu8= May 22 07:29:52 ...and here is source package: May 22 07:29:53 https://garage.maemo.org/builder/fremantle/ereswap_1.0/sources/ereswap_1.0.tar.gz May 22 07:30:27 merlin1991, if You could look at it, I would be thankful. No idea what could be wrong besides rules (yet, I *think* I followed Your suggestions) May 22 07:30:34 thanks in advance! May 22 07:35:18 Sicelo: you mean browser as ftp client? May 22 07:38:46 iirc all versions of windows have ftp.exe (cmd line..) which will allow you to upload to your N900 as well. May 22 07:39:24 anyway, it was just a suggestion.. there might be a 'web' method that would fit your needs better May 22 07:57:13 Sicelo: commandline ftp is awful May 22 07:57:42 or it is for what i want May 22 08:06:24 Psi you want to grab files to n900 from other computers, *without* touching the phone? May 22 08:07:36 correct May 22 08:08:07 want to walk into places that i already have wifi setup and be able to upload/download files to my phone while its still in my pocket~ May 22 08:08:17 be nice if i could also view text files May 22 08:11:44 I dunno...I always use ssh for such May 22 08:13:27 yeah, but then i need to install putty May 22 08:27:07 Psi: another option is samba May 22 08:27:38 yeah, i have that, bit its a bit of a cpu hog May 22 08:27:44 *but May 22 08:28:09 what about OpenSSH server and you just SFTP to the phone from PCs? May 22 08:28:10 that's what I do. May 22 08:28:21 he's already ruled that one out May 22 08:28:33 rsync with /etc/network/if-up rule May 22 08:28:50 oh he wants it web based? May 22 08:29:00 with N9 you can do it easiely with profilematic May 22 08:29:23 Psi: why are you doing this..? i mean, why you can't whip your phone out of the pocket for the file upload/download? May 22 08:31:51 lazy May 22 08:33:05 * Sicelo doesn't believe that .. anyway May 22 08:33:18 putty and winscp do not need an install May 22 08:33:40 o/ May 22 08:33:40 so, you get to this place, your N900 auto-connects, how do you find out what IP address N900 was assigned? May 22 08:33:56 chem|st: you still need to go download them May 22 08:34:01 or grab them somehow May 22 08:34:23 Sicelo: simple broadcast May 22 08:34:32 Sicelo: i setup a mac static on the wifi May 22 08:34:38 or that May 22 08:35:06 if you do all that, i don't see how/why ftp is a no-go May 22 08:35:31 ftp is more a file download/upload app, i want a full file manager May 22 08:35:36 with copy/move etc May 22 08:35:37 Psi: some liek kies air? May 22 08:36:09 ive used Ajaxplorer but i only got it installed inside debian chroot, so i would still need to load that on the phone first May 22 08:36:45 Psi: start stop services depending on the network you are in May 22 08:36:54 yeah, could do i guess May 22 08:44:23 * Estel_ ** WinSys ** Client: XChat-WDK 1507 (x86) ** OS: Microsoft Windows XP Professional ** CPU: Procesor Intel Pentium III Xeon (2,00 GHz) ** RAM: 3581 MB Total (2725 MB Free) ** VGA: NVIDIA GeForce 8600M GT ** Uptime: 50,03 Hours ** May 22 08:45:56 anybody have this problem where media files somehow corrupt each other? some of my music and video files seem to partially overwrite some of my podcast files May 22 08:46:11 fckd'ed up vfat filesystem? May 22 08:46:26 deleting the podcast file and redownloading, doesn't seem to help. file remains corrupted May 22 08:46:35 run fsck? May 22 08:46:42 yeo, but unmount first of course May 22 08:46:57 ok May 22 08:46:58 prefferable, fsck.vfat /dev/mmcblk1p1 -r -v May 22 08:47:17 if that doesn't help, copy all remaining good things, and re-format vfat (re create) May 22 08:47:21 then copy back May 22 08:47:30 if *that* doesn't help, i have NFC May 22 08:50:44 hmm. can't mount it as user May 22 08:50:53 and if i mount as root, it's all root-owned May 22 08:55:09 yeah, i agree when fat16/32 gets corrupt you get some weird things occuring May 22 08:55:41 Psi: Estel_: how do i mount it back as user after fsck? May 22 08:55:59 also, you get strange issues when your microsd card is cheap and cant handle the timing the device is trying to use it at May 22 08:56:40 no microsd yet May 22 08:56:53 so just the onboard? May 22 08:57:41 yeah May 22 08:58:01 strange May 22 09:24:19 jargon, device should be usable if You use proper mount commands May 22 09:24:27 even if you mount as root May 22 09:24:29 gimme a sec May 22 09:26:22 mount -t vfat /dev/mmcblk1p1 /home/user/MyDocs -o noauto,nodev,noexec,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0133,rodir May 22 09:26:31 that's proper mounting line for MyDocs May 22 09:26:44 do Yourself a favor and save it as shell script in /usrb/sbin/ May 22 09:26:50 for example "mydocson.sh" May 22 09:26:56 BTW, reboot would also help You ;) May 22 09:43:40 DocScrutinizer, about charge21.sh done by this guy - you've pointed out nice suggestion there, what about a revision of his code? May 22 09:44:10 We already know You're one of sh mastahs, so, it would be great to have properly revisioned code. It could be a semi-official update to charge.sh May 22 09:44:25 BTw, i never remember, which charge was more reccomended - charge.sh or charge21.sh May 22 09:55:53 Estel_: already on my todo list May 22 09:58:57 DocScrutinizer, nice to hear :D May 22 09:59:21 Well, i'm not councilor (yet?), but I try to faciliate communication and ideas already ;) May 22 09:59:41 at least it's always easier to know right person to do some thing, than do it yourself, lol... May 22 10:00:04 seriously though, I haven't sleep yet due to fricking package I'm preparing. with giga help of Sc0rpius, I was able to finish it May 22 10:00:12 yet now build fail ;) May 22 10:00:41 considering it doesn't contain any code to compile - just .sh scripts and /debian/* required files - it's quite irritating May 22 10:00:49 especially after 12 hours of work May 22 10:00:50 :p May 22 10:00:55 or more... May 22 10:02:59 re ETB: http://www.email-archive.com/linux-omap@vger.kernel.org/msg17607.html http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ihi0014o/index.html May 22 10:18:38 Estel_: your control file is wrong May 22 10:18:58 I'm all ears. with feets, actually. May 22 10:19:44 anything multiline, like descriptions has to have a new line starting with a space, just like with the xb-maemo-icon-26 May 22 10:20:10 roger that. May 22 10:20:40 also why do you chmod the scripts in postinst? May 22 10:34:19 because they'rer not runable otherwise? May 22 10:34:27 merlin1991 May 22 10:35:04 have them with the runable bit set in the tar already May 22 10:37:29 lxr.free-electrons.com/source/arch/arm/kernel/etm.c May 22 10:37:40 dafuq? May 22 10:37:54 merlin1991, thumb2 :P May 22 10:38:00 we got that (or could get that) in KP? May 22 10:38:05 and ways to trace it May 22 10:39:36 DocScrutinizer51, I can bet that n900 being HS device will not benefit of that. Just imagine if userspace is allowed to do instruction (or whatever) trace of everything in system. don't believe that i possible. May 22 10:40:02 yup May 22 10:40:30 though, since we don't run secure mose anyway... May 22 10:40:37 mode* May 22 10:40:48 merlin1991, thanks May 22 10:40:58 I've just based postinst script on other packages May 22 10:41:05 afaik even hend does this chmod :P May 22 10:41:10 will keep in mind that it's not needed May 22 10:41:15 DocScrutinizer51, otherwise all that HS, TrustZone , etc. talk will be a pile of crap May 22 10:42:04 isn't it anyway, for fremantle? May 22 10:42:07 merlin1991, so i already define new lines in description by making it new line + space? May 22 10:42:16 yep May 22 10:42:27 ~roger May 22 10:42:28 BZFlag's autopilot, named after "Airplane's" pilot May 22 10:43:30 DocScrutinizer51, why is that? Once (and if) I have my NFC flex cable I will explore the possibilities for true banking/payment applications on n900 May 22 10:43:31 rules file is ok? May 22 10:43:56 get rid of the --buildsystem=cmake May 22 10:44:01 but otherwise rules should work May 22 10:44:01 freemangordon, dafuq? payment application? May 22 10:44:07 connected to which interface? May 22 10:44:15 merlin1991, ok May 22 10:44:27 And having in mind that there is kind of HW security supported, lets see hw it will develop May 22 10:44:37 Estel_, yes, NFC May 22 10:44:54 what does than stand for, other than no fuckin clue May 22 10:44:59 near field com? May 22 10:45:04 yep May 22 10:45:11 they couldn't take worse shortcut name May 22 10:45:16 :D May 22 10:45:30 what about PCI? May 22 10:45:33 merli, empty lines betwen acapits ind escription also must contain space? May 22 10:45:41 PCI desktop interface :OP May 22 10:46:15 Payment Card(s) Industry May 22 10:46:22 Estel_: yes, anything the belongs to the description apart form the first line has to start with a space May 22 10:46:24 s/merli/merlin1991/ May 22 10:46:35 roger roger May 22 10:46:43 experience is rising to heavens ;) May 22 10:49:18 after df in rules file, should I keep $@ ? May 22 10:49:32 yes May 22 10:49:36 (after getting rid of --buildsystem=cmake) May 22 10:49:38 ok May 22 10:49:46 what exactly this tag means? May 22 10:49:54 it's shortcut to the old way of debhelper where you had to have a line for every friggin dh_* script May 22 10:50:52 rules file is called like "make dh_shlibdebs" and the %: rule grabs that and just runs it May 22 10:51:29 understood May 22 10:51:36 where have yopu learned all of this ;) May 22 11:02:29 freemangordon: IHI0014Q_etm_architecture_spec.pdf p129 "3.5 detailed register descriptions" ETMACTR [13:10] May 22 11:06:57 * lardman watches Olympic torch travel through Frome, presumably not too dangerous there with only 3 outrunners May 22 11:07:27 online I hasten to mention ;) May 22 11:11:43 lardman, yesterday they fallen with torch due to light wind May 22 11:12:11 but on Ukraine, as protest against UEFA EURO, 2 femminist activists devastated some footbal cup May 22 11:12:16 Estel_: yes, made me laugh that even for an RRP ~£500 torch, it won't stay lit ;) May 22 11:12:34 devastated? May 22 11:12:50 first one went topless with quite obscenic writing on stomach, and, after short consternation, guards kicked at her - then, 2nd one picked cup and threw it to the ground May 22 11:12:54 little tricky ;) May 22 11:13:19 s/kicked/jumped/ May 22 11:13:24 jumped, not kicked May 22 11:13:25 ah ok a real cup, I thought you meant a match May 22 11:13:30 haha May 22 11:13:57 although I don't support devastation, I feel quite sympathetic for them ;) May 22 11:14:12 ammount of corruption during preparing EURO on ukraine is gigantic, with uefa blessing May 22 11:14:34 well, even here in Poland it doesn't look bright, and only one aprt that is going to make money on this shit is UEFA May 22 11:14:53 but msot sheeps are regulatory happy about it ;) May 22 11:15:02 (I also briefly wondered whether you meant this climbing into a football stadium ;) : http://www.seibertron.com/transformers/news/tf-rotf-devastator-concept-art-overload-robot-mode/16446/) May 22 11:23:04 merlin1991, still builder failed with same output (lack of) :( May 22 11:23:17 failed and no reason provided, and in detailed log, last line is May 22 11:23:28 [2012-05-22 14:08:24] cd /home/builder2/maemo-fremantle-i386-extras-devel/work/ereswap-1.0 && dpkg-checkbuilddeps May 22 11:23:34 [2012-05-22 14:08:24] Cleaning up... May 22 11:23:40 [2012-05-22 14:08:24] Removing temporary target... May 22 11:23:46 [2012-05-22 14:08:25] Done. May 22 11:23:50 = exactly like before May 22 11:23:58 WTF autobuilder wants from me to provide/fix? May 22 11:25:39 Link to actual tarball ---> https://garage.maemo.org/builder/fremantle/ereswap_1.0/sources/ereswap_1.0.tar.gz May 22 11:26:03 I've added spaces as recommended + removed unnecesary line from rule May 22 11:26:51 any help appreciated, would like to push this bugger through. May 22 11:27:39 maybe something with dependencies? It doesn't depent on anything excepot debhelper for build... May 22 11:28:24 Should I remove ${shlibs:Depends} ? I don't think so... May 22 11:29:32 Estel_: Are you using windows to edit these files? May 22 11:29:43 nope, edited on Maemo May 22 11:29:50 I did everything on device May 22 11:30:25 frankly, I suspect it's my fault, not autobuilder's (i'm doing it for the first time this way - very first was with truecrypt source, not entirely my own fioles) May 22 11:30:33 s/fioles/files/ May 22 11:30:33 Estel_ meant: frankly, I suspect it's my fault, not autobuilder's (i'm doing it for the first time this way - very first was with truecrypt source, not entirely my own files) May 22 11:31:01 probably I just did something wrong way, can't figure what though. May 22 11:31:25 Your control file looks messy. May 22 11:31:45 * Estel_ nods May 22 11:31:47 Empty lines in description need a dot. May 22 11:31:51 which part may be wrong? description still? May 22 11:31:59 0_o good to know May 22 11:32:02 hm the empty line after the dscription shouldn't be there May 22 11:32:32 And all that crap in the description is also not needed. May 22 11:32:40 That is what instructions are for ;) May 22 11:33:12 You're putting your whole life story in there :D May 22 11:34:07 :d wanted to be verbose, but You're right May 22 11:34:29 will move it to man inside and clean May 22 11:34:31 Description also has some specific rules. May 22 11:34:51 first line is short description, next lines are the regular description May 22 11:34:55 I'm all ears with feets. I're red about mentioning that it's command-line tool May 22 11:35:01 guys, we are having problems with facebook sharing plugin. more info at http://talk.maemo.org/showthread.php?t=84410 May 22 11:35:07 any ideas why? May 22 11:35:29 Estel_: http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description May 22 11:35:38 thanks a lot X-Fade (and merlin1991), fixing it... May 22 11:35:55 Estel_: ^^ That doc describes it all. May 22 11:41:11 X-Fade, thanks, went through it May 22 11:41:24 although, some doesn't apply here, yep? I haven't seen any md5sums on .changes file May 22 11:41:28 (maemo one) May 22 11:41:30 only in .dsc May 22 11:41:50 put aside details like lack of sha256 sum, sha1 and md5sum only. right? May 22 11:51:04 X-Fade, what about /debian/changelog? is it ok? May 22 11:51:26 documentation says about dots and spaces, but, scavenging changes files from other packages in repos, I don't see anything like that May 22 11:57:55 anybody else thinks wiki page design or CSS sheet sucks sonce months? May 22 11:58:14 buzzword "BETA" et all May 22 12:16:58 fixed all things as suggested and trying to upload again... May 22 12:25:02 X-Fade, still failed :( May 22 12:26:04 strange, it created both 1386.root.log.OK.txt and 1386.root.log.FAILED.txt May 22 12:26:05 0_o May 22 12:26:38 1386.root.log.OK.txt one got same content as former reports, although, FAILEd one got some usefull info, actually May 22 12:27:34 https://garage.maemo.org/builder/fremantle/ereswap_1.0/i386.build.log.FAILED.txt May 22 12:27:44 cp: cannot stat `./data/adjust-rcS-late': No such file or directory May 22 12:27:52 dh_install: cp -a ./data/adjust-rcS-late debian/ereswap/home/user/.ereswap/ returned exit code 1 May 22 12:27:56 wtf? May 22 12:28:32 file is actually called adjust-rcS-late.sh May 22 12:28:39 * Estel_ points out on .sh May 22 12:29:20 Estel_: Check your debian/install file May 22 12:30:38 yea, noticed that as well, I'm dumbie May 22 12:30:47 actually, like hell May 22 12:30:54 ~ashamed May 22 12:30:55 ashamed is probably an exemplary example of a nerd baller May 22 12:31:11 ;) sorry, should notice it myself before asking May 22 12:31:32 Good thing is that the builder doesn't make this stuff up :) May 22 12:35:01 yea :) May 22 12:38:05 YEA, build suceed! May 22 12:38:16 X-Fade, merlin1991 huge, huge thanks May 22 12:38:25 finally I've something that works to base further work upon May 22 14:01:21 Woody14619, ivgalvez, ping? May 22 14:03:06 #maemo, http://maemo.org/packages/ereswap <- it's effect of efforts and my endless question to You all :) May 22 14:03:16 if anyone feel it usable and/or willing to tes, i'll be glad May 22 14:03:20 enjoy! May 22 14:10:09 anybody familiar with fbreader? May 22 14:10:52 depends on what familiar means, i have read .epub:s with it May 22 14:13:45 hi, is there any hope of getting the usb port fixed after warranty? May 22 14:14:01 it's not yet completely detached, but getting loose May 22 14:18:39 sobczyk: by nokia, no -- even if it was under warranty, they would send you back a different device, not fix it :/ May 22 14:21:30 anyone encounter N900 that says it's charging, but doesn't? :/ May 22 14:22:18 jaska: is there really no kinetic scrolling in fbreader? May 22 14:22:52 i scroll by page anyway May 22 14:22:56 so dont know May 22 14:23:35 i never even wanted that feature so havent looked for it May 22 14:24:04 do you it in portrait orientation? May 22 14:24:17 do you use it in portrait orientation? May 22 14:24:18 yeah, portrait, using the volume keys for page scrolling May 22 14:24:42 sobczyk, only fellow maemo users can repair it for You May 22 14:24:43 rm_work: what about soldering? May 22 14:24:46 for a feww/donation May 22 14:24:53 or You can done it on Your own May 22 14:25:14 if going via other maemo user way, You must consider paying for work and shipping May 22 14:25:37 work is mostly a bargain, considering ammoung of work needed to fix it by hand, shipping can get worse, both sides May 22 14:25:54 sobczyk, the main problem is that evgen if Your port hjaven't feel appart... May 22 14:26:04 if port's pad is loose on motherboard May 22 14:26:10 it wont be easily fixable May 22 14:26:15 sobczyk: i think this is possible, but you need to find someone who knows how to take the device apart (and put it back together!) safely without damaging it, and is good at soldering very small parts that are very close to other fragile things. May 22 14:26:20 only pads thaT ARE INTACT ARE QUITE EASY May 22 14:26:30 sorry, caps May 22 14:26:54 i had my USB port completely break off, but I think it still would have been possible to fix by someone who was REALLY good at soldering May 22 14:26:59 already disassembled it, I own a soldering station May 22 14:27:00 dissasembling and assembling is trivial, soldering is while troubles start May 22 14:27:21 sobczyk, unless it's a ifnra red station, You probably mean just ressistive soldering iron with temp control? May 22 14:27:34 I already soldered 0402 SMDs so Im rather comfortable with it May 22 14:27:39 I've already fixed many N900's for fellow Maemo users (usb ports) May 22 14:27:46 sobczyk, so just do it May 22 14:27:59 if You got thin enough soldering tip... May 22 14:28:04 you should be good May 22 14:28:18 then, after soldering, reinforce port as per dr_frost_dk's instructions May 22 14:35:03 ok now I see why soldering with reisistive tip might be a problem, the shield just behind the usb gets in the way May 22 14:35:48 You can remove part of it May 22 14:59:42 does anyone know, if javispedro 's c FM Radio have an option to listen through speaker? May 22 14:59:54 s/speaker/speakers/ May 22 14:59:54 Estel_ meant: does anyone know, if javispedro 's c FM Radio have an option to listen through speakers? May 22 15:00:21 of course I know it's possible via messing with alsa, but I'm asking about it's GUI May 22 15:07:20 Estel_: I don't know if the extras release has, but latest source tarballs have several options for you to choose how to actually do the mixing =) May 22 15:12:38 Estel_, nice script ;) May 22 15:13:44 may I suggest keeping the config in /home/user/.config/ereswap May 22 15:14:20 javispedro: what's your take on ARM ETB / ETM / STM / CoreSight on N900? May 22 15:15:14 as in, trace block? May 22 15:15:30 yup May 22 15:16:00 you probably know that better than I do, I don't even know what are the pins under the battery May 22 15:16:03 we might get really great 'coredumps' May 22 15:16:16 nah May 22 15:16:21 .oO(jtag?) May 22 15:17:13 it's a buffer (6.8k iirc) that traces opcodes data of reg and timestamps and can get read out from CPU in my book May 22 15:17:30 of course also via jtag May 22 15:18:27 that'd make for interesting performance counters May 22 15:18:42 yep May 22 15:18:56 all sorts of highly interesting things May 22 15:19:17 see backscroll, I spammed links May 22 15:21:11 * DocScrutinizer51 idly wonders what beagleboard guys did with ETB May 22 15:21:33 i did the dr_frost_dk modifications on the usb port, but still it seems as if the port is loose, either the small pins are not attached well (I could not reach them with the iron) or the USB port loosened inside May 22 15:22:29 how can it seem loose? May 22 15:24:04 when I push the connected charger plug down, info appears on n900 that I can disconnect the charger from wall socket May 22 15:27:09 it probably lifts the pins when you push it down May 22 15:27:21 yeah, clean it all up, and resolder May 22 15:39:35 Hurrian, do You remember what need to be done, in order to force re-assigning of icons in Maemo's menu (alphabetically, it re-sort that by default) May 22 15:39:36 ? May 22 19:03:57 http://pidgin.im/news/security/?id=62 http://pidgin.im/news/security/?id=63 May 22 19:08:39 anybody noticed that the openssh stuff in maemo is outdated? Not sure whether there some critical vulnerabilities though. May 22 19:37:05 wow May 22 19:37:13 something that is seriously irritating me about the lumia 900 May 22 19:37:19 the damn wifi turns off when you put it in sleep mode May 22 19:37:31 and turns back on when you wake it up. totally screwing over my gtalk client May 22 19:46:35 NIN101: good point May 22 20:00:11 luke-jr: yes, i've had a few times of N900 with blinking orange on wallwart, apparently charging, but actually discharging May 22 20:03:51 Estel_: maybe you can persuade javispedro to release an update to the radio then. also add the ability to advance frequencies by 0.5MHz intervals. only FM Radio (pycage) supports that afaik May 22 20:04:27 meh, 0.05MHz :) May 22 20:04:44 Sicelo: this is on car charger and PC :/ May 22 20:05:58 is $220 a reasonable price for a barely-used N900 these days? May 22 20:06:13 in all the times i've had that, it's the charger connection that was at fault, not n900. you could possibly check with bq27200.sh script May 22 20:07:37 btw, how's the Gentoo effort? May 22 21:44:56 trying to hunt down bad battery life, phone seems stuck in C2 most of the time, power domain 'per' being active... am I correct that this is uarts and stuff? Any hints at what could be causing it? Recently reflashed, running kp50 and cssu-testing. May 22 21:56:03 err, I'm not sure waht 'per' includes May 22 21:58:43 maybe I should reflash and check step by step, wasting too much time tracking this down May 22 22:54:36 did you run powertop with charger connected? May 22 22:57:18 hi, does someone knows the mcBSP here? I wonder if I can read CLKXI in a register? May 22 23:14:16 Estel_, I'm sorry, but I don't know. (I use Catorise to sort my stuff for me) **** ENDING LOGGING AT Wed May 23 02:59:59 2012