*** vivijim has quit IRC | 00:00 | |
*** sq-one has joined #maemo | 00:02 | |
*** Soder1 has joined #maemo | 00:04 | |
*** Soder has quit IRC | 00:07 | |
*** shanttu has quit IRC | 00:08 | |
*** jpe has quit IRC | 00:21 | |
*** jrocha has quit IRC | 00:24 | |
*** Smily has quit IRC | 00:26 | |
*** Smily has joined #maemo | 00:29 | |
*** piggz has quit IRC | 00:29 | |
*** liar has quit IRC | 00:30 | |
*** gri is now known as zz_gri | 00:34 | |
*** jiero has quit IRC | 00:34 | |
Pali | DocScrutinizer: in nokia flasher-3.5 I think I found loop which fill that magic bytes | 00:35 |
---|---|---|
*** Smily has quit IRC | 00:35 | |
*** robink has quit IRC | 00:35 | |
Pali | can sombody help me what doing this x86 asm instruction? movzbl (%eax),%eax | 00:35 |
Pali | and what is doing this? mov 0x8057b40(,%eax,4),%edx | 00:36 |
*** sq-one has quit IRC | 00:36 | |
*** dos1 has quit IRC | 00:37 | |
*** liar has joined #maemo | 00:38 | |
DocScrutinizer51 | move Z branch if less? | 00:39 |
DocScrutinizer51 | no clue | 00:39 |
*** zk8 has quit IRC | 00:43 | |
*** Technomike has joined #maemo | 00:43 | |
lxp1 | movzbl: zero-extends byte to long | 00:44 |
Technomike | guys i am trying to download or save files on my n900 and it shows the message 'Not Allowed' . i think its a problem with the file system because i was unraring an archive on my n900 earlier and it froze so i had to remove the battery. | 00:45 |
*** setanta has quit IRC | 00:45 | |
Technomike | is there any fix? | 00:45 |
*** kwtm has quit IRC | 00:46 | |
lxp1 | is it possible that movzbl (%eax),%eax does write the last byte of the address to the address itself? | 00:46 |
Pali | MOVZBL Move Zero-Extended Byte to Long | 00:47 |
Pali | from http://www.cs.auckland.ac.nz/references/macvax/op-codes/Instructions/movz.html | 00:47 |
*** kwtm has joined #maemo | 00:49 | |
*** RaeCarruth has joined #maemo | 00:51 | |
Pali | For MOVZBL, the low 8 bits of the destination are replaced by the source operand. the top 24 bits are set to 0. The source operand is unaffected. | 00:53 |
Pali | lxp1, you are right | 00:54 |
Pali | and what does this means? mov 0x8057b40(,%eax,4),%edx | 00:54 |
RaeCarruth | how do i manually delete a stubborn app that refuses to vanish? which directories do i need to look in other than /usr/bin ? | 00:54 |
*** bergie has quit IRC | 00:58 | |
lxp1 | yeah it may be correct, but maybe i swapped src/dst, depends on what assembler syntax it is | 00:59 |
Pali | syntax is gcc (GAS) | 00:59 |
lxp1 | okay then it is wrong | 01:00 |
lxp1 | then it does somthing like this in c similar syntax: %eax = (char) *(%eax) | 01:01 |
Pali | ok | 01:01 |
*** tackat has joined #maemo | 01:02 | |
Pali | eax = (*eax) & 0xFF; | 01:02 |
lxp1 | which makes a bit more sense than the other variant | 01:02 |
*** RaeCarruth has left #maemo | 01:02 | |
lxp1 | yes you are right | 01:02 |
DocScrutinizer | simple dereferentiation | 01:03 |
DocScrutinizer | before eax has an address pointer, after it has the value of that addr storage | 01:03 |
Pali | ok, and what is this? movzbl %al,%eax | 01:04 |
Pali | what is register %al? | 01:04 |
DocScrutinizer | nfc | 01:04 |
lxp1 | it references the lower bits of %eax | 01:04 |
Pali | I did not see %al before | 01:04 |
DocScrutinizer | adress level? | 01:04 |
lxp1 | that means the upper bits stay the same as they are | 01:05 |
DocScrutinizer | accu lower? | 01:05 |
lxp1 | yeah it should be the lower 8bit if i remember correctly | 01:05 |
DocScrutinizer | al and ah? | 01:06 |
DocScrutinizer | accu lower 8bit, accu higher 8 bit? err 16 maybe | 01:06 |
lxp1 | ah should be eax[15:8] | 01:06 |
lxp1 | yes i think so | 01:06 |
lxp1 | but if you write to %al or %ah you don't modify the other bits of the accu register (%eax) | 01:07 |
lxp1 | but in this case you only read from it so it is similar to eax = eax & 0xFF | 01:08 |
Pali | in objdump is this: "movzbl (%eax),%eax movzbl %al,%eax" | 01:09 |
Pali | so both instruction do only "eax = *eax & 0xFF"? | 01:10 |
lxp1 | no the first does eax = *eax & 0xFF the second does eax = eax & 0xFF | 01:10 |
lxp1 | but it doesn't really make sense to do this... | 01:10 |
lxp1 | so you just could skip the second line | 01:11 |
*** mesx has quit IRC | 01:11 | |
lxp1 | do you still want to know what mov 0x8057b40(,%eax,4),%edx does? | 01:12 |
Pali | yes | 01:12 |
lxp1 | General form of memory address references: | 01:13 |
lxp1 | ADDRESS_OR_OFFSET(%BASE_OR_OFFSET, %INDEX, MULTIPLIER) | 01:13 |
lxp1 | FINAL ADDRESS = ADDRESS_OR_OFFSET + %BASE_OR_OFFSET + %INDEX * MULTIPLIER | 01:13 |
lxp1 | so that means edx = 0x8057b40 + %eax * 4 | 01:14 |
Pali | ok, thanks! | 01:14 |
luke-jr | was Pali = power kernel? | 01:18 |
*** dangergrrl has quit IRC | 01:21 | |
Technomike | guys i am trying to download or save files on my n900 and it shows the message 'Not Allowed' . i think its a problem with the file system because i was unraring an archive on my n900 earlier and it froze so i had to remove the battery. is there any fix? | 01:21 |
*** vivijim has joined #maemo | 01:21 | |
*** scoobertron has quit IRC | 01:21 | |
*** liar has quit IRC | 01:23 | |
*** Sazpaimon_ has quit IRC | 01:23 | |
*** jiero has joined #maemo | 01:23 | |
*** Sazpaimon_ has joined #maemo | 01:23 | |
*** Sazpaimon_ has quit IRC | 01:23 | |
*** Sazpaimon_ has joined #maemo | 01:23 | |
*** LaoLang_cool has joined #maemo | 01:24 | |
*** jhb has quit IRC | 01:26 | |
*** Soder1 has quit IRC | 01:26 | |
*** dangergrrl has joined #maemo | 01:26 | |
*** anathaema has joined #maemo | 01:26 | |
*** dangergrrl has quit IRC | 01:26 | |
*** robink has joined #maemo | 01:26 | |
*** robink has joined #maemo | 01:26 | |
*** anathaema is now known as dangergrrl | 01:26 | |
*** andre__ has joined #maemo | 01:27 | |
*** rm_work has quit IRC | 01:31 | |
*** net-split has quit IRC | 01:31 | |
*** fecub has quit IRC | 01:33 | |
*** troulouliou_dev has joined #maemo | 01:36 | |
*** robink has quit IRC | 01:36 | |
*** troulouliou_dev has quit IRC | 01:37 | |
*** troulouliou_dev has joined #maemo | 01:37 | |
*** troulouliou_dev has left #maemo | 01:37 | |
*** troulouliou_dev has joined #maemo | 01:37 | |
*** eijk has quit IRC | 01:38 | |
troulouliou_dev | hi anybody here ? | 01:38 |
luke-jr | no | 01:39 |
*** javispedro has joined #maemo | 01:40 | |
*** ghostcube has quit IRC | 01:41 | |
*** HyperSnyper has quit IRC | 01:44 | |
*** dangergrrl has quit IRC | 01:44 | |
*** LaoLang_cool has quit IRC | 01:51 | |
*** LaoLang_cool has joined #maemo | 01:53 | |
*** SpeedEvil has quit IRC | 01:58 | |
jiero | anyway there is a N900 in lumina 710 shell... | 01:59 |
*** robink has joined #maemo | 02:04 | |
*** jeff_ has joined #maemo | 02:12 | |
*** jeff_ is now known as Trcx | 02:13 | |
*** LjL has quit IRC | 02:13 | |
LaoLang_cool | I guess maemo is the best os for multi-task support! | 02:14 |
chem|st | jiero: ? you managed to get maemo running on lumina? | 02:14 |
*** Trcx has quit IRC | 02:15 | |
*** Trcx has joined #maemo | 02:15 | |
*** LjL has joined #maemo | 02:16 | |
*** Technomike has quit IRC | 02:21 | |
*** florian has quit IRC | 02:26 | |
*** pronto has quit IRC | 02:27 | |
*** HyperSnyper has joined #maemo | 02:30 | |
*** HyperSnyper has quit IRC | 02:30 | |
*** HyperSnyper has joined #maemo | 02:30 | |
*** pronto has joined #maemo | 02:32 | |
*** SpeedEvil has joined #maemo | 02:36 | |
jiero | no | 02:37 |
jiero | chem|st: damnit Nokia1 I just "hope" :S | 02:38 |
*** kwtm has quit IRC | 02:43 | |
*** kwtm has joined #maemo | 02:47 | |
ShadowJK | Why did you say N900 in Lumia 710 shell? | 02:47 |
luke-jr | holy crap | 02:47 |
luke-jr | drained my N900 battery to 0% cuz I forgot XD | 02:47 |
luke-jr | and just managed to plug it in in time | 02:47 |
ShadowJK | without bme? | 02:48 |
*** trbs has quit IRC | 02:49 | |
luke-jr | ShadowJK: yeah, do I need BME for something? | 02:49 |
ShadowJK | no I was just wondering which measurement of 0 you used | 02:50 |
luke-jr | charge21.bash | 02:51 |
luke-jr | :P | 02:51 |
luke-jr | 2 mAh | 02:51 |
ShadowJK | lol | 02:51 |
luke-jr | (and this is while compiling PyKDE) | 02:52 |
*** kW has quit IRC | 02:52 | |
ShadowJK | (even when calibrated, it's a guess below 6%) | 02:52 |
*** OkropNick has quit IRC | 02:57 | |
*** M4rtinK has quit IRC | 02:57 | |
*** PeterWolf has joined #maemo | 03:03 | |
*** Mousey has quit IRC | 03:07 | |
*** swc|666 has quit IRC | 03:09 | |
*** mitsutaka has quit IRC | 03:12 | |
*** ferdna has quit IRC | 03:14 | |
*** otep has quit IRC | 03:15 | |
*** robbiethe1st has joined #maemo | 03:19 | |
luke-jr | ShadowJK: 2 mAh is also a guess? | 03:21 |
ShadowJK | yeah :P | 03:21 |
*** otep has joined #maemo | 03:21 | |
ShadowJK | The guess part is an assumption that at 3248mV there'll be 6% left until ~3000mV which is considered to be 0, though the hardware shutdown is around 2800mV actually, and the cellular modem stops working at around 3100... | 03:22 |
*** slonopotamus has quit IRC | 03:22 | |
ShadowJK | Whether there's actually 6% left until modem stops working, or until the entire device dies, is just an assumption/guess :P | 03:23 |
Pali | lxp1, thanks for help | 03:27 |
Pali | DocScrutinizer, now I know how flasher got that 8 bytes :D | 03:28 |
Pali | I found function which return 32bit int from array in flasher-3.5 | 03:28 |
Pali | first is called that function for secondary image | 03:29 |
Pali | and returned 4bytes is added to array (first 4 - header, second size) | 03:29 |
Pali | and that function is called on 12bit array (header, size, output from first call) | 03:30 |
Pali | *12byt | 03:31 |
Pali | and returned 4 bytes are last 4 bytes for that stupid nokias magic... | 03:31 |
Pali | So now RE coldflashing is done :-) | 03:32 |
SpeedEvil | :) | 03:33 |
luke-jr | Pali: were you = power kernel too? | 03:33 |
Pali | luke-jr: what? | 03:34 |
*** mitsutaka has joined #maemo | 03:34 | |
luke-jr | Pali: you maintain power kernel or not? | 03:34 |
Pali | yes | 03:34 |
*** javispedro has quit IRC | 03:34 | |
luke-jr | Pali: are you interested in patch to add highpass filter (so speakers don't blow up)? | 03:35 |
Pali | you can sent me it, I will look at it | 03:35 |
luke-jr | where at? | 03:35 |
luke-jr | http://luke.dashjr.org/tmp/code/0001-Support-for-tlv3 | 03:36 |
luke-jr | err | 03:36 |
luke-jr | http://luke.dashjr.org/tmp/code/0001-Support-for-tlv320aic3x-codec-highpass-filter-needed.patch | 03:36 |
luke-jr | Pali: still want me to email it? | 03:36 |
Pali | its ok | 03:36 |
*** mitsutak_ has joined #maemo | 03:36 | |
*** mitsutaka has quit IRC | 03:37 | |
*** robink has quit IRC | 03:37 | |
luke-jr | Pali: would be nice if it could be made to work at all kHz, and/or disable kHz it doesn't work at entirely, but I don't know how to do either | 03:40 |
*** tackat has quit IRC | 03:41 | |
*** robink has joined #maemo | 03:41 | |
*** kwtm has quit IRC | 03:44 | |
*** robink has quit IRC | 03:49 | |
*** LaoLang_cool has quit IRC | 03:53 | |
Pali | shit, that magic bits are really crc32.... | 03:57 |
merlin1991 | lulz | 03:57 |
Pali | first crc32 checksum is for image data | 03:57 |
SpeedEvil | :) | 03:58 |
Pali | and second for: 4byte header, 4byte size, 4byte first checksum | 03:58 |
Pali | why nokia added checksum for 12byt message?? | 03:59 |
*** jiero has quit IRC | 04:00 | |
merlin1991 | in order the be really really sure? | 04:00 |
troulouliou_dev | hi i have reinstalled my n900 with a custom rom and need to reistall all my apps , i can not find the name of the apps that allow to choose between cam or flashlight when opening the cam lid | 04:00 |
Pali | 16bytes init message it: 4bytes header, 4bytes image size, 4bytes crc32 of image, 4bytes crc32 of first 12 bytes | 04:00 |
merlin1991 | "custom rom" ? sounds evil | 04:00 |
troulouliou_dev | merlin1991 bah it is just a backup with some app and shortcut added | 04:01 |
merlin1991 | troulouliou_dev: I belive the name is Camera Lens Launcher | 04:01 |
merlin1991 | package name cl-launcher | 04:01 |
troulouliou_dev | merlin1991 ok checing now thanks | 04:02 |
troulouliou_dev | merlin1991 and what is the name of the app that allow to manage the way the N900 connect to internet | 04:03 |
troulouliou_dev | disabling 3g / bluetooth / wifi .... | 04:03 |
merlin1991 | err that descitpion is wayyyy to amibigous | 04:03 |
troulouliou_dev | it is a menu located in settings | 04:03 |
troulouliou_dev | that allwo to configure all the conection like bluetooth / wifi / 3 g ... | 04:04 |
troulouliou_dev | i installed it and used it for years but know can not find it again | 04:04 |
merlin1991 | sorry, don't know that one | 04:04 |
troulouliou_dev | ok np :) | 04:05 |
troulouliou_dev | btw this is the rom i have installed http://pwnieexpress.com/ | 04:05 |
merlin1991 | rofl | 04:06 |
merlin1991 | you do realize you can do all that without installing the "custom rom" from that err suspicous page? | 04:06 |
SpeedEvil | troulouliou_dev: flashlight-extra | 04:06 |
troulouliou_dev | merlin1991 yes sure to be honest i just wanted to know how they manage to shrink the font size in the shell for some apps :) | 04:07 |
troulouliou_dev | some ncursed base apps | 04:07 |
merlin1991 | I guess the have the binary send something to xterm | 04:08 |
merlin1991 | you can adjust the font size yourself with the zoom keys | 04:08 |
merlin1991 | SpeedEvil: I've been looking for that one but couldn't find it the right keywords :D | 04:08 |
troulouliou_dev | merlin1991yes but it is stick at a size of 24 or less i think then it display already at minimum font size | 04:09 |
troulouliou_dev | int this rom they have added size of 6 and 8 | 04:09 |
merlin1991 | just haxx0r it into xterm | 04:09 |
merlin1991 | :D | 04:09 |
merlin1991 | I wonder how they can provide a full image of meamo5 + stuff without violating nokia copyright on the closed source parts | 04:10 |
*** dotblank has quit IRC | 04:10 | |
troulouliou_dev | merlin1991 don't nwo it is a backup that you install with rootbacup application at startup | 04:10 |
troulouliou_dev | this is backuo is a legit rom first then it smash /opt and home/user/mydocs | 04:12 |
troulouliou_dev | so i guess it is legit | 04:12 |
*** dotblank has joined #maemo | 04:13 | |
*** ArGGu^^ has quit IRC | 04:17 | |
*** ArGGu^^ has joined #maemo | 04:18 | |
*** sheepbat has quit IRC | 04:20 | |
*** vivijim has quit IRC | 04:24 | |
*** troulouliou_dev has quit IRC | 04:24 | |
*** mitsutak_ has quit IRC | 04:34 | |
*** aholler has quit IRC | 04:34 | |
*** sheepbat has joined #maemo | 04:34 | |
*** aholler has joined #maemo | 04:34 | |
*** simh_ has quit IRC | 04:34 | |
*** simh_ has joined #maemo | 04:34 | |
*** mitsutaka has joined #maemo | 04:34 | |
*** beford has joined #maemo | 04:46 | |
*** hardaker has quit IRC | 04:47 | |
*** Macer has quit IRC | 04:50 | |
*** Macer has joined #maemo | 04:50 | |
*** swc|666 has joined #maemo | 04:53 | |
Pali | new final version of my cold flasher is out, see http://talk.maemo.org/showthread.php?t=80840 | 04:57 |
*** Intan_b has joined #maemo | 04:57 | |
*** Pali has quit IRC | 04:58 | |
*** Ian-- has joined #maemo | 05:02 | |
*** Ian--- has quit IRC | 05:02 | |
Intan_b | any body knows about progresses of harmattan ? i wonder which device is supportet | 05:03 |
SpeedEvil | Only the n9 and n950 | 05:04 |
SpeedEvil | that's it. | 05:04 |
SpeedEvil | And no, you can't port it to other devices legally | 05:04 |
Intan_b | no support for n900 then ? | 05:06 |
SpeedEvil | No. | 05:07 |
*** lxp has joined #maemo | 05:08 | |
Intan_b | btw n9 is really nice device with more appropriate os | 05:09 |
Intan_b | would it got beta release anytime soon (harmattan)? | 05:10 |
*** Intan_b has quit IRC | 05:11 | |
SpeedEvil | It's been released on the n9 | 05:11 |
*** lxp1 has quit IRC | 05:11 | |
*** Sazpaimon__ has joined #maemo | 05:11 | |
*** till- has quit IRC | 05:12 | |
*** Intan_b has joined #maemo | 05:12 | |
*** pcfe has quit IRC | 05:14 | |
*** Sazpaimon_ has quit IRC | 05:14 | |
*** pcfe has joined #maemo | 05:14 | |
*** pcfe has quit IRC | 05:14 | |
*** pcfe has joined #maemo | 05:14 | |
*** radic has quit IRC | 05:16 | |
luke-jr | Intan_b: it's been out for a while now | 05:17 |
*** robink has joined #maemo | 05:27 | |
*** NishanthMenon has quit IRC | 05:29 | |
*** radic has joined #maemo | 05:31 | |
*** maybeArgh has quit IRC | 05:32 | |
*** robink has quit IRC | 05:33 | |
*** maybeArgh has joined #maemo | 05:33 | |
*** slonopotamus has joined #maemo | 05:34 | |
*** slonopotamus has quit IRC | 05:39 | |
*** valdyn has quit IRC | 05:42 | |
*** slonopotamus has joined #maemo | 05:42 | |
*** slonopotamus has quit IRC | 05:50 | |
*** slonopotamus has joined #maemo | 05:51 | |
*** Scifig has joined #maemo | 05:53 | |
*** valdyn_ has joined #maemo | 05:55 | |
*** robink has joined #maemo | 06:00 | |
merlin1991 | omfg watching unforgettable: "what kind of video games do you like?" --> "Angry birds" | 06:01 |
*** valdyn_ has quit IRC | 06:08 | |
*** valdyn_ has joined #maemo | 06:08 | |
*** till has joined #maemo | 06:09 | |
*** geek00l has quit IRC | 06:23 | |
*** geek00l has joined #maemo | 06:24 | |
*** aholler_ has joined #maemo | 06:24 | |
*** aholler has quit IRC | 06:29 | |
*** mitsutaka has quit IRC | 06:29 | |
*** geek00l has quit IRC | 06:35 | |
*** SpeedEvil has quit IRC | 06:43 | |
*** sat2050 has joined #maemo | 06:47 | |
*** robink has quit IRC | 06:48 | |
*** Trcx has quit IRC | 06:51 | |
*** Scifig has quit IRC | 06:52 | |
*** robink has joined #maemo | 06:53 | |
*** mitsutaka has joined #maemo | 06:57 | |
*** SpeedEvil has joined #maemo | 06:58 | |
*** beford has quit IRC | 06:58 | |
*** slonopotamus has quit IRC | 07:06 | |
*** sandwitc1 has quit IRC | 07:08 | |
*** sandwitch has joined #maemo | 07:10 | |
*** hardaker has joined #maemo | 07:10 | |
*** nox- has quit IRC | 07:12 | |
*** slonopotamus has joined #maemo | 07:13 | |
*** Intan_b has quit IRC | 07:18 | |
*** DocScrutinizer has quit IRC | 07:38 | |
*** DocScrutinizer has joined #maemo | 07:38 | |
DocScrutinizer | moo flks | 07:40 |
DocScrutinizer | pali: nice :-) | 07:41 |
dm8tbr | mmoooooo | 07:41 |
*** Technomike has joined #maemo | 07:43 | |
*** hardaker has quit IRC | 07:48 | |
Technomike | hey guys got a little urgent problem here i need help with. when i go to download or save files on my n900, it shows the message 'Not Allowed' . i think its a problem with the file system or something because i was unraring an archive on my n900 earlier and it froze so i had to remove the battery. Its definetly something to do with that because it was fine beforehand. | 07:48 |
Technomike | would really appreciate any help at all | 07:49 |
dm8tbr | what does 'df' tell you? which filesystem is full? | 07:50 |
merlin1991 | also what does mount tell you? | 07:51 |
merlin1991 | especially the MyDocs part? | 07:51 |
merlin1991 | Technomike: ^^ | 07:51 |
*** lukasz_gut__ has quit IRC | 07:51 | |
merlin1991 | MyDocs should be the line /dev/mmcblk0p1 on /home/user/MyDocs type vfat (rw,... | 07:52 |
merlin1991 | the rw part is important | 07:52 |
dm8tbr | my current best bet would be: FAT is corrupted and mounted RO | 07:52 |
merlin1991 | yeah that's what where I was going with this :D | 07:52 |
*** Trcx has joined #maemo | 08:00 | |
Technomike | /dev/mmcblk0p1 28312128 27962944 349184 99% /home/user/MyDocs | 08:02 |
merlin1991 | woha nice usage | 08:03 |
merlin1991 | that might be the reason :D | 08:03 |
Technomike | sorry guys I am fairly noobish to be honest | 08:03 |
Technomike | haha well how can i find out if it is read only because that is what seems to be the case | 08:04 |
merlin1991 | Technomike: check "mount" in x-term | 08:04 |
Technomike | /dev/mmcblk0p1 on /home/user/MyDocs type vfat (rw,noauto,nodev,noexec,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0133,rodir) | 08:04 |
merlin1991 | that's read write | 08:04 |
merlin1991 | but from your df output it seems to be almost full | 08:04 |
merlin1991 | maybe remove one or two videos and try again ;) | 08:05 |
Technomike | well i just checked the disc usage in file manager and 341mb are free | 08:06 |
merlin1991 | you can run df -h for mor readable solution | 08:06 |
merlin1991 | and you should have no permission issue with MyDocs at least since it's mounted with uid=29999 which makes all access to it count as user | 08:07 |
merlin1991 | Technomike: can you run "touch /home/user/MyDocs/awesometesetfile" ? | 08:08 |
Technomike | aha just tried to delete a file in the file manager and it said drive is read only | 08:09 |
merlin1991 | that IS odd | 08:10 |
merlin1991 | according to your mount it is still rw | 08:10 |
* merlin1991 suggests a reboot | 08:10 | |
merlin1991 | if that does not work, save all data and only the fsck the partition | 08:10 |
merlin1991 | fsck on maemo is a synonyme for fuck up ;) | 08:11 |
Technomike | touch: /home/user/MyDocs/awesometesetfile: Read-only file system | 08:11 |
dm8tbr | merlin1991: mount will not show if kernel remounted 'ro' for broken fs | 08:11 |
merlin1991 | dm8tbr: silly, but I didn't know it | 08:11 |
Technomike | i have rebooted a few times | 08:11 |
dm8tbr | Technomike: attach to PC, do filesystem check | 08:12 |
Technomike | ah so basically i have gone and corrupted the fs then.... | 08:12 |
dm8tbr | yes | 08:12 |
Technomike | damn | 08:12 |
Technomike | i have no access to a pc at the moment | 08:12 |
merlin1991 | well then I suggest back up your data, using pc, and after that run fs test | 08:12 |
merlin1991 | on the other hand if you don't need your data, then you can unmount MyDocs and run the fs check on the device | 08:13 |
merlin1991 | risking complete dataloss | 08:13 |
Technomike | hmm just tried an sd card and even that is saying its read only but its definetly rw because its been in my phone | 08:13 |
merlin1991 | does dmesg reveal anything weird? | 08:14 |
Technomike | 2684.582214] mmc0: cover is closed, card is now accessible | 08:15 |
Technomike | 2685.034179] mmc0: host does not support reading read-only switch. assuming write-enable. | 08:15 |
merlin1991 | so far promising | 08:16 |
villager | merlin1991: in case you want to know, "cat /proc/mounts" would say what the kernel's view of the mount points are... | 08:22 |
* merlin1991 wonders why "mount" reports something else | 08:22 | |
villager | merlin1991: mount/umount records what they've mounted and unmounted into the file /etc/mtab, and the kernel doesn't update that file on its own | 08:23 |
merlin1991 | one could call the man page for mount missleading then | 08:25 |
villager | merlin1991: it's possible to symlink /etc/mtab to /proc/mounts (I think some distros do it), but I think that has its own problems, probably with chroots and whatnot | 08:25 |
merlin1991 | ... lists all mounted filesystems ... sounds like the current systemstate to me when I read it | 08:25 |
*** slonopotamus has quit IRC | 08:26 | |
*** sat20501 has joined #maemo | 08:28 | |
villager | merlin1991: well, in general it's true, the bootup scripts initializes mtab and all future mounting/unmount happens with mount/umount so it would update mtab, the kernel certainly doesn't do any trickery beyond error recovery | 08:28 |
*** vdv has joined #maemo | 08:29 | |
*** sat2050 has quit IRC | 08:29 | |
villager | merlin1991: in some cases such as chroots, though, you probably really do want an independent list of mounted filesystems instead of the kernel one | 08:29 |
Technomike | is there a command that i could at least try to make it read-write | 08:30 |
villager | merlin1991: also /proc/mounts is a Linuxism, other Unix-type OSes only track stuff through /etc/mtab without providing any other straightforward way to get at the data | 08:31 |
villager | Technomike: the MyDocs or the SD? | 08:32 |
Technomike | MyDocs emmc | 08:33 |
dm8tbr | fsck, but that can lead to data loss | 08:33 |
villager | Technomike: if it's not already rw, it's probably not going to work... but yes, there's a command, something like "mount /home/user/MyDocs -o remount,rw" (as root) | 08:34 |
Technomike | hmmm just put the sd card back in phone and deleted a file and it works fine... so its read write | 08:35 |
*** larsivi has quit IRC | 08:35 | |
*** dotblank has quit IRC | 08:36 | |
Technomike | oh well tried it and no luck as you knew anyway | 08:37 |
Technomike | well looks like its a format tomorrow... :( | 08:38 |
villager | Technomike: did it say why or put anything interesting into dmesg? | 08:38 |
Technomike | nope | 08:38 |
Technomike | /home/user # mount /home/user/MyDocs -o remount,rw | 08:38 |
*** zk8 has joined #maemo | 08:38 | |
Technomike | pressed enter | 08:39 |
Technomike | and | 08:39 |
Technomike | /home/user # | 08:39 |
*** valerius has quit IRC | 08:39 | |
villager | Technomike: it doesn't say anything if it works, maybe it worked then? | 08:39 |
Technomike | ahhh | 08:39 |
Technomike | [ 4427.891143] FAT: Filesystem error (dev mmcblk0p1) | 08:39 |
*** Guest57988 has quit IRC | 08:40 | |
Technomike | [ 4427.891174] fat_get_cluster: invalid cluster chain (i_pos 0) | 08:40 |
*** valerius has joined #maemo | 08:40 | |
Technomike | [ 4427.891204] File system has been set read-only | 08:40 |
villager | Technomike: well I'd rather try fsck before going to the step of formatting | 08:40 |
Technomike | ok | 08:40 |
Technomike | where can i obtain it | 08:40 |
villager | Technomike: you already have it on the device I think | 08:41 |
*** sat2050 has joined #maemo | 08:41 | |
*** sat20501 has quit IRC | 08:41 | |
Technomike | fsck 1.41.3.maemo0 (12-Oct-2008) | 08:42 |
villager | Technomike: you could try something like "fsck -t vfat -y /dev/mmcblk0p1" (the -y says "fix all errors even if it's risky") | 08:42 |
Technomike | thanks | 08:42 |
Technomike | is it really that risky though | 08:43 |
*** zk8 has quit IRC | 08:43 | |
luke-jr | run without -y and it will ask you | 08:43 |
luke-jr | also unmount it first | 08:44 |
villager | Technomike: depends on the damage... only fsck will know... the -y just says that if it does discover it's risky, it won't ask and just do it | 08:44 |
Technomike | /home/user # fsck -t vfat /dev/mmcblk0p1 | 08:44 |
Technomike | /bin/sh: fsck: not found | 08:44 |
*** mesx has joined #maemo | 08:45 | |
Technomike | /bin/sh: fsck: not found | 08:45 |
Technomike | what have i done wrong? | 08:45 |
Sc0rpius | root? | 08:45 |
villager | Technomike: what about /sbin/fsck? | 08:45 |
Technomike | got it | 08:45 |
Technomike | (got root shell) | 08:45 |
Sc0rpius | well /sbin should be in root's PATH | 08:46 |
villager | Technomike: or skip the wrapper and do "fsck.vfat /dev/mmcblk0p1" | 08:46 |
Technomike | done it | 08:46 |
*** Trizt has quit IRC | 08:46 | |
Technomike | There are differences between boot sector and its backup. | 08:47 |
*** Trizt has joined #maemo | 08:47 | |
Technomike | does that mean anything | 08:47 |
villager | probably something bad | 08:48 |
Technomike | yeah | 08:48 |
villager | did it ask whether you want to fix it? | 08:49 |
*** dotblank has joined #maemo | 08:49 | |
Technomike | FATs differ but appear to be intact. Use which FAT ? | 08:49 |
Technomike | i have 2 choices | 08:50 |
*** Roomerlol has joined #maemo | 08:50 | |
villager | yeah there's definitely been some corruption then | 08:50 |
Technomike | what would you do? try this or just use pc to backup and reformat | 08:51 |
Technomike | ? | 08:51 |
villager | any choice is risky and may lose data, but I'd probably choose fat number 1, as it's probably the one that's written first? | 08:51 |
villager | and therefore most up to date? | 08:52 |
villager | well, even if you tried to backup, the pc would have to read one of the FATs in order to do that backup, and it'd probably use FAT 1, so can't make things much worse to tell fsck to use it | 08:54 |
*** udovdh has quit IRC | 08:55 | |
villager | have you had the phone suddenly shut down, lose power, or whatever, while it may have been writing data to the emmc? it might explain this | 08:55 |
*** udovdh has joined #maemo | 08:56 | |
*** Trcx has quit IRC | 08:57 | |
Technomike | yep | 08:59 |
Technomike | i was extracting a rar archive on my n900 and it froze for 10min so i took the battery out | 09:00 |
villager | in that case it's probably not physical damage to the emmc, and fsck will only lose whatever file was being written at the time | 09:00 |
*** mitsutaka has quit IRC | 09:00 | |
Technomike | ah thats great | 09:01 |
Technomike | so it should be fine to do this now then | 09:01 |
villager | probably | 09:02 |
*** mitsutaka has joined #maemo | 09:04 | |
*** sat2050 has quit IRC | 09:08 | |
*** sat2050 has joined #maemo | 09:08 | |
Technomike | villager and everyone else | 09:16 |
Technomike | many thanks for your help. i will just backup on pc and format tomorrow. | 09:16 |
*** Openfree` has quit IRC | 09:17 | |
*** mavhc has quit IRC | 09:21 | |
*** mavhc has joined #maemo | 09:23 | |
*** ZogG_laptop has quit IRC | 09:23 | |
*** mece has joined #maemo | 09:25 | |
*** rd has joined #maemo | 09:29 | |
*** jpe has joined #maemo | 09:31 | |
*** Openfree` has joined #maemo | 09:31 | |
*** croppa has joined #maemo | 09:31 | |
*** rd has quit IRC | 09:34 | |
*** LaoLang_cool has joined #maemo | 09:39 | |
*** sat20501 has joined #maemo | 09:41 | |
*** sat2050 has quit IRC | 09:43 | |
*** rd has joined #maemo | 09:49 | |
*** murrayc has joined #maemo | 09:50 | |
*** drj_cro has joined #maemo | 09:50 | |
*** drj_cro has left #maemo | 09:51 | |
*** larsivi has joined #maemo | 09:56 | |
*** geaaru has joined #maemo | 10:00 | |
*** lxp has quit IRC | 10:03 | |
*** sheepbat has quit IRC | 10:04 | |
*** Sc0rpius has quit IRC | 10:07 | |
*** valerius has quit IRC | 10:07 | |
*** mitsutaka has quit IRC | 10:07 | |
*** mitsutaka has joined #maemo | 10:08 | |
*** calvaris has joined #maemo | 10:08 | |
*** SpeedEvil has quit IRC | 10:09 | |
DocScrutinizer | (<Sc0rpius> well /sbin should be in root's PATH) only when invoked via 'root', not though when invoked via 'sudo gainroot' | 10:11 |
*** rd has quit IRC | 10:12 | |
*** SpeedEvil has joined #maemo | 10:15 | |
*** sheepbat has joined #maemo | 10:17 | |
*** rd has joined #maemo | 10:22 | |
*** PeterWolf has quit IRC | 10:23 | |
*** swc|666 has quit IRC | 10:23 | |
*** larsivi has quit IRC | 10:25 | |
*** PeterWolf has joined #maemo | 10:26 | |
*** scoobertron has joined #maemo | 10:26 | |
*** scoobert1on has joined #maemo | 10:27 | |
*** scoobert1on has quit IRC | 10:27 | |
*** jrocha has joined #maemo | 10:27 | |
*** larsivi has joined #maemo | 10:28 | |
*** eijk has joined #maemo | 10:28 | |
*** sasquatch has quit IRC | 10:29 | |
*** sasquatch has joined #maemo | 10:29 | |
*** bergie has joined #maemo | 10:30 | |
*** eMHa_ has quit IRC | 10:32 | |
*** dvaske has joined #maemo | 10:33 | |
*** gomiam has joined #maemo | 10:36 | |
*** jhb has joined #maemo | 10:38 | |
*** Smily has joined #maemo | 10:42 | |
*** edheldil has joined #maemo | 10:43 | |
*** dneary_ has joined #maemo | 10:48 | |
*** dvaske has quit IRC | 10:51 | |
*** mitsutaka has quit IRC | 10:51 | |
*** vi__ has joined #maemo | 10:52 | |
*** valerius has joined #maemo | 10:53 | |
*** zz_gri is now known as gri | 10:53 | |
*** LaoLang_cool has quit IRC | 10:54 | |
*** trbs has joined #maemo | 10:58 | |
*** PeterWolf has quit IRC | 11:03 | |
*** dvaske has joined #maemo | 11:04 | |
*** ChuSiang has joined #maemo | 11:04 | |
*** mitsutaka has joined #maemo | 11:05 | |
*** PeterWolf has joined #maemo | 11:05 | |
*** OkropNick has joined #maemo | 11:06 | |
*** sat2050 has joined #maemo | 11:08 | |
*** ghostcube has joined #maemo | 11:10 | |
*** t_s_o has joined #maemo | 11:10 | |
*** sat20501 has quit IRC | 11:11 | |
*** udovdh has quit IRC | 11:13 | |
*** udovdh has joined #maemo | 11:14 | |
pfavr | I've figured out how to close notifications using dbus, just use: mdbus2 org.freedesktop.Notifications /org/freedesktop/Notifications org.freedesktop.Notifications.CloseNotification 23 | 11:15 |
pfavr | This closes the notification with id 23 | 11:15 |
*** ychavan has joined #maemo | 11:17 | |
*** LjL has quit IRC | 11:25 | |
*** Technomike has quit IRC | 11:26 | |
*** calvaris has quit IRC | 11:27 | |
*** LjL has joined #maemo | 11:28 | |
*** pfavr has quit IRC | 11:29 | |
*** bindi has quit IRC | 11:31 | |
*** gomiam1 has joined #maemo | 11:31 | |
*** calvaris has joined #maemo | 11:32 | |
*** gomiam has quit IRC | 11:34 | |
*** sat20501 has joined #maemo | 11:36 | |
*** kW has joined #maemo | 11:36 | |
*** kW has quit IRC | 11:36 | |
*** kW has joined #maemo | 11:36 | |
*** sat2050 has quit IRC | 11:39 | |
*** dvaske has quit IRC | 11:40 | |
*** Chiku|dc is now known as Chiku | 11:44 | |
*** bindi has joined #maemo | 11:44 | |
*** tackat has joined #maemo | 11:49 | |
*** Sc0rpius has joined #maemo | 11:50 | |
*** Sc0rpius has joined #maemo | 11:51 | |
*** florian has joined #maemo | 11:51 | |
*** florian has quit IRC | 11:51 | |
*** florian has joined #maemo | 11:51 | |
*** dvaske has joined #maemo | 11:57 | |
*** Dragnslcr has quit IRC | 11:57 | |
*** gomiam has joined #maemo | 11:58 | |
*** Dragnslcr has joined #maemo | 12:01 | |
*** vdv has quit IRC | 12:09 | |
*** vivijim has joined #maemo | 12:10 | |
*** shamus has quit IRC | 12:16 | |
*** scoobertron has quit IRC | 12:17 | |
*** calvaris has quit IRC | 12:19 | |
*** gri is now known as zz_gri | 12:25 | |
*** rd has quit IRC | 12:25 | |
*** calvaris has joined #maemo | 12:26 | |
*** Sazpaimon__ has quit IRC | 12:29 | |
*** shamus has joined #maemo | 12:29 | |
*** markinfo has joined #maemo | 12:30 | |
*** zap has joined #maemo | 12:33 | |
*** jiero has joined #maemo | 12:34 | |
*** InvalidHandle has quit IRC | 12:43 | |
*** InvalidHandle has joined #maemo | 12:45 | |
*** rd has joined #maemo | 12:51 | |
*** rd has quit IRC | 12:52 | |
*** vdv has joined #maemo | 12:54 | |
*** mesx has quit IRC | 13:01 | |
*** jiero has quit IRC | 13:02 | |
*** ChuSiang has left #maemo | 13:02 | |
*** mesx has joined #maemo | 13:03 | |
*** mardi has joined #maemo | 13:04 | |
*** markinfo has quit IRC | 13:05 | |
*** scoobertron has joined #maemo | 13:07 | |
*** dneary_ has quit IRC | 13:08 | |
*** jazedal has joined #maemo | 13:09 | |
*** marainein has joined #maemo | 13:10 | |
*** Arkenoi has joined #maemo | 13:13 | |
*** ketas has quit IRC | 13:15 | |
*** ketas has joined #maemo | 13:15 | |
*** jiero has joined #maemo | 13:19 | |
*** scoobertron has quit IRC | 13:19 | |
jazedal | There seems to be an IPC error with gpg-agent on the n900. | 13:19 |
*** scoobertron has joined #maemo | 13:21 | |
*** niv_ has joined #maemo | 13:22 | |
*** murrayc has quit IRC | 13:22 | |
niv_ | hi, how can I force the N900 to use AGPS and not GPS? | 13:23 |
niv_ | I mean that screen that asks whether to get info from my cellular provider | 13:23 |
*** markinfo has joined #maemo | 13:23 | |
*** etrunko has joined #maemo | 13:28 | |
*** kov has quit IRC | 13:28 | |
*** eMHa_ has joined #maemo | 13:29 | |
*** kov has joined #maemo | 13:29 | |
*** vivijim has quit IRC | 13:29 | |
niv_ | when you first use the N900 and turn the gps on , a window asks whether you like to use the cellular info for the gps | 13:31 |
niv_ | how to get this screen? | 13:31 |
*** vivijim has joined #maemo | 13:31 | |
SpeedEvil | settings -> location -> network positioning | 13:32 |
SpeedEvil | I'm fairly sure that's what that is using. | 13:32 |
*** kov has left #maemo | 13:33 | |
SpeedEvil | If you are having rrouble with the GPS, make sure the clock s set about right, and place it in view of the sky (note that some windows are not GPS tranparent) for 13 mintues. | 13:33 |
*** croppa has quit IRC | 13:35 | |
*** sat20501 has quit IRC | 13:38 | |
*** sat2050 has joined #maemo | 13:39 | |
*** sat2050 has quit IRC | 13:41 | |
*** geaaru has quit IRC | 13:43 | |
jazedal | gpg-agent works when you launch a sub-shell (e.g. gpg-agent --daemon /bin/bash), but it otherwise errs. For example, with the command line, "gpg -d secret.txt.gpg", it outputs, "gpg: problem with the agent - disabling agent use", and with the command line, "gpg-agent", it outputs "gpg-agent: can't connect to the agent: IPC connect call failed". Has anyone else had this issue? | 13:49 |
jazedal | Oh, and the environment variables were set (i.e. eval `gpg-agent --daemon`). | 13:51 |
*** mardi has quit IRC | 13:57 | |
*** tackat has quit IRC | 14:05 | |
*** tackat has joined #maemo | 14:07 | |
*** andrenarchy has joined #maemo | 14:07 | |
*** mitsutaka has quit IRC | 14:09 | |
*** scoobertron has quit IRC | 14:12 | |
*** ghostcube has quit IRC | 14:17 | |
*** ghostcube has joined #maemo | 14:18 | |
*** vdv has quit IRC | 14:19 | |
*** zz_gri is now known as gri | 14:21 | |
*** rd has joined #maemo | 14:23 | |
*** andrenarchy has left #maemo | 14:26 | |
*** mesx has quit IRC | 14:30 | |
*** mesx has joined #maemo | 14:31 | |
*** sat2050 has joined #maemo | 14:42 | |
*** dos1 has joined #maemo | 14:43 | |
*** net-split has joined #maemo | 14:44 | |
*** chenca has joined #maemo | 14:47 | |
*** crashanddie has quit IRC | 14:49 | |
jazedal | uit | 14:49 |
*** jazedal has quit IRC | 14:50 | |
niv_ | speedEvil: this is plain gps | 14:50 |
niv_ | speedEvil: I want to use AGPS and the cellular tower init info | 14:51 |
ruskie | niv_, I believe agps is only used to jumpstart the normal gps | 14:51 |
niv_ | right ruskie | 14:53 |
niv_ | and so the time to get a fix is a min | 14:53 |
niv_ | I get five minutes | 14:53 |
niv_ | and only when I see a lot of sky outdoor | 14:54 |
niv_ | i dont think the setting/location/network is the answer | 14:54 |
ruskie | you in the middle of a city? out on a grassy hill? middle of a forest? | 14:54 |
ruskie | inside of a building? | 14:54 |
niv_ | on the street buildings a two floors | 14:55 |
niv_ | lots of sky | 14:55 |
niv_ | inittal location is far away from me | 14:55 |
ruskie | hmm that sounds broken... what apgs server do you have in your settings? | 14:55 |
niv_ | it allways starts there | 14:55 |
ruskie | I think the inital location is set to when it last had a good lock | 14:55 |
niv_ | 100km from here | 14:55 |
niv_ | not in my case | 14:56 |
niv_ | int. gps | 14:56 |
*** geaaru has joined #maemo | 15:01 | |
DocScrutinizer51 | niv_: change supl server to google | 15:03 |
DocScrutinizer51 | most likely will fix things | 15:03 |
DocScrutinizer51 | and make sure your time is correct | 15:04 |
*** bash` has joined #maemo | 15:04 | |
DocScrutinizer51 | initial loc either from agps and agps/supl/gsm, or from last fix | 15:06 |
DocScrutinizer51 | 100km off might mean it locates you at center of your country according to GSM CC | 15:07 |
DocScrutinizer51 | or TZ | 15:07 |
DocScrutinizer51 | or whatever | 15:07 |
DocScrutinizer51 | good enough for (A)GPS | 15:10 |
DocScrutinizer51 | check your time, your supl server | 15:10 |
DocScrutinizer51 | supl.nokia.com known to be broken | 15:10 |
*** mitsutaka has joined #maemo | 15:18 | |
*** jiero has quit IRC | 15:22 | |
*** rd has quit IRC | 15:23 | |
*** jpe has quit IRC | 15:24 | |
*** markinfo has quit IRC | 15:25 | |
*** jpe has joined #maemo | 15:26 | |
*** Pali has joined #maemo | 15:30 | |
*** Pali has joined #maemo | 15:30 | |
*** marainein has quit IRC | 15:33 | |
*** t_s_o has quit IRC | 15:39 | |
*** jhb has quit IRC | 15:40 | |
*** dneary_ has joined #maemo | 15:43 | |
*** dneary_ has joined #maemo | 15:43 | |
*** jpe has quit IRC | 15:47 | |
*** jhb has joined #maemo | 15:48 | |
*** jpe has joined #maemo | 15:48 | |
*** etrunko has quit IRC | 15:50 | |
*** etrunko has joined #maemo | 15:51 | |
*** t_s_o has joined #maemo | 15:52 | |
*** vdv has joined #maemo | 15:56 | |
*** javispedro has joined #maemo | 15:58 | |
*** vdv has quit IRC | 15:59 | |
*** mece has quit IRC | 15:59 | |
*** hardaker has joined #maemo | 16:03 | |
*** dvaske has quit IRC | 16:06 | |
*** geek00l has joined #maemo | 16:08 | |
*** gomiam has quit IRC | 16:08 | |
*** scoobertron has joined #maemo | 16:09 | |
*** kodomo_ has joined #maemo | 16:14 | |
*** antifa has quit IRC | 16:14 | |
kodomo_ | hi folks... does anyone happen to know whether the N900 VoIP client supports SRTP? | 16:15 |
*** b0unc3 has quit IRC | 16:15 | |
kodomo_ | at least it seems to support SIP/TLS... | 16:15 |
*** sat2050 has quit IRC | 16:17 | |
Sicelo | doesn't. as far as i can gather | 16:20 |
*** calvaris has quit IRC | 16:20 | |
*** calvaris has joined #maemo | 16:21 | |
niv_ | DocScrutinizer51: thanks, was away , eatting | 16:22 |
*** x29a has quit IRC | 16:22 | |
*** l32606 has joined #maemo | 16:24 | |
*** gri is now known as zz_gri | 16:24 | |
kodomo_ | Sicelo: ic - as far as I get it, not even the regular telepathy supports it for now... | 16:25 |
*** jrocha has quit IRC | 16:27 | |
Sicelo | exactly... that's how i knew n900 doesn't. it's voip client is (based on) telepathy | 16:28 |
kodomo_ | hm... I guess I'll hop to #telepathy and ask them whether it's a planned feature :P | 16:29 |
kodomo_ | It's a bit of a surprise that it doesn't - given that libraries exist. | 16:30 |
*** zz_gri is now known as gri | 16:40 | |
*** x29a has joined #maemo | 16:46 | |
*** x29a has quit IRC | 16:46 | |
*** x29a has joined #maemo | 16:46 | |
*** scoobertron has quit IRC | 16:48 | |
*** calvaris has quit IRC | 17:01 | |
*** rm_work has joined #maemo | 17:06 | |
*** rm_work has quit IRC | 17:06 | |
*** rm_work has joined #maemo | 17:06 | |
*** markinfo has joined #maemo | 17:06 | |
*** calvaris has joined #maemo | 17:06 | |
*** jrocha has joined #maemo | 17:09 | |
*** dos1 has quit IRC | 17:17 | |
*** larsivi has quit IRC | 17:22 | |
*** mtnbkr has joined #maemo | 17:25 | |
*** zap has quit IRC | 17:26 | |
*** lukasz_gut has joined #maemo | 17:27 | |
*** mase76 has joined #maemo | 17:28 | |
*** Venemo has joined #maemo | 17:30 | |
*** Venemo has quit IRC | 17:30 | |
*** Venemo has joined #maemo | 17:30 | |
*** x29a has quit IRC | 17:32 | |
*** x29a has joined #maemo | 17:33 | |
*** kW has quit IRC | 17:33 | |
*** mitsutaka has quit IRC | 17:36 | |
*** kW_ has joined #maemo | 17:41 | |
*** Arkenoi has quit IRC | 17:43 | |
*** NishanthMenon has joined #maemo | 17:48 | |
*** jhb has quit IRC | 17:49 | |
*** sat2050 has joined #maemo | 17:52 | |
*** SmilyOrg has joined #maemo | 17:52 | |
*** Smily has quit IRC | 17:55 | |
*** jrocha has quit IRC | 18:04 | |
*** PeterWolf has quit IRC | 18:05 | |
*** PeterWolf has joined #maemo | 18:05 | |
*** Pali has quit IRC | 18:05 | |
*** eMHa_ has quit IRC | 18:07 | |
*** jhb has joined #maemo | 18:10 | |
*** vivijim has quit IRC | 18:11 | |
*** Venemo has quit IRC | 18:11 | |
*** penguinbait has joined #maemo | 18:13 | |
*** gri is now known as zz_gri | 18:14 | |
*** l32606 has quit IRC | 18:16 | |
*** sat2050 has quit IRC | 18:18 | |
MohammadAG | anyone good at graphing functions? | 18:21 |
bindi | y=x | 18:22 |
bindi | what do i win | 18:22 |
luke-jr | new N900s for $200: http://www.newegg.com/Product/Product.aspx?Item=N82E16833124444 | 18:22 |
MohammadAG | |x| + |y| = 5 | 18:22 |
MohammadAG | I need that drawn | 18:22 |
bindi | havent heard of worfram alpha? | 18:23 |
bindi | http://www.wolframalpha.com/input/?i=+%7Cx%7C+%2B+%7Cy%7C+%3D+5+ | 18:23 |
MohammadAG | bindi, can I plot two equations together? | 18:25 |
*** dneary_ has quit IRC | 18:25 | |
bindi | i guess | 18:26 |
bindi | try seperating with comma | 18:26 |
MohammadAG | that site is awesome | 18:28 |
bindi | you can also make something like plot {x^2, sqrt(x)}, x=0..2 | 18:28 |
MohammadAG | this is weird though http://www.wolframalpha.com/input/?i=plot+%7Cx%7C+%2B+%7Cy%7C+%3D+3%2C+x%5E2+%2B%7Cy%7C+%3D5 | 18:30 |
bindi | lol | 18:30 |
*** tackat_ has joined #maemo | 18:31 | |
*** tackat has quit IRC | 18:32 | |
*** ghostcube has quit IRC | 18:35 | |
MohammadAG | wow | 18:36 |
MohammadAG | bought an iOS app to help me | 18:36 |
MohammadAG | it's awesome, with lybniz was as powerful | 18:36 |
javispedro | did it cost $99999? | 18:36 |
MohammadAG | 2 | 18:36 |
MohammadAG | but it draws 3D stuff and allows manipulation | 18:37 |
MohammadAG | (by 3D I meant X/Y/Z planes) | 18:37 |
* javispedro runs SpaceTime on GarnetVM | 18:37 | |
*** vivijim has joined #maemo | 18:38 | |
*** flux has quit IRC | 18:39 | |
*** flux has joined #maemo | 18:39 | |
javispedro | MohammadAG, any suggestions to deal with N950 abstinence syndrome? | 18:41 |
*** zz_gri is now known as gri | 18:42 | |
MohammadAG | javispedro, what? | 18:48 |
MohammadAG | ah | 18:48 |
MohammadAG | javispedro, yeah, buy an iPhone | 18:48 |
MohammadAG | worked fine for me | 18:48 |
*** PeterWolf has quit IRC | 18:49 | |
*** nmjnb has joined #maemo | 18:50 | |
*** dimw1t has joined #maemo | 18:53 | |
*** LjL has quit IRC | 18:58 | |
*** calvaris has quit IRC | 18:59 | |
*** ghostcube has joined #maemo | 19:01 | |
DocScrutinizer51 | javispedro: hi! | 19:03 |
javispedro | hi | 19:06 |
javispedro | og, dual-core a5 chip | 19:06 |
javispedro | all-new 8mp camera | 19:06 |
*** LjL has joined #maemo | 19:06 | |
javispedro | and siri! | 19:06 |
MohammadAG | ooh http://harmattan-dev.nokia.com/docs/platform-api-reference/xml/daily-docs/libmeegotouch/class_m_page_switch_animation.html | 19:08 |
ShadowJK | is A5 the low power core for the asymmetric multicore thing? | 19:08 |
RST38h | moooo javispedro | 19:08 |
MohammadAG | afaik it's based on the ARM-A9 | 19:08 |
ShadowJK | Oh, apple a5 not cortex a5? | 19:08 |
javispedro | moo RST38h | 19:08 |
luke-jr | I don't suppose anyone's looked into these "scheduling while atomic" bugs in Fremantle/power? | 19:08 |
RST38h | any news? | 19:08 |
MohammadAG | javispedro, 4S sucks, get a 4 :P | 19:08 |
*** scoobertron has joined #maemo | 19:09 | |
MohammadAG | javispedro, | 19:09 |
*** andre__ has quit IRC | 19:09 | |
MohammadAG | I want a consistent header across my app | 19:09 |
javispedro | RST38h, naaah, I am also N950less due to dead pixels | 19:09 |
*** andre__ has joined #maemo | 19:10 | |
javispedro | MohammadAG, hah, I once wanted that too, but gave up | 19:10 |
MohammadAG | javispedro, https://meego.gitorious.org/meegotouch/libmeegotouch/blobs/master/demos/widgetsgallery/viewheaderpage.cpp (!!) | 19:12 |
MohammadAG | sadly it's on a window basis | 19:12 |
*** NIN101 has joined #maemo | 19:12 | |
javispedro | interesting... | 19:13 |
RST38h | javispedro: this dead pixel thing scares me | 19:14 |
* RST38h looks at n950 anxiously | 19:14 | |
luke-jr | O.o | 19:14 |
luke-jr | dead pixels = useless? | 19:14 |
luke-jr | javispedro: I never got a N950. | 19:15 |
luke-jr | hum, maybe ramzswap is related to the sched while atomic bug? but mine DID look different :/ | 19:16 |
javispedro | luke-jr, the blobs kept growing | 19:16 |
MohammadAG | when half the pixels go... | 19:16 |
luke-jr | javispedro: ew | 19:16 |
*** jhb has quit IRC | 19:17 | |
javispedro | it was nowhere near "half the pixels" but in three weeks it went from a few pixels to nearly a full line | 19:20 |
*** jhb has joined #maemo | 19:21 | |
javispedro | so I worried that if I kept waiting DDP might eventually forget about the device entirely | 19:21 |
*** habmala has joined #maemo | 19:27 | |
*** Roomerlol has quit IRC | 19:27 | |
*** BluesLee has joined #maemo | 19:31 | |
*** BluesLee has quit IRC | 19:32 | |
*** Venemo has joined #maemo | 19:34 | |
*** Venemo has quit IRC | 19:34 | |
*** Venemo has joined #maemo | 19:34 | |
*** vi__ has quit IRC | 19:36 | |
*** shanttu has joined #maemo | 19:40 | |
MohammadAG | ffs | 19:41 |
*** Roomerlol has joined #maemo | 19:43 | |
*** calvaris has joined #maemo | 19:44 | |
MohammadAG | MTF ALWAYS crashes my app for no reason | 19:45 |
*** Trcx has joined #maemo | 19:46 | |
*** dimw1t has quit IRC | 19:47 | |
*** ychavan has quit IRC | 19:48 | |
*** niwakame has joined #maemo | 19:51 | |
*** dimw1t has joined #maemo | 19:54 | |
*** scoobertron has quit IRC | 19:54 | |
*** dos1 has joined #maemo | 19:59 | |
*** ZogG_laptop has joined #maemo | 20:00 | |
*** Trcx has quit IRC | 20:02 | |
*** jhb has quit IRC | 20:04 | |
*** marainein has joined #maemo | 20:05 | |
*** markinfo has quit IRC | 20:05 | |
*** beford has joined #maemo | 20:09 | |
*** radic has quit IRC | 20:11 | |
*** radic_ has joined #maemo | 20:11 | |
*** BluesLee has joined #maemo | 20:12 | |
*** BluesLee has quit IRC | 20:13 | |
*** asmundg has quit IRC | 20:13 | |
*** asmundg has joined #maemo | 20:13 | |
*** Venemo has quit IRC | 20:17 | |
*** M4rtinK has joined #maemo | 20:22 | |
RST38h | Meanwhile: A Chinese neighbourhood was contaminated with human waste after an explosion caused by sewage-stealing thieves. | 20:28 |
MohammadAG | LOL | 20:30 |
*** trx has quit IRC | 20:35 | |
*** trx has joined #maemo | 20:35 | |
*** thomasvs has joined #maemo | 20:36 | |
*** thomasvs has joined #maemo | 20:36 | |
*** rd has joined #maemo | 20:37 | |
*** willer_ has quit IRC | 20:39 | |
*** lxp has joined #maemo | 20:39 | |
rd | chem|st, replacing the display revived my n900. Thanks a lot for the guidance in narrowing down the problem. | 20:40 |
rd | (now I have a good reason to continue building navit packages for the n900 :-) | 20:40 |
*** thomasvs has quit IRC | 20:40 | |
*** thomasvs has joined #maemo | 20:41 | |
*** thomasvs has joined #maemo | 20:41 | |
*** Pali has joined #maemo | 20:42 | |
*** githogori has quit IRC | 20:45 | |
*** swc|666 has joined #maemo | 20:47 | |
*** thomasvs has quit IRC | 20:47 | |
*** thomasvs has joined #maemo | 20:47 | |
*** thomasvs has joined #maemo | 20:47 | |
*** geaaru has quit IRC | 20:50 | |
*** larsivi has joined #maemo | 20:51 | |
*** tackat_ has quit IRC | 20:51 | |
*** beford has quit IRC | 20:52 | |
*** willer_ has joined #maemo | 20:56 | |
*** calvaris has quit IRC | 20:57 | |
*** thomasvs has quit IRC | 20:59 | |
*** thomasvs has joined #maemo | 20:59 | |
*** thomasvs has joined #maemo | 20:59 | |
*** SmilybOrg has joined #maemo | 21:04 | |
*** SmilybOrg is now known as Guest80270 | 21:05 | |
*** bergie has quit IRC | 21:05 | |
*** Guest80270 has quit IRC | 21:05 | |
*** thomasvs has quit IRC | 21:05 | |
*** thomasvs has joined #maemo | 21:06 | |
*** thomasvs has joined #maemo | 21:06 | |
*** Smily has joined #maemo | 21:06 | |
*** rd has quit IRC | 21:07 | |
*** chenca has quit IRC | 21:07 | |
*** rd has joined #maemo | 21:07 | |
*** SmilyOrg has quit IRC | 21:07 | |
*** Jef91 has joined #maemo | 21:08 | |
Jef91 | It seems the charging port on my n900 no longer wants to work | 21:08 |
Jef91 | Any ideas why that might be or do I need to crack it open? | 21:08 |
*** ferdna has joined #maemo | 21:09 | |
Proteous | hopefully the usb jack hasn't become unsoldered from the board | 21:09 |
ShadowJK | Most likely the port came off | 21:09 |
*** valdyn_ is now known as valdyn | 21:09 | |
*** florian has quit IRC | 21:10 | |
ShadowJK | Some people report their usb data cable still charges their N900s when that happens. Might just be because it applies pressure slightly differently | 21:10 |
ShadowJK | but I'd be nervous to try, since if it's unused it'll be alot tighter and probably dislodge the port completely | 21:10 |
Jef91 | yea if I angle it right it appears to charge | 21:11 |
ShadowJK | so it's loose | 21:11 |
Jef91 | man I was really hoping to get another year out of this | 21:11 |
ShadowJK | the port is about to fall off but hasn't quite fallen off yet | 21:11 |
*** thomasvs has quit IRC | 21:12 | |
Jef91 | nothing to be done about it then? | 21:12 |
Jef91 | Just piss poor nokia hardware? | 21:12 |
*** booiiing has quit IRC | 21:12 | |
*** thomasvs has joined #maemo | 21:12 | |
*** thomasvs has joined #maemo | 21:12 | |
ShadowJK | A professional electronics repairman might be able to save it as long as it hasn't detached completely.. | 21:12 |
ShadowJK | and a risky procedure | 21:12 |
Jef91 | well it out it the n900 is just a brick right? | 21:13 |
*** Smily has quit IRC | 21:13 | |
*** Smily has joined #maemo | 21:13 | |
ShadowJK | Some people have a few batteries that they cycle through external chargers | 21:13 |
*** booiiing has joined #maemo | 21:13 | |
Pali | ping X-Fade | 21:14 |
Pali | ~seen X-Fade | 21:14 |
infobot | x-fade is currently on #maemo #harmattan #meego. Has said a total of 26 messages. Is idling for 1d 3h 19m 33s, last said: 'pawky: yes'. | 21:14 |
Jef91 | Well I do have a second n900 | 21:15 |
Jef91 | swapping batteries around might work I guess | 21:15 |
Jef91 | Where can I get an external charger from? | 21:16 |
* ShadowJK has a external charger ready for the day when his N900s ejects usb ports | 21:16 | |
ShadowJK | here's a selection of stuff http://www.eastmaze.com/product/product_list.php?search_in_description=1&x=0&y=0&keyword=BL-5J | 21:16 |
*** thomasvs has quit IRC | 21:18 | |
*** SmilyOrg has joined #maemo | 21:19 | |
*** thomasvs has joined #maemo | 21:19 | |
*** thomasvs has joined #maemo | 21:19 | |
Jef91 | thanks shadowjk | 21:19 |
*** Smily has quit IRC | 21:20 | |
*** javispedro has quit IRC | 21:21 | |
*** rd has quit IRC | 21:24 | |
*** thomasvs has quit IRC | 21:25 | |
*** thomasvs has joined #maemo | 21:25 | |
*** thomasvs has joined #maemo | 21:25 | |
*** thomasvs has quit IRC | 21:31 | |
*** lizardo has joined #maemo | 21:31 | |
*** thomasvs has joined #maemo | 21:31 | |
*** thomasvs has joined #maemo | 21:31 | |
*** ghostcube has quit IRC | 21:34 | |
*** Trizt has quit IRC | 21:35 | |
*** rd has joined #maemo | 21:35 | |
*** jrocha has joined #maemo | 21:35 | |
*** thomasvs has quit IRC | 21:37 | |
*** thomasvs has joined #maemo | 21:37 | |
*** thomasvs has joined #maemo | 21:37 | |
*** koo2 has joined #maemo | 21:40 | |
*** sq-one has joined #maemo | 21:41 | |
*** LjL has quit IRC | 21:46 | |
*** LjL has joined #maemo | 21:47 | |
*** rd has quit IRC | 21:48 | |
*** ferdna has quit IRC | 21:49 | |
*** jiero has joined #maemo | 21:55 | |
*** rd has joined #maemo | 21:55 | |
*** Trizt has joined #maemo | 21:56 | |
*** thomasjfox has joined #maemo | 21:56 | |
*** lbt_away is now known as lbt | 21:59 | |
*** etrunko has quit IRC | 22:04 | |
DocScrutinizer | ~usbfix | 22:07 |
infobot | from memory, usbfix is http://talk.maemo.org/showthread.php?t=75920 - and **NEVER** use epoxy (unless you want to seal your device for underwater) | 22:07 |
DocScrutinizer | Jef91: ^^^ | 22:07 |
Jef91 | thanks docscrutinizer | 22:08 |
DocScrutinizer | yw | 22:09 |
*** perlite_ has joined #maemo | 22:10 | |
niwakame | someone experienced discharging at N900 while switched off? | 22:10 |
DocScrutinizer | may happen | 22:10 |
DocScrutinizer | not all subsystems of N900 are force-shutdown | 22:10 |
niwakame | have to remove the battery then next time | 22:11 |
*** perlite has quit IRC | 22:11 | |
DocScrutinizer | some contact directly to battery and have no direct /SHUTDOWN pin | 22:11 |
*** perlite_ is now known as perlite | 22:11 | |
DocScrutinizer | xso if your device didn't shut down "normally" (but rather crashed to off or sth, hard shutdown by 8s powerbutton hold), you might find some subsystems still eating power | 22:12 |
niwakame | I just shut it down by power button | 22:13 |
DocScrutinizer | also the main (APE) system as well can enter a state where device *seems* to be off but actually isn't. Frequently seen on stall reboots | 22:13 |
niwakame | I removed the battery for extracting the SIM card and put it back in :/ | 22:14 |
DocScrutinizer | NB in that regard plugged-in charger makes device *always* reboot | 22:14 |
DocScrutinizer | :nod: | 22:14 |
DocScrutinizer | inserting battery sometimes can cause this | 22:15 |
niwakame | Would be interesting if that happens too when connecting USB, but other end is not connected to charger / PC | 22:15 |
DocScrutinizer | you should always boot up the device after inserting battery, then shut it down if that's what you want | 22:15 |
niwakame | Ok, I will do that next time :) thanks | 22:15 |
DocScrutinizer | niwakame: no, there's simply no way the device could detect a open-ended cable in USB | 22:16 |
niwakame | So it was really taken down by my N9...somehow | 22:16 |
niwakame | :P | 22:16 |
*** penguinbait has quit IRC | 22:16 | |
DocScrutinizer | niwakame: when inserting battery, all the subsystems that are directly powered by battery may enter an undefined state | 22:17 |
DocScrutinizer | e.g whole modem | 22:17 |
DocScrutinizer | on booting up APE all those subsystems will see proper initialization, and will usually behave on next shutdown | 22:18 |
niwakame | strange | 22:19 |
DocScrutinizer | normal | 22:19 |
niwakame | in design terms | 22:19 |
*** zk8 has joined #maemo | 22:19 | |
niwakame | Like the "You can't charge the device when it's not charged" because the charging is managed by CPU / some other part that needs juice inside | 22:20 |
DocScrutinizer | nah, it's simply like there's no urgent need to have a 100% safe and rock solid POR circuitry on all subsystems | 22:20 |
DocScrutinizer | niwakame: that's BS | 22:20 |
DocScrutinizer | ~flatbatrecover | 22:21 |
infobot | Remove battery for 1 minute. Insert battery. Plug powered Nokia wallcharger to device. Watch steady amber. Let sit and charge. Do NOT try to boot. After 30 min, you got either a) a booted up N900, b) flashing amber which means you can boot, c) steady amber going off - in this case start over again with ~flatbatrecover | 22:21 |
niwakame | Never experienced myself, just seeing ppl complaining at the forum | 22:21 |
niwakame | But good to know | 22:21 |
DocScrutinizer | emphasis on "Nokia wallwart fastcharger" | 22:22 |
*** roundyz has joined #maemo | 22:22 | |
DocScrutinizer | it actually won't charge from PC USB host, as for USB ENUM *obviously* the CPU and system needs to be up and running | 22:22 |
*** tackat has joined #maemo | 22:23 | |
DocScrutinizer | (well, you might be lucky and it _does_ charge form PC nevertheless, but it's neither guaranteed nor officially supported) | 22:23 |
DocScrutinizer | but flatbatrecover emergency charging with the steady amber is a mere hw thing, that can't usually fail | 22:24 |
niwakame | ok | 22:25 |
DocScrutinizer | doom starts when the system kicks in after emergency charging did it's job. Then if you got a rootfs that's borked then you can't get charging to continue as booting to system stops emergency charging hw and switches to "sw-controlled charging" | 22:26 |
DocScrutinizer | its job* | 22:27 |
DocScrutinizer | and the BAD[TM] thing is that flashing a clean rootfs will fail at battery levels you could reach by hw driven emergency charging, so THAT is the well known flat battery boot loop, a vicious circle that is the reason for "WARNING!! charge your battery completely before any flashing" | 22:29 |
DocScrutinizer | see | 22:30 |
DocScrutinizer | ~flashing | 22:30 |
infobot | it has been said that maemo-flashing is http://wiki.maemo.org/Updating_the_tablet_firmware | 22:30 |
*** vblazquez has joined #maemo | 22:31 | |
niwakame | I humbly request to stop the information flow towards me, because I will get a bad conscience not answering and do say to thee: Thank you for all previous enlighting information ;) | 22:32 |
*** jiero has quit IRC | 22:34 | |
*** githogori has joined #maemo | 22:36 | |
*** zk8 has quit IRC | 22:37 | |
*** psychologe has joined #maemo | 22:39 | |
DocScrutinizer | a pleasure | 22:40 |
niwakame | :) | 22:40 |
DocScrutinizer | and get your USB port fixed! :-D | 22:41 |
niwakame | mine? | 22:41 |
DocScrutinizer | check the plug of the cable, contacts might be worn out or bent or dirty | 22:41 |
DocScrutinizer | ooh sorry | 22:41 |
niwakame | That's rock solid since day one :P | 22:41 |
DocScrutinizer | nope, was menat to Jef91 | 22:41 |
DocScrutinizer | meant* | 22:42 |
*** florian has joined #maemo | 22:42 | |
psychologe | DocScrutinizer, has a shortcuts to forward history on microB? | 22:43 |
DocScrutinizer | errr | 22:43 |
Jef91 | I tried several cables doc | 22:43 |
niwakame | ~shortcuts | 22:43 |
infobot | well, shortcuts is http://wiki.maemo.org/N900_Shortcuts_and_Gestures | 22:43 |
niwakame | ...just trying, worked for DocScrutinizer xD | 22:43 |
DocScrutinizer | lol, thanks niwakame | 22:43 |
DocScrutinizer | ~factinfo shortcuts | 22:44 |
infobot | shortcuts -- created by odin_ <n=dlm@93-97-168-38.zone5.bethere.co.uk> at Sat Dec 5 16:10:16 2009 (740 days); it has been requested 2 times, last by niwakame, 49s ago. | 22:44 |
*** Trcx has joined #maemo | 22:45 | |
psychologe | infobot, when microB on fullscreen mode , i want use keyboard forwrd history,,,i can use backspace key back history,but i don't kown any key forward | 22:46 |
*** niv_ has quit IRC | 22:47 | |
*** hurbu has joined #maemo | 22:47 | |
psychologe | Shift+Backsapce can't forward history on MicroB | 22:48 |
infobot | shrugs | 22:49 |
* niwakame laughs | 22:49 | |
niwakame | But I don't know either, I just clicked on the link again to forward | 22:50 |
*** Trcx has quit IRC | 22:52 | |
*** fecub has joined #maemo | 22:57 | |
*** roundyz has quit IRC | 22:59 | |
*** Patina has quit IRC | 23:00 | |
*** jiero has joined #maemo | 23:02 | |
*** net-split has quit IRC | 23:04 | |
*** LjL has quit IRC | 23:05 | |
*** net-split has joined #maemo | 23:07 | |
*** javispedro has joined #maemo | 23:09 | |
*** LjL has joined #maemo | 23:10 | |
*** Patina has joined #maemo | 23:12 | |
*** thomasjfox has quit IRC | 23:14 | |
*** tackat has quit IRC | 23:15 | |
*** jiero has quit IRC | 23:15 | |
*** fuz_ has quit IRC | 23:16 | |
*** jhb has joined #maemo | 23:20 | |
*** fuz_ has joined #maemo | 23:21 | |
*** niwakame is now known as niwakame|away | 23:24 | |
*** habmala has quit IRC | 23:30 | |
*** jhb has quit IRC | 23:35 | |
*** krau` has joined #maemo | 23:39 | |
*** krau has quit IRC | 23:39 | |
*** psychologe has quit IRC | 23:39 | |
*** krau` is now known as krau | 23:39 | |
*** javispedro has quit IRC | 23:41 | |
*** bash` has quit IRC | 23:45 | |
*** beford has joined #maemo | 23:46 | |
*** eMHa_ has joined #maemo | 23:48 | |
*** penguinbait has joined #maemo | 23:50 | |
*** rblank has joined #maemo | 23:51 | |
*** LjL has quit IRC | 23:57 | |
*** troulouliou_dev has joined #maemo | 23:58 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!