| *** d3tul3 has quit IRC | 00:11 | |
| *** rpierce99 has joined #xdandroid | 00:12 | |
| *** rpierce99 has quit IRC | 00:31 | |
| *** raymonddull has joined #xdandroid | 00:31 | |
| *** raymonddull has quit IRC | 03:05 | |
| *** kalemas has joined #xdandroid | 03:07 | |
| *** programmer8922 has quit IRC | 03:10 | |
| *** SytheZN has joined #xdandroid | 04:26 | |
| SytheZN | Greetings etc. | 04:26 | 
|---|---|---|
| SytheZN | I'd like to get my initrd to speak ext4 | 04:29 | 
| SytheZN | Been googling but I can't seem to find much info | 04:30 | 
| SytheZN | Any ideas? | 04:31 | 
| *** |Jeroen| has joined #xdandroid | 04:40 | |
| *** Sythe_ZN has joined #xdandroid | 04:50 | |
| *** SytheZN has quit IRC | 04:50 | |
| *** Sythe_ZN has quit IRC | 04:59 | |
| *** SytheZN has joined #xdandroid | 05:00 | |
| *** hardwalker has quit IRC | 05:21 | |
| *** Sythe_ZN has joined #xdandroid | 05:33 | |
| *** SytheZN has quit IRC | 05:33 | |
| *** teemodk has joined #xdandroid | 05:48 | |
| *** teemodk has quit IRC | 06:01 | |
| *** andygraybeal has joined #xdandroid | 06:21 | |
| *** SytheZN has joined #xdandroid | 06:25 | |
| *** Sythe_ZN has quit IRC | 06:25 | |
| *** SytheZN has quit IRC | 06:26 | |
| *** helicopter88 has joined #xdandroid | 07:15 | |
| *** newbie1 has joined #xdandroid | 07:27 | |
| *** newbie12 has joined #xdandroid | 07:28 | |
| *** helicopter88 has quit IRC | 07:31 | |
| *** newbie1 has quit IRC | 07:33 | |
| *** newbie12 has quit IRC | 07:34 | |
| *** |Jeroen| has quit IRC | 07:40 | |
| *** kipill has joined #xdandroid | 08:30 | |
| kipill | hi all! | 08:30 | 
| kipill | Please help debug error - Kernel Panic! after log message: smem_find(15, 16424) wrong size 40 | 08:32 | 
| *** daschacka has joined #xdandroid | 09:15 | |
| daschacka | hi | 09:15 | 
| *** daschacka has left #xdandroid | 09:16 | |
| *** fishhead2567 has joined #xdandroid | 09:17 | |
| *** helicopter88 has joined #xdandroid | 09:25 | |
| *** kalemas has left #xdandroid | 09:35 | |
| *** rneese_ has joined #xdandroid | 09:50 | |
| rneese_ | is there a list of all the tablets supported by xdandroid | 09:51 | 
| phh | wut ? | 09:51 | 
| phh | none ? :D | 09:51 | 
| helicopter88 | rneese_: " Only msm7k devices supported atm. " | 09:52 | 
| *** teemodk has joined #xdandroid | 09:52 | |
| helicopter88 | and not the latest msm7k,the older ones | 09:52 | 
| phh | there could be msm7k tablets :D | 09:52 | 
| phh | (god i hope not) | 09:52 | 
| helicopter88 | yeah,if someone makes a msm720x tablet would need to die | 09:53 | 
| rneese_ | also you would think tablets would have wireless n but most I have seens are still b/g | 09:55 | 
| helicopter88 | never thought about tablet having N | 09:55 | 
| helicopter88 | and this isn't the proper channel to talk about tablet | 09:56 | 
| *** kipill has quit IRC | 10:02 | |
| *** |Jeroen| has joined #xdandroid | 10:46 | |
| *** Yusuke14 has quit IRC | 11:25 | |
| *** NeoMatrixJR has joined #xdandroid | 11:27 | |
| jonpry | isn't bcm4325 N? | 12:02 | 
| *** corein has joined #xdandroid | 12:02 | |
| phh | i think it is | 12:06 | 
| detule | hey jonpry | 12:19 | 
| jonpry | hi detule | 12:30 | 
| detule | you have a sec | 12:30 | 
| detule | i am a little confused about this cycle-to-ns conversion https://gitorious.org/~detule/linux-msm-rhod/detules-linux-msm-rhod/blobs/htc-msm-3.1/arch/arm/mach-msm/timer.c#line394 | 12:34 | 
| jonpry | what about it | 12:38 | 
| detule | i would have put return cyc2ns(&clock->clocksource, (alarm - count) >> clock->shift); there | 12:39 | 
| jonpry | cyc2ns is a macro that does clock*mult >> shift | 12:40 | 
| detule | i guess i just can't match up the bit shift with what's in .27 and CA | 12:41 | 
| detule | they shit alarm-count as well | 12:41 | 
| detule | *shiFt | 12:41 | 
| jonpry | that doesn't make sense to me | 12:42 | 
| arrrghhh | i think they shit it is more appropriate. | 12:42 | 
| detule | it doesn't make sense to me either but perhaps alarm-count is not in cycles | 12:43 | 
| detule | but i think it's right | 12:43 | 
| jonpry | well if alarm and count are subticks. then (alarm-count)>>shift should be 1 or 0, maybe negative | 12:45 | 
| jonpry | 1 if count is 0. usually 0. and negative if count expired | 12:46 | 
| jonpry | you get a slowdown? | 12:46 | 
| detule | no | 12:46 | 
| detule | but | 12:46 | 
| detule | after i changed this return value i think it's doing something right | 12:46 | 
| detule | because now i HAVE to adjust wake_locks to IDLE | 12:46 | 
| detule | otherwise if woken up while in suspend by a wake_lock that's init'ed to SUSPEND, it will stay awake | 12:47 | 
| detule | i never understood how we could get away without adjusting any wakelocks | 12:47 | 
| jonpry | that is the correct behavior no? | 12:48 | 
| detule | no some of these wakelocks that are set to expire | 12:48 | 
| detule | like evdev that just briefly wake it up | 12:48 | 
| detule | or SMD_DATA1 | 12:48 | 
| jonpry | ok | 12:48 | 
| jonpry | i'm confused. is this with idle collapse enabled or not? | 12:49 | 
| detule | yeah idle collapse enabled | 12:49 | 
| jonpry | wakelock_suspend should be fine for everything except the vbus because of some irq issue | 12:49 | 
| detule | how about these guys that have an expiration | 12:50 | 
| detule | if the device is in idle | 12:50 | 
| detule | aren't there huge latencies | 12:51 | 
| detule | and those expirations are not quite sane | 12:51 | 
| jonpry | i don't understand | 12:51 | 
| detule | i gotta go, here's the diff for what i am using http://pastebin.com/CjxFxb7S i'll be back later | 12:52 | 
| jonpry | button gets pressed. evdev sets a 20ms wakelock to make sure the event is processed by userland. userland sets powermanager wakelock if it is inspired. device doesn't sleep | 12:52 | 
| *** NeoMatrixJR has quit IRC | 13:03 | |
| detule | sorry jonpry had to step out | 13:46 | 
| detule | i am just speculating here but not sure if its because the timer is in some low power mode whilst in IDLE, but don't think those wake lock timeouts are behaving right | 13:50 | 
| *** kalemas has joined #xdandroid | 13:52 | |
| jonpry | afaik wakelock_idle shouldn't be necessary | 13:56 | 
| detule | what do you think about the cycle to ns conversion | 13:57 | 
| detule | if you echo 72 to sys/module/pm/para*/debug_mask | 13:58 | 
| detule | it will print out what the sleep_times that are returned from that function are | 13:58 | 
| detule | we can compare with what i am seeing here and see if any one set makes more sense than the other | 13:58 | 
| teemodk | arrrghhh, did you see any useable radio logs from Starling or other with working RHOD100 nand radio - I would love to compare with my own | 14:14 | 
| arrrghhh | teemodk, they're posted on xda-devs and ppcg | 14:14 | 
| arrrghhh | not sure what you mean by 'usable' | 14:14 | 
| teemodk | so far I only saw an incomplete | 14:14 | 
| arrrghhh | ? | 14:15 | 
| teemodk | I mean - the one I saw is very short | 14:15 | 
| teemodk | no initializing | 14:15 | 
| arrrghhh | i dunno | 14:15 | 
| *** |Jeroen| has quit IRC | 14:16 | |
| arrrghhh | if you haven't found 'em on ppcg or xda-devs, i'm not hiding anything special teemodk :P | 14:31 | 
| arrrghhh | but from what i've gleaned, that "fix" isn't really a fix at all. | 14:31 | 
| *** rneese_ has quit IRC | 14:43 | |
| teemodk | okay np | 14:45 | 
| teemodk | nah, I didn't consider it a real fix, I would hate to call the police everytime I need to initialize the radio | 14:46 | 
| arrrghhh | lol | 14:47 | 
| arrrghhh | it doesn't seem to work consistently anyways. | 14:47 | 
| arrrghhh | we need to sort out why that trick works tho | 14:48 | 
| arrrghhh | "works" | 14:48 | 
| teemodk | yes, I have loads of logs, but without a good to compare with, Im lost | 14:48 | 
| arrrghhh | hrm | 14:52 | 
| arrrghhh | i thought there was some "good" logs on xda-devs | 14:52 | 
| arrrghhh | but if you can't find 'em, not sure what hope i have. | 14:52 | 
| teemodk | no you don't, was only hoping someone sent it to you or acl | 14:53 | 
| arrrghhh | nah | 14:53 | 
| arrrghhh | people know i don't know anything :P | 14:53 | 
| arrrghhh | they don't send me logs | 14:53 | 
| teemodk | lol | 14:54 | 
| teemodk | liar | 14:54 | 
| arrrghhh | :D | 14:58 | 
| *** Jonathan_R has joined #xdandroid | 15:01 | |
| Jonathan_R | i bricked my huawei ascend, thus far i have not been able to recover from it | 15:02 | 
| arrrghhh | bummer | 15:22 | 
| *** kalemas has left #xdandroid | 15:43 | |
| *** ^Tempest has quit IRC | 16:36 | |
| *** teemodk has quit IRC | 16:49 | |
| *** helicopter88 has quit IRC | 16:53 | |
| *** Sunhouse has joined #xdandroid | 16:58 | |
| *** corein has quit IRC | 17:50 | |
| *** NeoMatrixJR has joined #xdandroid | 18:04 | |
| *** fishhead2567 has quit IRC | 18:07 | |
| *** raymonddull has joined #xdandroid | 18:53 | |
| *** hardwalker has joined #xdandroid | 19:53 | |
| *** ray|yar has joined #xdandroid | 20:18 | |
| *** raymonddull has quit IRC | 20:19 | |
| *** ray|yar is now known as raymonddull | 20:21 | |
| *** raymonddull has quit IRC | 20:32 | |
| *** raymonddull has joined #xdandroid | 20:32 | |
| *** d3tul3 has joined #xdandroid | 20:54 | |
| *** raymonddull has quit IRC | 20:57 | |
| *** d3tul3 has quit IRC | 20:57 | |
| *** raymonddull has joined #xdandroid | 20:57 | |
| *** programmer8922 has joined #xdandroid | 20:59 | |
| *** raymonddull has quit IRC | 21:01 | |
| *** raymonddull has joined #xdandroid | 21:01 | |
| *** raymonddull has quit IRC | 21:06 | |
| *** raymonddull has joined #xdandroid | 21:07 | |
| *** programmer8922 has quit IRC | 21:11 | |
| *** d3tul3 has joined #xdandroid | 21:39 | |
| *** raymonddull is now known as ray|xbox | 22:01 | |
| *** ray|xbox has quit IRC | 22:18 | |
| *** TheSeven has quit IRC | 22:19 | |
| *** [7] has joined #xdandroid | 22:19 | |
| *** NeoMatrixJR has quit IRC | 22:24 | |
| *** raymonddull has joined #xdandroid | 23:06 | |
| *** d3tul3 has quit IRC | 23:41 | |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!