IRC log for #htc-linux on 20100204

00:00.25Markinuswhat is under /etc/wifi?
00:00.47adamwjust the wpa_supplicant config file
00:00.55Markinusahh ok
00:01.02adamwnothing exciting in that
00:01.13adamwi'll upload the files for you, just a sec
00:02.05adamwhttp://www.happyassassin.net/extras/bcm4329.hcd
00:02.15adamwhttp://www.happyassassin.net/extras/fw_bcm4329.bin
00:02.20adamwnotes that was totally illegal...oh well
00:02.28adamwCOME GET ME, BROADCOM
00:02.47Markinusha! :) thx
00:02.59adamwapparently it's right that all this stuff is 4329
00:03.04adamwthe 4329 driver covers 4325 and 4329
00:03.54Markinusok
00:04.35adamwi think someone else (i forget who, could be mrpippy) said sdio registration comes before firmware load so it shouldn't matter...but it doesn't look like that from dhd_linux.c . i dunno, imbw.
00:05.16MrPippythe calibration file is probably stored in nand flash
00:06.02MrPippyif its like tiwlan, calibration is unique per-phone (it has mac address in it), and its in nand flash at an offset that we probably don't know
00:06.24adamwdhd_bus_start does the firmware / calibration loading, dhd_module_init does the sdio registration
00:06.37adamwso i guess it depends which gets called first
00:07.37adamwMrPippy: how did we get the calibrations for other phones?
00:07.58Markinusadamw: we read thios from nand
00:08.02MrPippysomeone just dumped theres and its the one distributed with xdandroid
00:08.16Markinuswe know what we have ti search there
00:08.19adamwif someone walks me through it i can do the dump from my phone, i guess.
00:08.51adamwbut if the sdio registration problem isn't actually because of the firmware/calibration loading i guess we should fix that bit first, heh
00:09.11Markinuswe could dump /proc/calibration on a nexus . .
00:09.32adamwi think that may not work
00:09.36adamwthe nexus one actually has the BCM4329
00:09.40adamwso the calibration may not be the same?
00:09.48Markinusmeaybe the header
00:09.50*** join/#htc-linux Boydell (~Boydell@69.49.58.28)
00:09.54Markinusso we know what we have to find
00:09.58adamwah, i see
00:10.07adamwi don't know anyone who has a nexus one though, heh
00:10.17MarkinusI too . .
00:10.21adamwis trying to find if there's any official android phones with bcm4325
00:10.33Markinusgalaxi
00:10.57MrPippyyeah, dump calibration on the nexus, look at the first few bytes, then search for them in a dump of your nand
00:11.06adamwthe samsung one?
00:11.10Markinussamsung Galaxy
00:11.12Markinusyes
00:11.34adamwMrPippy: okay, how do we dump stuff exactly? is there an idiot's guide somewhere?
00:11.46adamwi can probably find someone with a nexus one or galaxy if i try hard enough
00:11.55Markinusdd
00:12.01MrPippyor, the bcm code might check the calibration file first, if it looks for a magic number then we can just search for that
00:12.23Markinusthis could be . . .
00:12.33MrPippyyeah, load the mtd modules for nand and dd /dev/mtd0 to a file
00:12.53MrPippyafaik you just don't want the modules loaded while android is running
00:13.45adamwso, what can i do it from? is there a way to get just a boot to a console? or can I do it from haretconsole?
00:14.00adamwi got haretconsole running the other day so if i can do it from there it should be okay
00:14.24adamwlooking at the bcm code btw i don't think it does any checks
00:14.28MrPippypretty sure the only way is from linux
00:15.44adamwhttp://fpaste.org/irup/ - seems to be the fw/calibration loader
00:15.53adamwit just loads it blindly and poops out if it doesn't work
00:16.17adamw(as far as I can see anyway, heh, imbw again)
00:16.51adamwMrPippy: ah, so what should i boot to have enough running to be able to do the dd?
00:17.48Captnoordlol
00:17.57CaptnoordI think its related to the keymap I selected
00:18.13MarkinusMrPippy: I cannot find any magic check
00:18.22Markinusits a simply read . .
00:18.31adamwyay markinus agrees with me, i'm probably not wrong :P
00:20.01MrPippyjust don't want to boot android, so you'll have to mount rootfs and edit /init to take out the init.android at the bottom
00:20.10adamwoh okay and that'll dump me to the console
00:20.17adamwthen i have to hope i can enter enough characters to do the dump, heh
00:20.25adamw> might be tricky
00:20.35MrPippyyeah, or get usbnet and telnet working
00:21.04adamwor wait, i'm being dumb
00:21.09adamwjust put the commands in the init script, no?
00:21.17adamwtell it to do the modprobe and then the dd
00:21.39MrPippyi guess you could, it just gets tiring if you don't have it right the first time
00:22.08adamwmight be less tiring than making usbnet work, is that complex? as i said earlier, 'ifconfig' already shows a usb0 interface with an ip address but i'm not entirely sure what that means
00:23.47makkonenMrPippy: there's a bunch of rabble in your thread because calibration doesn't work without an update to the kernel.
00:24.02MrPippyheh yeah i just saw that, so calibration is in the latest build and runs automatically?
00:24.17adamwMrPippy: yeah, with a new enough xdandroid image and new enough kernel it all works properly
00:24.28makkonenyeah. finally.
00:24.46MrPippyso i should take my hardcoded
00:24.51MrPippycal out of eclair.user.conf?
00:25.26makkonenyep
00:25.38makkonenthough i don't THINK it breaks anything if it stays there.
00:25.46adamwwhich of the mtd drivers need to be loaded exactly? is just mtd_blkdevs and mtdblock_ro enough? that looks like the safest combo
00:26.15adamwheh, module author david woodhouse...I know him.
00:27.11*** join/#htc-linux bzo (~chatzilla@netblock-68-183-234-14.dslextreme.com)
00:27.20Boydellno you dont
00:27.31adamweh?
00:27.39BoydellI'm just messing with yah lol
00:27.42adamwhehe
00:28.10adamwMrPippy: okay, well, i'll poke the nand dump later and let you know if i get it. right now i have been in this house for like three days straight, i'm going to go and hit stuff with sticks for a bit
00:28.12*** join/#htc-linux junalmeida (~junior@201.19.106.14)
00:28.24MrPippyhehe good call
00:28.37adamwi'll just do it via the initscript and yell if i get stuck
00:29.19Boydellnot sure if yelling helps
00:29.25Boydellyour the only one in victoria
00:29.30Boydell:D
00:30.59adamwvancouver :P
00:31.08Boydellw/e
00:31.10Boydellsame place
00:32.00adamwhehe
00:34.27Boydelljesus why do apps keep loading without me telling them to!!!!!!!
00:39.07*** join/#htc-linux noisyzen (~noisyzen@c-71-238-20-94.hsd1.mi.comcast.net)
00:44.25*** join/#htc-linux cosein (logan@slammer.CS.Dal.Ca)
00:48.02*** part/#htc-linux f77 (~Administr@cpc2-nfds13-2-0-cust243.8-2.cable.virginmedia.com)
00:53.33*** join/#htc-linux user (~ab4220f4@gateway/web/freenode/x-xbfgsriruagrwqvl)
00:54.05*** join/#htc-linux peteshug (~584137b1@gateway/web/freenode/x-cjrfsmaiaxhpgbhf)
00:54.55*** join/#htc-linux androiduser1 (~ab4220f4@gateway/web/freenode/x-rbkjgweirpqoidpr)
00:57.53Markinusadamw: I think I found the nvram file . .
01:01.03noisyzenMarkinus: your gsensor and power button fixes are awesome.
01:01.50Markinus:) . . the terrible thing is the sound  . .
01:01.56noisyzenOnly odd thing is that when my phone goes to sleep, i stop receiving calls - it'll ring for the person calling the entire time but it never wakes my phone up and there's no calls in the log
01:02.20Markinushmm, I will test it tomorrow . .I know this worked
01:02.21noisyzenYah, sound would be nice :) But I know you're working on it
01:02.28noisyzenI noticed it on another build, too.
01:02.30noisyzenI forget which one...
01:03.01noisyzenI have finally started making logs of each test run (what files, etc) and results.
01:03.19noisyzeni actually noticed it on monday with one of the older builds.
01:09.29Markinusohh, great! :)
01:10.47*** join/#htc-linux mcdull (~mcdull@n219076081115.netvigator.com)
01:14.28*** part/#htc-linux peteshug (~584137b1@gateway/web/freenode/x-cjrfsmaiaxhpgbhf)
01:15.43bzoMrPippy: I found that my diam500 was not stable with the new 2 bank changes until I added the hero smd_tty
01:16.23MrPippyok
01:16.35MrPippyi'll push that then
01:16.49bzoconstant crashes in market
01:17.02bzonow I just downloaded about 10 apps in a row successfully
01:17.15noisyzenyeah :)
01:17.34MrPippyi was gonna ask some other people (maejrep, cr2) what they thought of it, but i've been using it successfully so it can't be too bad
01:18.07bzowhat? you need more than 2 data points? hehe
01:18.28MrPippythe version in the desirec code was very similar, but had a giant glaring bug, either they didn't ship that kernel or they use the tty layer very very little
01:18.48bzoI suppose there is not hurry to push it though until you put a new build out
01:18.59bzohelps cdma only, right?
01:19.25MrPippyit's going to affect everyone, but there's nothing cdma specific about it
01:19.50MrPippyi think cdma might be more sensitive about smd channels than the other chips though
01:20.29bzoright, seems like no one else was reporting stability problems
01:21.30bzoI think some people did report some reboots in makkonen's ppc thread, maybe this issue
01:22.02MrPippyyeah
01:22.48bzoso, why is it that the hero doesn't use channels 1 or 7
01:22.48MrPippyits really stable, i've been running pandora without any problem for the last 20 minutes, usually it would have crashed before one song was done
01:23.15MrPippyall the native android phones use rmnet for data, instead of smd_tty+ppp like we do
01:23.47bzoah, ok thx
01:23.54MrPippyso we push the tty layer a lot harder than them
01:24.35bzo<PROTECTED>
01:25.47MrPippyyeah
01:26.48bzowonder under what other circumstance they saw issues, if not data
01:27.05*** join/#htc-linux pitillo (~pitillo@84.123.96.129.dyn.user.ono.com)
01:27.24bzobefore the smd_tty change, my setup was actually stable for everything but data
01:28.44MrPippyi think they only use smd_tty for the AT command port, gps, and some other stuff that should be low bandwidth
01:29.11bzothe other interesting thing is that the data transfer rate has gotten better. Apps are downloading much faster now.
01:29.31MrPippymaybe a lot of sms traffic or a fast-refreshing gps stream during heavy cpu load was crashing
01:29.51bzowas stuttering quite a bit before, so maybe it was blocking on full buffers or something
01:30.19MrPippyyeah during a browser speed test i was running top, the tty workqueues were taking 16% of the CPU
01:31.33*** join/#htc-linux jumoit (~samuel@121.77.87.145)
01:32.50MrPippymakkonen: i just pushed a patch for smd_tty that helps stability for us
01:33.17Markinusadamw: Here I made a package for you, http://www.multiupload.com/JEH6YX40O0 I compiled the kernel with the bcm driver as modul. It's better. Replace the zImage, put the other files to sdcard. Then start android, connect via telnet/adb and run:
01:33.20MrPippyi think our biggest stability issue right now is probably turning off wifi
01:33.49Markinusadamw: insmod /sdcard/bcm4325.ko firmware_path=/sdcard/fw_bcm4325.bin nvram_path=/sdcard/nvram.txt
01:34.27Markinusadamw: bcm4329.ko  . .
01:35.45Markinusadamw: in the old configuration the kernel try to load the firmware but the filesystem wasn't there . . this couldn't work . .
01:37.38bzoMrPippy: seems like you are pretty much there with the goal you stated a few weeks ago regarding stability and extra memory :)
01:39.28MrPippyheh yeah i think we finally did it
01:41.29*** join/#htc-linux BHSPitMonkey (~stephen@unaffiliated/bhspitmonkey)
01:50.06noisyzenquick question - i'm looking at the htc-wiki ... developer quick start guide. It's a bit sparse. I'm a perl developer, but I want to know what resources I should read to learn how to get started working on things...
01:50.11noisyzenha, maybe it's not a quick question :)
01:57.14Markinusthe quastion is, what du you will do? If you will work on the kernel you need C and a bit about the Kernel . . .
01:58.32noisyzenOk... What are all the options? I know there's apps (which I'm not all that interested in)... I'd like to do something related to getting Android on our phones. :) of course, maybe that's a bit general
02:02.50Markinus:) Kernel or user land, the connection between kernel - android
02:03.14noisyzenuser land seems interesting.
02:04.08Markinusthere a many configuration files in the rootfs.img / system.sqsh
02:04.19noisyzenyeah i unpacked those last night and was digging around in them.
02:04.49Markinuse.g. Wha does Bluetooth working on 1.6 but not on 2.01 ..  where is the difference . .
02:05.00noisyzenright... i find that very interesting.
02:06.39noisyzeni'm assuming that maybe the android developer's guide over at developer.android.com would probably be a good place to start?
02:08.38Markinustest it if you like it I think this is a bit different from dev to dev, what we find intresting what not! :) There are much informations ..
02:09.11noisyzenyeah, what are the best sources for information? it's daunting to read 300 posts on forums. :)
02:09.34Markinusso, time to sleep . .  good night!
02:09.41noisyzengood night :)
02:10.22*** join/#htc-linux jeremychang_ (~jeremycha@115.80.0.245)
02:16.38*** join/#htc-linux mastermerlin (~merlin@pD957CD27.dip.t-dialin.net)
02:31.22*** join/#htc-linux Boydell (~Boydell@69.49.58.28)
02:36.24Boydellwas off playin a game :)
02:36.26Boydellanything new?
02:53.09noisyzennot that i know of. messing around with different kernels and rootfs.imgs and system.sqshs and stuff
02:53.18noisyzentrying to see if i can find the magic combo for my phone
02:53.32Boydellehhh
02:53.39Boydellits that girl from last night?
02:54.25noisyzenyup :)
02:54.28noisyzenit's that girl from last night :P
02:54.33Boydellhaha
02:54.36Boydellwhat you have ?
02:54.43noisyzenhtc topaz (at&t pure)
02:54.53Boydellhm no clue then
02:54.56noisyzenheehee
02:55.09BoydellI have some idea with the Raph and Diam, but not that one
02:55.26noisyzenhad a 1.6 build on earlier that was working great except once the phone went to sleep it's like my phone went off the network
02:55.29noisyzenno incoming calls
02:55.37noisyzenevery once in a while a voice mail icon would appear
02:55.38Boydellah
02:55.43Boydell1.6 is shit
02:55.45noisyzenkinda screwy
02:55.52noisyzenthing is, same thing happened on monday with 2.0.1
02:56.11Boydellhm
02:56.26noisyzenso, i'm about to diff files and see if i can see anything obvious
02:56.28noisyzenlearning by doing i suppose
02:56.47Boydellthe 02.0.2 package doesnt work for you?
02:57.00Boydell***02.02
02:57.05noisyzeni pretty much have that.
02:57.09noisyzengosh what did i jsut put on there...
02:57.10Boydellfrom XDANDROID
02:57.12noisyzen02.02
02:57.17Boydellthats the only build I know of..
02:57.47noisyzenand then kernel 20100204_030416
02:57.54noisyzenthe stuff with that kernel from msm
02:58.06Boydellbah
02:58.09noisyzenbah? :)
02:58.10Boydellnot a clue with your phone
02:58.12noisyzenhehehehehe
02:58.21noisyzenthe gsensor worked on 1.6 earlier.
02:58.29noisyzeni see the changelog i think has the gsensor fix.
02:58.40Boydelldont know lol
02:58.43noisyzeni'm not sure if the phone thing comes from user land or if it comes frmo the kernel
02:58.46Boydellthe gsensor on mine is wacky
02:58.49Boydellturned it off
02:59.07noisyzenas in the phone buzzing/not buzzing part
02:59.16noisyzeni say buzzing since there's no external sound on me phone
02:59.17noisyzenlol
02:59.39Boydellbuxzzing?
02:59.46Boydellthe hell are you talking about
03:00.23noisyzenyou know, phone on vibrate mode?
03:00.27Boydelloh
03:00.31noisyzeni can't say ringing
03:00.32noisyzensince it doesn't ring
03:00.38Boydelli dont know if it works on yours
03:00.58noisyzenwell, ext. sound does not. but, when i first turn on the phone, i get calls. then it goes to sleep, and no more calls will come through
03:01.11Boydellthats weird
03:01.16noisyzencalled it earlier today from land line and just kept ringing and ringing... went to voice mail... looked on phone, no missed calls, nothin'
03:02.01*** join/#htc-linux Boydell_ (~Boydell@69.49.58.28)
03:02.39Boydellthats weird
03:02.40noisyzenyeah
03:02.45BoydellNo one calls me, so I dunno haha
03:02.47noisyzenhaha
03:02.48noisyzenyeah
03:02.55noisyzeni looked and my phone had a voice mail icon on it
03:03.05BoydellOn ours, we have to call out first before launching haret for the mic to work
03:03.07BoydellI never too
03:03.08Boydell*doo
03:03.10noisyzenso, i called my phone and didn't feel it ring...
03:03.11Boydelltoo lazy
03:03.12noisyzenoh wow.
03:03.20Boydellyah
03:03.25Boydellpain in the arse
03:03.27noisyzenyeah
03:03.42Boydellmore motavation to keep it on all the time and not reboot
03:03.51noisyzenhaha yeah.
03:03.57Boydellbut every morning i always find it booted back into winmo
03:04.01noisyzenweird.
03:04.18noisyzendo you know which files are donut/eclair specific? as in, rootfs.img? system.sqsh?
03:04.19Boydellvery. Im hoping with some of the latest mem stuff it fixes that
03:04.25Boydellerm
03:04.26noisyzeni know the zImage and the modules can go either way
03:04.27Boydellboth
03:04.29noisyzenokay
03:04.33BoydellI think
03:04.37noisyzenyeah I think you are right
03:06.47noisyzenpart of me wishes i didn't find out that i could run android on my phone.
03:06.52noisyzennow it's taking up all of my time lol
03:07.06*** join/#htc-linux Boydell_ (~Boydell@69.49.58.28)
03:07.42Boydellguh shitty internet
03:08.22noisyzenack
03:08.36noisyzeni had said part of me wishes i didn't find out that i could run android on my phone.
03:08.40noisyzennow it's taking up all of my time lol
03:09.03Boydellhaha
03:09.17BoydellI've been following the devolopment for about a year
03:09.27Boydelljust in the last 2 months i decided to try and contribute
03:13.04noisyzenoh wow nice.
03:13.06noisyzenwhat are you doing?
03:13.20Boydelltrying to understand wtf is going on most of the time ahha
03:14.10noisyzenhehehe
03:14.12noisyzenhow are you contributing?
03:14.16noisyzeni've been wanting to do that.
03:14.20noisyzencontribute, that is.
03:14.31noisyzenit's my bedtime so going to sleep soon and not articulating well. lol
03:14.46Boydellwell I dont know much about the linux kernal which make it tough
03:14.53Boydellbut most of the phones are GSM
03:15.09Boydellso when it comes time to compiling to the CDMA stuff, it will bugger up
03:15.14noisyzenahhh
03:15.15noisyzengotcha
03:15.20Boydellso right now I just try and track down why
03:15.28noisyzenah okay
03:15.42Boydellthere is alot of stuff I dont understand
03:15.45noisyzenwhee. now syncing in winmo doesn't work. (active sync)
03:16.03Boydellactive sync is useless
03:16.12Boydellit works sometimes and doesnt other days
03:16.49noisyzenit was working for me
03:17.21noisyzenhm. so looks like the gsensor stuff and being able to turn off power that i had in 1.6 is now not working with 2.0.2 and the kernel i'm using.
03:17.29noisyzenoh well. i'm tired.
03:17.35noisyzenanother 6:30am wake up
03:17.40noisyzenso gotta go to sleep.
03:17.51Boydellyah i think the gsensor for eclair is on its way
03:17.54noisyzentomorrow i'd like to hear how you're tracking stuff down
03:17.57Boydellanyways, later
03:18.04noisyzeni know markinus got the gsensor working
03:18.14noisyzenon donut
03:18.14Boydellsome of the debug tools your mean
03:18.15Boydell?
03:18.16noisyzenyeah
03:18.19Boydellah ok
03:18.20noisyzeni gotta go to sleep, but yeah
03:18.23Boydelladb is a good one
03:18.25noisyzentomorrow night if you're around
03:18.30Boydelli prob will be lol
03:18.34noisyzenlol okay sounds good
03:18.37noisyzeni probably will be too
03:18.38Boydellaight later
03:18.44noisyzenthis stupid phone is taking away all my sleep and time! :)
03:18.49noisyzenhave a good night eh :)
03:18.52Boydellha
03:19.00Boydellyou too
03:19.01*** join/#htc-linux Olipro (~Olipro@uncyclopedia/olipro)
03:19.05noisyzennight :)
03:19.08Boydellnight
03:58.53adamwooooh
03:59.02adamwi think i have something that could help for the bcm4325
03:59.16adamwthe lg gw620 seems to have the bcm4325, and the source for that is available...
03:59.19adamwgoes pokey poking
03:59.35Boydellhaha
03:59.35Boydellnice
04:00.01adamwhttp://forum.xda-developers.com/showthread.php?p=5312665 is a definite keeper
04:02.04Boydellis this for your wifi chip?
04:02.52adamwyeah
04:03.18adamwso far we've been trying to use the bcm4329 driver ripped from the nexus one
04:03.26adamwwhich claims, in the source, to support the bcm4325 as well
04:03.35adamwbut the gw620 seems to have its own (version of) the driver
04:03.41Boydellbo
04:03.43Boydell*boo
04:03.43adamwso i'ma take a look at that
04:03.48adamwMrPippy: still around?
04:04.38adamwhey, one of the gw620 guys is in vancouver too
04:04.45adamwmaybe I can yank him in to look at my phone, heh
04:05.18Boydelllmao
04:08.26*** join/#htc-linux jeremychang_ (~jeremycha@115.81.3.227)
04:10.39adamwhmm, the 620 driver may just be an earlier version of bcm4325 - but at least we might find good firmware and calibration in their root image...
04:13.06*** join/#htc-linux Boydell_ (~Boydell@69.49.58.28)
04:26.05adamwokay, so since I know people read logs:
04:26.38adamwthe source code for teh LG GW620, which has the bcm4325 that's in rhodium (and a couple other htc models), is at http://depositfiles.com/files/zibqndg0g
04:26.54adamwthe system files for the GW620 are at http://depositfiles.com/en/files/uygt3aqx0
04:27.30adamwthe system files contain etc/wl/nvram.txt , etc/wl/rtecdc.bin , etc/wl/rtecdc-mfgtest.bin and bin/BCM4325D0_004.001.007.0168.0169.hcd (I have no idea what that is)
04:29.15adamwthe kernel source contains kernel/drivers/net/wireless/bcm4325
04:29.29adamwwhich looks like possibly an earlier version of the driver that's now known as bcm4329 in the nexus one source, but i'll confirm that
04:30.17*** join/#htc-linux Olipro_ (~Olipro@uncyclopedia/olipro)
04:31.36stinebdfirmware maybe?
04:43.22tmztis N the only lacking feature?
04:50.51*** join/#htc-linux babijoee (~babijoee4@d110-33-172-85.sun801.vic.optusnet.com.au)
04:52.42adamwstinebd: the rtecdc.bin should be the firmware
04:52.54adamwstinebd: the mfgtest is probably an alternative firmware
04:53.02adamwnvram.txt should be the 'calibration' data
04:53.10adamwbut the BCM4325blahblah i don't know what that is.
04:56.32adamwlooks like it's essentially the same driver but the gw620 version is quite different
04:57.00adamwthe gw620 is versioned 4.217.27.0 , the bcm4329 from n1 is versioned 4.218.161.0
04:57.06adamwthey have rather different layouts...
04:57.11adamwnow to see if I can make this build, heh.
05:04.50*** join/#htc-linux |Jason8| (JayAte@2001:470:1f07:714::15e)
05:05.27MrPippyhaha wow i was just talking about that phone last night with randomblame
05:05.46MrPippyi should grab that source to see if it maybe uses a wince-style amss
05:06.38*** join/#htc-linux jeremychang_ (~jeremycha@115.81.3.227)
05:09.33adamwMrPippy: awesome you're there. i'm seeing if i can dump the source for this version of the driver into our tree and build it and see how that goes
05:10.39adamwMrPippy: even though it's an earlier version, it may work better I guess. I did notice the gw620 people are trying to get 2.6.29 working and the wireless isn't working, presumably they're using that driver code
05:10.49adamwso perhaps somehow that code's better for 2.6.27, and the n1 code is better for 2.6.29...
05:11.21adamwMrPippy: I guess we could look at their board- code too
05:11.48adamwMrPippy: the posts around http://forum.xda-developers.com/showthread.php?p=5312665 have a list of changed files in the lg code.
05:13.59MrPippyyeah, this should be a really interesting tree
05:14.17MrPippyi already see a bunch of changes in msm_touch, i guess they're using the onboard resistive controller
05:16.44*** join/#htc-linux babijoee (~babijoee4@d110-33-172-85.sun801.vic.optusnet.com.au)
05:16.52adamwhey, joee.
05:18.42adamwMrPippy: arch/arm/mach-msm/board-adam.c seems to have the control gpio
05:18.54MrPippyyeah
05:19.03MrPippyyou can find the control gpio on your phone pretty easy with haret
05:19.28adamwi think you put what should be the right one in the msm tree already though, right? or was that a guess?
05:19.33adamwi can do the haret test if that'd help
05:19.38adamwjust lemme know what to do
05:20.25*** join/#htc-linux goxboxlive (~jrs@mail2.hjellnesconsult.no)
05:20.27babijoeeyo guys
05:21.31adamwbabijoee: http://www.happyassassin.net/keymaps/current/ has a keymap for the non-tilt2 rhodiums, if you're interested
05:21.44adamwbabijoee: (and an init with a little bit of added code to load it, same as for tilt2)
05:22.03adamwit's labelled rhod210 but it's close enough for most rhodiums except the oddball azertys etc.
05:22.55MrPippythere's a gpio in the board- file already, i'd assume thats the one
05:23.21adamwwell it has a todo on it.
05:24.21adamw/TODO: use platform data
05:24.26MrPippyyeah i think thats just because doing in the board- file isn't real clean, it'd be better to put it with all the other wifi gpio stuff in mmc.c
05:24.53babijoeeadamw: where are the fiels?
05:24.56babijoeefiles*
05:25.08babijoeeopps
05:25.08babijoeenvm
05:25.28babijoeei'll add em now
05:25.36adamwbabijoee: just needs the rhod210* files to go to init.etc/keymaps and the change from init to go into xdandroid's init.
05:25.43babijoeeyeah i know
05:25.49babijoeeare you able to test it?
05:25.56adamwbabijoee: a few people have
05:26.02babijoeeconfirmed working?
05:26.08adamwbabijoee: yeah
05:26.10babijoeeokay
05:26.16babijoeei'll add them now
05:26.27adamwsee http://forum.xda-developers.com/showthread.php?t=627997 - it's in that build already
05:26.44adamwthat's the new thread for rhodium android (yeah, like we didn't have enough already, heh)
05:26.59adamwreefermattness started that one so the first couple of posts would be owned by active people who can update 'em.
05:28.51stinebdbabijoee: if you're interested, i've got a conceptual start at a rootfs git (if it ever becomes useful) http://gitorious.org/xdandroid-eclair/eclair-rootfs
05:29.10stinebdit gets complicated with git involved because you have to reset all the perms when you roll it up
05:29.21stinebdthems the breaks i suppose
05:29.33adamwyou could script that?
05:29.39stinebdyeah
05:30.01stinebdsee the scripts dir for some rudimentary stuff
05:30.16adamwnice
05:30.25adamwi'll take a look when i've failed hideously with this wireless stuff, heh
05:31.45babijoeeso i see rhod and tilt2
05:31.50babijoeewhich one am i meant to use?
05:32.06*** join/#htc-linux jeremychang_ (~jeremycha@115.81.3.227)
05:32.07stinebdrhod for wwe rhod, tilt2 for att rhod?
05:32.19babijoeeokay
05:32.23babijoeei'll just implement both
05:32.36adamwbabijoee: the tilt2 stuff is in already
05:32.59adamwbabijoee: leob added it to the new build he did
05:33.08adamwjust the rhod210 isn't in yet
05:33.11babijoeeooo
05:33.13babijoeethanks
05:33.30adamwtilt 2 has a completely different layout from other rhodiums which is why you need two - same deal as with the fuze from the last gen
05:33.37adamwat&t still addicted to their weird layouts...
05:33.39stinebdlast gen :(
05:33.42stinebdmy fuze feels so old
05:33.53adamwsorry stine
05:33.58adamwsorry stine's fuze :)
05:35.03stinebdi think someone broke the extra mem bank
05:35.21adamwsomeone landed a big commit which is meant to enable it by default for all phones that can handle it
05:35.34adamwthat could be it
05:35.40stinebdphh
05:35.47stinebdbut i don't see any obvious reason why it would be broken from that commit
05:39.22makkonenlive wallpapers are super dumb. but pretty cool, too.
05:39.27stinebdheh
05:40.14*** join/#htc-linux grandy (tits@c-71-205-226-177.hsd1.mi.comcast.net)
05:40.24MrPippyis bank2 broken for someone?
05:40.33stinebdme atm
05:40.43stinebdat least i think it's the bank
05:40.46makkonenMrPippy: can I get a copy of your latest .config? I assume I've got something building that's causing problems with power collapse.
05:41.20stinebdi'm bisecting now
05:42.24MrPippyyeah heres mine http://pastebin.com/m7c520cef
05:42.30MrPippystinebd: what happens?
05:42.31makkonenthanks
05:42.44stinebdMrPippy: freezes in the home screen some minutes after boot
05:43.40MrPippyhmm and its stable with 1 bank?
05:44.08stinebdit was stable with 2 banks before today
05:44.17randomblamehmm every time I try to compile my kernel for amss version 6225, board-htcraphael-gps.c throws up errors
05:44.36stinebdcrap i was touching the navipad
05:44.42babijoeeanyone here confirm tilt2 kb working?
05:45.21stinebdanyway, i'm testing now, i'll let you know for sure if it's the extra bank
05:45.47adamwbabijoee: yeah, i test that one myself
05:45.51adamwbabijoee: i use it every day, heh
05:45.56randomblameis there anyway to quickly disable the raph gps driver or do I have to go through and cut it out of everything
05:45.57adamwbabijoee: reefermattness uses it too.
05:46.18*** join/#htc-linux zycho1000 (~zycho___@f048051050.adsl.alicedsl.de)
05:46.29stinebdraph gps driver?
05:46.32babijoeeokay
05:46.56randomblameyeah it throws up errors when I compile my kernel for any amss version other than 5200
05:47.08adamwbabijoee: just make sure the permissions on the files are okay, leob broke them at first and that makes apps crash as soon as you press a key, hehe
05:47.12randomblameI could care less about gps at this point
05:48.06babijoeeadamw: are they doing that now?
05:48.08MrPippyrandomblame: did you add amss 6225 into our tree or something? its not an option
05:48.20adamwbabijoee: i've lost track of all the xdandroid revs, I believe he fixed it todayt
05:48.22babijoeei never had problems with permission b4
05:48.26MrPippy~seen titanmkd
05:48.27apttitanmkd <n=aa@vaf26-4-88-176-72-126.fbx.proxad.net> was last seen on IRC in channel #htc-linux, 55d 6h 49m ago, saying: 'and thanks for reply to my questions ;)'.
05:48.27randomblameorly? then why is it in the defconfig and kconfig
05:48.33babijoeewhere is the fix?
05:48.47adamwbabijoee: just need to be sure the keymap files are world readable
05:48.58randomblameI'm working off the msm 2.6.27 branch
05:49.15adamwbabijoee: when leo first added tilt2 he had the .kcm.bin file as 711 (rwx--x--x) and that don't work
05:49.24babijoeeooo
05:49.29babijoeewell i'll upload new one
05:49.33babijoeelet me know if it works
05:49.37adamwi'll check
05:49.37babijoeeanyone here with rhod210?
05:49.44babijoeeyou have that device too?
05:49.56adamwno, but i can boot with that keymap and check it behaves as it should
05:50.04adamwthe physical keys are all the same they're just mapped totally differently
05:50.12adamwso i just check the keys behave as if my phone was a rhod210, heh
05:50.20babijoeeooo
05:50.27babijoeeokay also let me know if its any smoother
05:50.47adamwhttp://www.wmexperts.com/sites/wmexperts.com/files/articleimages/George%20Ponder/2009/10/Tilt%202%20keyboard.jpg is a tilt2
05:50.50adamwhttp://www.blogcdn.com/www.engadgetmobile.com/media/2009/08/t-mobile-touch-pro2-review-10.jpg is a typical rhodium
05:50.54babijoeecan't remember who told me
05:50.54adamwsame keys, different labels :)
05:50.58adamwwill do
05:51.06adamwsmoother than what, though? i'm already on a build from yesterday
05:51.47stinebdis this about cpufreq?
05:52.40*** part/#htc-linux grandy (tits@c-71-205-226-177.hsd1.mi.comcast.net)
05:53.12babijoeetilt2 = rhodium right?
05:53.24adamwyeah it's a variant rhodium
05:53.29babijoeeooo
05:53.32adamwlooks slightly different, and the different key layout
05:53.36adamwhardware's all the same, though.
05:53.38babijoeeso it needs a new folder in startup config right
05:53.55stinebdit has ptt too :>
05:54.00stinebdi think
05:54.12adamwstinebd: yeah, it has that.
05:54.16adamwnot that i ever used it, heh.
05:54.22stinebdprobably not mapped in the kernel yet
05:54.38adamwit acts like pressing the e key
05:54.44adamw*exactly* like pressing the e key
05:54.47*** join/#htc-linux randomblame (~kevin@c-71-59-184-96.hsd1.wa.comcast.net)
05:54.49babijoeeuhh
05:54.50adamwso, not super-useful
05:54.50stinebdhaha wow
05:55.02randomblamedamn virtual box booted me again
05:55.18adamwbabijoee: it needs its own startup config, yeah. it needs to have the physkeyboard=tilt2 parameter.
05:55.20stinebdlet me look through the board to see how it might be handled
05:55.27babijoeebah i'm confused :p
05:55.42adamwbabijoee: ok, let's take it from the top :p
05:55.44randomblamemr.pippy what amss versions are supported on the msm 2.6.27 branch? I wonder why 6225 left as an option in the config
05:55.48babijoeeokay
05:55.51randomblameprobably just to annoy
05:56.02babijoeerhodium =
05:56.11MrPippyoh yeah it is there, i don't know if we have any phones that use 6225
05:56.27randomblamemaybe thats' why it's broken lol
05:56.29adamwbabijoee: rhodium is the htc codename for all Touch Pro 2 and Tilt 2
05:56.38babijoeeah k
05:56.52babijoeeso majority will use which layout
05:56.56adamwbabijoee: the Tilt 2 is AT&Ts version with a different keyboard layout, a shiny shiny chrome surround, and a ptt button
05:56.58adamwbabijoee: rhod210 for sure
05:57.05adamwtilt2 is *only* for the at&t variant
05:57.06babijoeeokay
05:57.07babijoeegot it
05:57.27stinebdadamw: have you tried using haret to see what the ptt button does in winmo?
05:57.31babijoeeso i have a rhodium and tilt2 folder
05:57.36adamwstinebd: hadn't got to it yet
05:57.41adamwbabijoee: sounds good
05:57.46babijoeeokay
05:58.03adamwstinebd: on android with getevent, it emits three events on press and three on release
05:58.13adamwstinebd: one of the three is totally empty - all zeroes
05:58.18stinebdadamw: that's a sync event
05:58.22stinebdignore it
05:58.34adamwstinebd: the second event is a keyboard event, which is exactly the same as pressing e on the keyboard
05:58.43stinebdfirst event is also useless
05:58.49adamwa keycode (I forget which, but the same one), and value 00000001 for press and 00000000 for release
05:59.00stinebdbut anyway, it's the kernel's job to differentiate it from the e key
05:59.03stinebdso geteven won't be helpful
05:59.08adamwthe first event is a 'generic' event or something, and that's different between the ptt button and the e key.
05:59.09adamwah, k.
05:59.17adamwi shall annoy markinus again then
05:59.24adamwand tell him it's all his fault :P
05:59.33adamwthe up arrow and left arrow key have the same problem, they give the same eventcode
05:59.41stinebdreally?
05:59.43adamwyup
05:59.54adamwall other buttons / keys are unique, but those two pairs
05:59.55babijoeeokay all done
06:00.00adamwbabijoee: thanks!
06:00.01babijoeei'll upload new pack soon
06:00.11adamwk, i'll check it all worked out okay
06:00.16babijoeethanks
06:00.52adamwstinebd: what could I check in haret? i can do that if it'd help.
06:01.25stinebdhttp://www.handhelds.org/moin/moin.cgi/HaRET_20Documentation
06:01.36stinebduse haret console and see the polling gpios section on that page
06:02.09adamwk
06:02.13stinebdit's pretty much a matter of filtering out all the output until you square in on the data you get when pressing the button
06:04.08mcdullbabijoee: could you modify the config file so that ADB could be enabled by default?
06:04.19babijoeeit is mcdull
06:04.26stinebdusb must be plugged in at boot
06:04.48babijoeeafaik thats the only way right
06:05.15mcdullyes.. but the driver couldn't be loaded properly in windows right now.
06:05.25mcdullneed to change the usb to single ADB interface.
06:05.48babijoeemcdull hmm i dunno about windows :p
06:05.56babijoeeit works perfectly in linux :)
06:06.23adamwstinebd: seems to be http://fpaste.org/xV8n/
06:06.54makkonenhas power collapse stopped causing the LEDs to breathe since the changes were pushed to allow userspace to access them?
06:06.59stinebdadamw: can you compare that with something like voldown? and then defer to someone who knows more about the kernel stuff :D
06:06.59mcdullecho 2 > /sys/devices/platform/msm_hsusb/usb_function_switch
06:07.13mcdulladd this one to conf would fix the problem.
06:07.20adamwstinebd: sure
06:07.26mcdullcustom shell command.
06:07.52makkonenprobably better to add it in the /init script. less messy.
06:08.21mcdullyes I think so. but I am afraid that this may break the adb function for non-windows user.
06:08.28adamwuhh that's fun
06:08.38adamwthe PTT button's gpio output really looks like the e key
06:08.58makkonenshouldn't break adb for anyone -- might break usbnet, though.
06:09.03adamwstinebd: http://fpaste.org/GFOQ/
06:09.06randomblameargh dex hates me
06:09.14makkonenadamw: it wouldn't need debugging if it were easy.
06:09.20adamwmakkonen: :P
06:10.45adamwyeah, they're the frickin' same. huh.
06:11.03adamwmakkonen: did you see the stuff about the lg gw620 source tree I found btw? seems to have another version of the driver for bcm4325
06:11.21adamwand that one actually has the 4325, not 4329 like n1
06:11.25adamwanyhoo.
06:11.34makkonenI did see that. It's pretty far outside my realm of expertise.
06:11.38*** join/#htc-linux bzo (~chatzilla@netblock-68-183-234-105.dslextreme.com)
06:11.54stinebdcrazy att with their nonsense keypads
06:11.59makkonenthere seems to be a rumor going around that I know what the hell I'm doing. I should probably disabuse anyone of that notion.
06:12.14stinebdmakkonen: welcome to the club. i'm member #1
06:12.17adamwmakkonen: you can't possibly know what you're doing any less than I do
06:12.25*** join/#htc-linux leobaillard (~leobailla@leobaillard.org)
06:12.31makkonenstinebd: yeah. see, I totally had the impression you knew what you were doing.
06:12.41adamwstinebd: i think now the only mystery is why the frickin' ptt button doesn't type an 'e' in winmo :)
06:12.56bzomakkonen: when phh moved the led stuff to userspace, i believe the sleep breathe got disabled until the new userspace app is created
06:13.14bzoif you monitor adb logcat, you can see when it goes in and out of sleep
06:13.23mcdulldo anyone has an idea on how to debug a blackstone which don't wake (it is actually functioning but failed to wake the touch screen)
06:13.35makkonenok. because everything looks like power collapse is working, but not breathing LEDs.
06:13.46adamwwell, let's see if the up and left arrows look different anyway. sigh.
06:14.06makkonenbzo: adb. don't talk to me about adb.
06:14.07makkonensobs
06:14.07bzohehe
06:14.14bzomcdull: setting adb to single interface breaks it for linux.
06:14.48makkonenoh. ok. I was wrong.
06:15.33leobaillardhi there ! what did I miss ?
06:15.36mcdullbzo: oh really. So it is difficult... I remember with an old kernel, it has ADB composite interface and windows works well. However, later kernels broke it.
06:16.02makkonengah. windows sees the device. when I disconnect and reconnect, it shows up in the device manager like a totally reasonable thing. but adb devices shows nothing. Just like the old days. It worked for like 4 days.
06:16.12bzoMrPippy looked at the adb source, it expects a multi interface for some reason
06:16.16*** join/#htc-linux GNUtoo (~GNUtoo@host146-211-dynamic.25-79-r.retail.telecomitalia.it)
06:16.25adamwoh. well in a way this makes more sense. apparently all you get on *any* keypress is that same GPIOS(6) change
06:16.34mcdullmakkonen, add this line to config. echo 2 > /sys/devices/platform/msm_hsusb/usb_function_switch
06:16.43adamwit's always 92e00c20=07b45006 (00000800) then 92e00c20=07b45806 (00000800) , whatever the key. still, doesn't help a lot.
06:16.44makkonenMrPippy: you had a fix for adb... did it ever get pushed to the main tree?
06:17.08makkonenmcdull: shouldn't be necessary. I already disabled everything but adb for usb_functions
06:17.19adamwstinebd: what's your NEXT bright idea, huh, mister? :)
06:17.22makkonengoes to check that that is actually true.
06:17.52MrPippyat the moment, the xdandroid init and eclair.user.conf don't set usb_function_switch, so it should be usbnet+adb by default
06:17.54makkonen...that is no longer true.
06:17.56stinebdadamw: watch irqs :D
06:18.01mcdullmakkonen: but  I can always to adb with no problem.
06:18.13adamwstinebd: oh, you actually had one. I wanted a snappy comeback, not useful and productive advice, damnit :)
06:18.24stinebdthat's a mix of both
06:18.54adamwnothing on irqs, for ptt button or keyboard keys.
06:19.10makkonenthere's no < or > on the keyboard, is there? stupid non-posix-friendly smartphone; what were they thinking?
06:19.38MrPippya keyboard without SysRq? have they gone mad?
06:19.59stinebdand no any key
06:20.05makkonenI don't see any any key
06:20.38randomblameMrPippy do you know of a method of getting amss version and possibly dex memory address through a haret dump?
06:21.03mcdullthe implementation with the composite ADB function in this kernel seems to work fine.. how can I check out the source? zImage-modules-20091222_210627.tar
06:21.51adamwthat's interesting. you seem to get a GPIO event that looks much like a keypress event on opening/closing the keyboard...
06:21.52MrPippyyou could dump all of smem and just go through it with strings or a hex editor
06:22.09makkonenhey, echo 2 > /sys/devices/platform/msm_hsusb/usb_function_switch works on this kernel. keen. sorry to doubt you, mcdull.
06:22.18stinebdadamw: got a linux-msm checkout?
06:22.21randomblamethe dex address isn't in smem
06:22.30adamwstinebd: i gots three of 'em
06:22.41adamwis reinventing git in directory structures
06:22.46makkonenadamw: that's a little... opulent, isn't it?
06:22.56mcdullmakkonen: actually all latest kernel in these few weeks works.
06:22.59adamwhell, I got nothing else to do with this hard disk space
06:23.07adamwand I still suck too much at git to use it for what it's actually meant for
06:23.16bzomcdull: src to adb daemon/client?
06:23.17adamwso when I need to screw with a tree I just make a copy. :P
06:23.21stinebdadamw: ok, pick your favorite one, look in arch/arm/mach-msm/board-htcrhodium-keypad.c (and maybe msm-gpio-keys.c for good measure) and start adding buttons randomly. if ptt works, you win
06:23.31adamwstinebd: it sounds so easy! :)
06:23.38mcdullbzo: the kernel source "device.c" as I remembered
06:23.39stinebdadamw: that's how i did it with raph
06:23.44adamwstinebd: oh joy.
06:23.45stinebdbut it was much easier since there's raph_navi_pad
06:23.51stinebdno such luck on rhod
06:23.55adamwthere's a navipad for rhodium too
06:23.59adamwbut it has almost nothing on it
06:24.08adamwand this button seems to be part of the keyboard, so, yeah. i lose.
06:24.08makkonenadamw: you'd be better served by actually learning how git works. It's only impenetrable and baffling for the first... well, I've been using it for about 5 months now, so I'm going to guess... 2 years.
06:24.15adamwmakkonen: heh
06:24.30stinebdadamw: i mean in the kernel, board-htcraphael-navi.c
06:24.38adamwmakkonen: i've had to deal with it more or less since it first existed and i still don't get it. i understand enough at an intellectual level to realize it's totally awesome for smart people. but i still can't use it.
06:24.42adamwstinebd: oh. gotcha.
06:24.46bzomcdull: http://gitorious.org/linux-on-qualcomm-s-msm/linux-msm
06:25.01stinebdbasically i tried adding PTT at various places on the navipad layout in the kernel and eventually one of them worked
06:25.12adamwstinebd: looks like I have another fun-filled evening ahead of me!
06:25.23adamwstill, I have a better chance of success at this than the wireless crap.,
06:25.30stinebdwhich was nice because i didn't really feel like doing the haretconsole dance
06:25.30mcdullbzo: I have this git clone already. But I would like to check out an old version of the source (zImage-modules-20091222_210627.tar)
06:25.37makkonenadamw: I call myself smart, and I both know and can FEEL that it's awesome... but most of the time it's just beyond me. I think I started to really understand merging for the first time at 4am last night/this morning. Then I went to sleep and forgot it all.
06:25.38adamwis just planning to dump the gw620 source tree on markinus whenever he shows up, and tell him to fix it
06:25.52adamwmakkonen: ah, one of the famous 'git dreams' :)
06:26.12MrPippyheh i don't really know what the dex address is, but the amss version might be somewhere in smem
06:26.14makkonenbut I did wake up feeling like I should rebase everything before I push it to keep the commit log linear. and I think that's actually true.
06:26.29stinebdi have git dreams too, but i always end up waking up right before git push
06:26.33adamwi seem to remember reading a smart person saying something vaguely like that. somewhere. some time.
06:26.35bzomcdull: just browse the tree in the web site, go to device.c and look at the commits to it
06:26.41randomblamemaybe I'll dig
06:27.02adamwmakkonen: the -msm tree does have some 'buried' commit messages, where you took stuff from upstream and it got the upstream commit date. i noticed.
06:27.04makkonenstinebd: that's so unsatisfying.
06:27.11randomblamethe dex address is the location in memory that arm9 and arm11 use for communication
06:27.49mcdullThe latest change for the usb part would be changing the deviceID: productID to match with HTC Dream.
06:28.01makkonenmcdull: that's been done.
06:28.08makkonenhasn't it?
06:28.53makkonenit's been done unless there's something else that has to be changed and hasn't. It shows up as an HTC Dream and automatically gets drivers in windows now.
06:28.58mcdullmakkonen, yes, its done. but I am not very sure if it is a good idea.
06:29.17MrPippyproc_comm_wince writes dex commands to shared_ram_base+fc100, thats smem
06:29.24makkonenIt's not pretty, but it's useful.
06:29.51randomblameyeah I know it doesn't seem to work
06:30.23bzomakkonen: you were looking at the mic problem before your merge snafu yesterday right? Ever get back to looking at it?
06:30.34randomblameproc_comm.c writes it to rambase + 0
06:30.46randomblamebut that doesn't work either
06:31.13mcdullbzo: I am sorry that I am not familar with the git tree.  Where I can see the old commits?
06:31.23MrPippyyou could use haret and mmutrace smem to see all the accesses
06:31.38randomblameor maybe it does and these dex timeouts are a symptom of another problem
06:31.51adamwstinebd: i note this in your fuze keymap
06:31.52adamwkey 115   VOLUME_UP
06:31.52adamwkey 169   CAMERA # Push to talk
06:31.56randomblamegood idea
06:32.06adamwstinebd: so it didn't turn out to be, oh, the next key after volume_up or anything needlessly sane like that
06:32.37makkonenbzo: 'looking at' is strong. I was asking if anyone had an idea what I should look at. and i never got any farther than that.
06:32.47stinebdadamw: well that's just the userland part. it wasn't generating an input event at all before i added it to the kernel
06:33.06adamwstinebd: oh right. what did it turn out to be in the kernel?
06:33.14adamwstinebd: anything sensible in relation to other keys?
06:33.24bzomcdull: what is the path to device.c?
06:34.27stinebdadamw: in board-htcraphael-navi.c line 121. that driver is laid out very nicely, dividing the navi pad into "rows and columns" and i was able to brute force it to the right location
06:35.04adamwstinebd: yeah, just saw it.
06:35.18mcdullbzo, arch/arm/mach-msm/device.c
06:35.20stinebd(KEY_PHONE used to be KEY_RESERVED)
06:36.18stinebdadamw: at a quick glance, board-htcrhodium-keymap is similar and you might get away with the same thing
06:36.45adamwstinebd: just throw it in under KEY_VOLUMEDOWN ?
06:37.53stinebdadamw: pay attention to the KEYMAP_INDEX(x,y) macro where x and y relate to rhodium_[col|row]_gpios as defined above
06:38.18stinebdthe weird thing is that it already generates an event, though
06:38.42adamwyeah i was wondering about that. it seems different to your case
06:38.53bzomcdull: go to the url I posted earlier, hit tree link, navigate to device .c to view file. Then scroll to bottom and hit the "blob history" link
06:38.55adamwfor both of the keys...it's not that they're not there, they just work exactly like another key...
06:39.40bzomakkonen: so the advice was to do an rpc trace in winmo?
06:40.01mcdullbzo: thanks.
06:40.14stinebdadamw: does normal rhod have the same arrow key issue?
06:40.47adamwstinebd: yes
06:41.50babijoeeuploading now guys :)
06:42.34makkonenMrPippy: I don't know if you have any interest, but in the interim, while no one's got an actual respectable way to get battery data, there's a few lines in htc_battery_smem.c in my tree that makes it report semi-sane data on raph800/diam500.
06:42.44makkonenbzo: yeah. doesn't sound like a lot of fun. :-)
06:43.41MrPippyok thanks, i'll give it a try until i can go back to disassembling battery.dll
06:45.45adamwstinebd: probably a very silly question, but why does KEYMAP_INDEX(0, 2) get used three times?
06:45.53stinebdadamw: hell if i know :(
06:45.56bzomakkonen: yeah, i guess the reason this isn't already fixed is because it is hard :)
06:46.02stinebdi was wondering that too
06:46.20adamwoh good, it's not a really dumb question then. or if it is, at least i'm not the only dumb one :)
06:46.43leobaillardwho uploaded the 4.02.10 build and what does it changes ?
06:47.09adamwleobaillard: babijoee did
06:47.29adamwleobaillard: has my new rhodium keymap plus some change to make things smoother or something
06:47.46leobaillardokay, he didn't change the first post :)
06:47.55stinebdadamw: i'm still trying to figure out how your keyboard works at all :D
06:48.05adamwbabijoee: ooh. i just remembered, the tilt2 keymap in the same directory is actually updated from the version you have in xdandroid atm. nothing major, just adds a couple of convenience keys. you can pull the updated files if you like
06:48.17adamwstinebd: :P
06:48.24mcdullis the keymap modified in rootfs or in the system.sqsh?
06:48.28adamwstinebd: i'm thinking - is KEY_MENU the task switcher?
06:48.40adamwstinebd: because the power key is used as HOME on a short press and task switch on a long press
06:48.46adamwmcdull: rootfs
06:48.48stinebdadamw: at the kernel level, i have no idea where events are being generated
06:48.54adamwmcdull: rootfs, init.etc/keymaps
06:49.03babijoeeleobaillard: uploading now :)
06:49.12leobaillardoh okay
06:49.21stinebdadamw: android home long press = task switcher
06:49.26leobaillardwhat changes did you do babijoee ?
06:49.26stinebdpower = android home
06:49.31adamwstinebd: okay, so that's just an android thing.
06:49.34stinebdyeah
06:49.47adamwsigh. /me = confused
06:49.59adamwi can throw in extra lines for all the other possible KEYMAP_INDEX pairs i guess
06:50.07adamwlord knows what that'd do
06:50.17mcdulladamw, I see. Thanks. I checked the init.  Several paths have hardcoded /sdcard/ which I always had my android put into the android folder, so I got to change the init.
06:50.32babijoeenew apns_xml, smoother scrolling, rhod210 keymap, shootme app
06:50.43leobaillardloves the personas in Firefox 3.6 o/
06:50.52stinebdbabijoee: smoother scrolling = cpufreq change?
06:50.59adamwbabijoee: i could probably send you Telus info for apns_xml if i ever get around to it, if it's not in there yet
06:51.08babijoeeyeah cant remember who told me
06:51.12babijoeebut i added it
06:51.24babijoeei'm using nexus one apns
06:51.29babijoeeit should me most updated
06:51.40stinebdcpufreq was me. does it make any difference for you?
06:51.54babijoeeyeah it does
06:52.08babijoeebut with double the ram it seems the same
06:52.09babijoee:p
06:52.25babijoeebesides battery drain is minimal
06:52.48leobaillardwants ssh tunneling on his Android :(
06:52.48stinebdi'm getting roughly 16 hours lately
06:52.54*** join/#htc-linux playdo (~8801019a@gateway/web/freenode/x-gdypunphrkytcppy)
06:53.14playdomorning guys
06:53.15babijoeeadamw: could i get the names of people who made the tilt2 and rhod210 keymaps?
06:53.24babijoeeneed to give them credit
06:53.36stinebdtilt2 = adamw
06:53.50adamwbabijoee: i did them both. i credited stinebd in my READ_ME for helping me out with some stuff
06:53.58adamwbabijoee: reefermattness tested for me
06:54.14babijoeeawesome
06:54.36babijoeecalibration tool ?
06:54.42stinebdkeymaps were a lot more fun when we didn't have any kcm source :)
06:54.52adamwbabijoee: calibration stuff is phh's i think?
06:54.55babijoeeok
06:55.02adamwstinebd: you can hexedit the .bin can't you? it looks vaguely readable
06:55.05babijoeestinebd: true :p
06:55.08leobaillardand makkonen iirc
06:55.20stinebdadamw: oh god that would be a pain
06:55.28adamwdefinitely easier working from the source though haha :P
06:55.33babijoeecalibration by makkonen?
06:55.54stinebdyeah makkonen
06:55.55leobaillardwell he gave me a diff for the init so I guess
06:55.57babijoeeok
06:56.07stinebdthat calibration program is really nice too
06:56.14leobaillardindeed
06:56.42babijoeeand last but not least the LED effects apk
06:56.49leobaillardunfortunately I won't be able to test the new build quite yet... I'm in a 18h hours mission for phh :p
06:56.51stinebdthat was leob
06:56.55leobaillardno
06:56.57leobaillardchamonix:
06:56.58babijoeehahah
06:56.59stinebdah
06:57.05babijoeeokay
06:57.07stinebdleob made the rootfs hen
06:57.08leobaillardI just added it in the package
06:57.08stinebdthen*
06:57.16leobaillardand the squashfs
06:57.20stinebdyeah
06:57.24stinebdpartial credit
06:57.26stinebd;)
06:57.28playdowhat about calibration for blackstone?
06:57.28leobaillard^^
06:57.35playdostill got some issues with the ts
06:57.37leobaillardI used to build a lot for the 1.6
06:57.38babijoeedoes it not work ?
06:57.40adamwstinebd: so what do you think, should I just throw in all the other theoretical pairs and call them KEY_PHONE and see what happens?
06:58.03playdobabijoee: almost working, but sometimes the touchpoint "jumps"
06:58.12babijoeeah k
06:58.23stinebdadamw: you can try, but i'm weary of the voodoo going on behind the scenes with the keypad and msm gpio drivers. the worst that can happen is you get a lot of PTT keys
06:58.34mcdullyes. any idea of why the tssc not being impletemented in blackstone?
06:58.37adamwstinebd: yeah, as long as it doesn't melt anything i don't care.
06:59.21mcdullaccording to phh, the commit he did does not include blackstone.... no idea...
07:00.06playdoyeah i know, but he said it shouldn't be hard to make calibration for blackstone
07:00.46adamwstinebd: btw, are these docs out of date? the 'ibit GPIOS foo' commands for ignoring GPIOS doesn't seem to work
07:00.57mcdullactually the screen position is quite accurate in blackstone. but it sometimes has some weired reaction when touched.
07:01.02adamweven if i do 'ibit GPIOS 9', the next 'watch GPIOS 10' shows GPIO 9 events just the same
07:01.28MrPippyadamw: are you using the right number? the one in parenthesis?
07:01.31adamwyup
07:01.38bzomcdull: because buttons are part of touchscreen and not accounted for by driver and/or calibration
07:01.40MrPippyhmm maybe don't do caps?
07:01.52playdomcdull: thats what i mean. thought this weird actions could be fixed by calibration
07:02.07leobaillardrah ! my nautilus crashed and I can't kill the parent without closing all the apps... damned you Gnome !
07:02.15adamwMrPippy: nope, still.
07:02.38mcdullplaydo: I don't think they are related.  It may be somehow related to the multi-touch I guess.
07:03.05playdomultitouch? Oo
07:03.54mcdullplaydo, of course we dont have it, the weired action is like jumping of position. So it is just my wild guess.
07:04.58mcdullwe have multitouch driver compiled as well. so it may be a burden as we all have no capacitive screen.
07:05.30playdosounds weird
07:05.40playdobut could be an explanation
07:06.20makkonenphh built the calibration tool, I just debugged and updated it, and did the init script stuff.
07:06.35mcdullplaydo, did you try the "virtual" multitouch for a game emulator for windows mobile?
07:06.52babijoeeNEW BUILD IT UP
07:07.06makkonenand tssc_manager isn't running on blackstone yet because the blackstone keys are part of the touchscreen, and that part hasn't been ported into the tssc_manager code.
07:07.10babijoeehttp://htcandroid.xland.cz/XDANDROID.4.02.10.7z
07:07.11mcdullsome reactions are quite similar.
07:07.19playdomcdull ehm, yeah i think so, but thats some hard resets and rom flashes ago
07:07.53playdoso e.g. when u touch 2 points, it emulates a third?
07:08.14playdobabijoee: what are the changes to the new build?
07:08.41babijoeecheck the first post
07:08.52mcdullplaydo, when touch points , the cursor jump in mid between them and software calculated the second pointer.
07:09.13mcdullbabijoee, can you remove google voice from the system.sqsh?
07:09.31babijoeeits needed
07:09.41babijoeefor people who need it
07:09.44mcdullit was non-function and cant be removed as it was installed in /system/app
07:09.58playdohmm fucking hate it atm, cause when i'm typing blackstone jumps to space every third touch or so
07:10.11babijoeehuh
07:10.16mcdulland prevented the working version to be installed from market.
07:10.16babijoeei remember google voice working
07:10.25babijoeeyou just need to play sound or call someone
07:10.28babijoeethen its functional
07:10.43mcdullthere should be an icon showing google voice, can you see it?
07:11.00playdowooohooo more ram implemented
07:11.04playdo*dance*
07:11.16playdogotta try that
07:11.19mcdullI need todo the mksquash everytime to remove this google voice.
07:11.47makkonenI wonder if that's why I keep getting an 'updates available' message, then nothing when I go to the market.
07:12.04*** join/#htc-linux marcydarcy (~5b298930@gateway/web/freenode/x-hbhyaohpyabdnmwt)
07:12.10makkonenI think I had google voice installed, and there's also a version in the system.sqsh?
07:12.50mcdullmakkonen, yes, it is shown installed, but you have no way to start the application. Say, to send a text message via google voice.
07:13.03makkonenoh, it works fine on my system.
07:13.17makkonenbut I haven't trashed my data.img in a while, so I don't know how it got set up the way it is.
07:13.22*** join/#htc-linux kvaster (~kvaster@109.126.136.82)
07:13.45mcdullmakkonen, which build are you using? where you got it downloaded?
07:13.56mcdullI mean the system.sqsh
07:14.10makkonenxdandroid.02.02
07:14.25makkonenbut gvoice has worked on every xdandroid build for me.
07:14.44makkonenor, at least, the 16th, the 24th/25th, and the most recent one.
07:14.56mcdullyou got the gvoice icon?
07:15.10mcdullor you just call with "+"
07:15.11makkonen(have been using the same data.img on all of them, though, and did install from the market at some point)
07:15.40makkonengvoice icon, toggle gvoice icon, integration where it automatically dials thru gvoice
07:15.57stinebdwho was talking about battery reporting before?
07:16.09babijoeemcdull it work :)
07:16.11mcdullI did try to figure out how to use gvoice and for that particular reason, I learn how to use sqsh.
07:16.25makkonenstinebd: me?
07:16.27babijoeeanyways it doesn't take up much memory
07:16.28mcdullbabijoee, thanks for checking, I will do it again.
07:16.47stinebdmakkonen: was it something that needed testing on other devices?
07:16.49mcdullit is just the problem to prevent it from upgrade / overwritten.
07:17.05*** join/#htc-linux droid001 (~g1@p4FDCA59A.dip.t-dialin.net)
07:17.34makkonenstinebd: you've got flaky but semi-accurate battery status on the fuze, right?
07:17.40stinebdmakkonen: yeah
07:17.49stinebdflaky as in it loves to jump up and down like a six-year-old on caffeine
07:17.55makkonenthen nah, nothing worth testing.
07:18.01stinebdok
07:18.44adamwstinebd: well, that made no damn difference at all.
07:18.45makkonenraph500/800/diam400/500 use a different set of fields for battery data, and the main tree has completely broken reporting for them. I tweaked the values so it's sorta accurate, six-year-old-on-caffeine-ish.
07:19.20stinebdah ok
07:19.20adamwmakkonen: feel like making it work on rhodium for an encore?
07:20.29makkonenadamw: remember when i said I have no idea what I'm doing? I can feel my way through on a device that's sitting in front of me. it's orders of magnitude harder when I've got nothing to get my bearings with as I stumble blindly along.
07:20.37adamwmakkonen: heh, okay.
07:20.40adamwno worries
07:21.30makkonenI took a quick glance, and it looks like the rhodium uses the same values as the gsm diamond/raphael. so I'm not sure where it's falling apart.
07:22.20adamwoh well, it's not that important
07:22.48makkonenhmm. just locked up my phone. wonder what did it this time.
07:22.55MrPippywow so gsm battery status works fine?
07:23.18makkonennot fine. but it works.
07:23.53stinebdit gives you a general idea of where it's at
07:25.48babijoeeadamw: can you confirm the rhod210 kb working?
07:29.21babijoeeanyone confirm it working?
07:33.07adamwbabijoee: in the new build? i'll check
07:33.30babijoeeyeah
07:36.49playdotesting ram fix on blackstone
07:36.52playdobooting
07:41.39*** join/#htc-linux dekar (~dekar@dialbs-088-079-080-042.static.arcor-ip.net)
07:45.05adamwbabijoee: still downloading here...
07:45.19babijoeelol
07:45.20babijoeeok
07:45.55playdoram is at 178mb, confirmed on blackstone
07:53.45babijoeewoah
07:53.52babijoee178mb @.@
07:54.04babijoeehow much ram is on blackstone?
07:54.32makkonen288 I believe, like most of 'em (except gsm diamond)
07:54.40*** join/#htc-linux GlemSom (~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk)
07:54.41babijoeeah k
07:54.49babijoeehavent seen anyone with that much ram :p
07:54.55babijoeelucky you
07:54.57makkonenyeah, it's new today.
07:55.18playdo:-D i'm happy
07:55.22leobaillardno need to remind that makkonen :(
07:55.30makkonenleobaillard: sorry.
07:55.33leobaillard:p
07:55.51playdois there some possibility for implementing a shutdown function?
07:55.53leobaillardI thought I had a great phone, now I'm jealous... :(
07:56.00makkonentime to start seriously considering a rhodium/topaz.
07:56.05babijoeehaha get a nexus leobaillard
07:56.08playdoi thought that too, till i saw touch hd2 :(
07:56.13leobaillarddon't have the money for that...
07:56.28playdo1gb rom, 512mb ram *dreaming*
07:57.00playdoand first capacitive ts with winmo
07:57.02babijoee1 gb ROM?
07:57.08babijoeei think its 512
07:57.10playdohd2
07:57.22playdoin usa it seems to be twice as much
07:57.31babijoeeits 512 playdo
07:57.49playdohttp://www.pmptoday.com/2010/01/24/htc-hd2-coming-to-t-mobile-usa-with-1gb-rom-576mb-ram/
07:57.52babijoeehttp://www.htc.com/www/product/hd2/specification.html
07:58.25babijoeewoah i dont see the point
07:58.27babijoee=/
07:58.49makkonenyeah, i don't get it.
07:58.55playdohttp://www.htc.com/us/products/t-mobile-hd2#tech-specs
07:58.56makkonenwhat do you do with 1gb ROM?
07:59.07playdoinstalling android to it ^^
07:59.27babijoeeplaydo: lol
07:59.34babijoeethat would be aweseom
07:59.35adamwwinmo 6.5 / winmo 7 / android / maemo quad boot? :P
07:59.35makkonenexcept build a kitchen that has all your favorite songs in ROM?
07:59.36stinebdbabijoee: you made the keymaps world-writeable. was that intentional?
07:59.45playdoadamw: this ^^
07:59.50babijoeeyeah
07:59.59makkonenadamw: ok, that sounds pretty cool.
07:59.59adamwthey don't need to be writeable
08:00.02adamwbut it won't break anything
08:00.04babijoeei know
08:00.11babijoeei cbb changing perms
08:00.15adamwheh
08:00.15babijoeei just made it read/write
08:00.23stinebdi hope android is secure
08:00.25stinebdheh
08:00.29makkonenthe image isn't writeable anyway, right?
08:00.34babijoeeyeah
08:00.43babijoeeyou cant write to system.sqsh
08:00.50stinebdit's in rootfs.img
08:00.53stinebdwhich is writeable
08:00.54playd|breakfastyumyum
08:00.55makkonen...is it on system.sqsh or... yeah, that
08:00.57babijoee-.-" right
08:01.13babijoeewell if something happens
08:01.17babijoeei'll change perms :p
08:04.25babijoeeadamw: is it working?
08:04.41stinebdi doubt it's a risk
08:04.51stinebdwe need not issue a CVE about it
08:04.54adamwbabijoee: i can't extract the archive
08:05.00adamwgetting these stupid freaking 'permission denied' errors
08:06.05adamwi really dunno where they come from
08:07.19adamwdon't use 7zip files much, heh
08:07.34*** join/#htc-linux gehzumteufel (~gehzumteu@cpe-76-93-100-70.socal.res.rr.com)
08:07.39gehzumteufelReeferMattness You there?
08:08.13adamwhey gehz
08:08.16gehzumteufelSup
08:08.31makkonenhmm. I seem to be having that same old apns problem with xdandroid.4.02
08:08.33ReeferMattnessactually I just sat down, strange timing gehz
08:08.34gehzumteufelI just came in to see if reefer was around. He needs to change the first post in the new thread
08:08.39gehzumteufelhaha awesome
08:08.44gehzumteufelSo in your first post in the new thread
08:08.49gehzumteufelIt needs a slight change
08:09.15makkonenhaven't confirmed yet, but it's not managing to get a data connection.
08:11.09gehzumteufelWell, I would be happy to test, but I can't stay up tonight
08:11.28*** join/#htc-linux jeremychang_ (~jeremycha@115.81.3.227)
08:11.52babijoeemakkonen: i'm using nexus one apns
08:11.55gehzumteufelAnd I am off. Talk to yalls later
08:12.01babijoeei'll need to merge it with xda one
08:12.08babijoeei forgot to merge them :p
08:12.28*** part/#htc-linux gehzumteufel (~gehzumteu@cpe-76-93-100-70.socal.res.rr.com)
08:12.36makkonenah
08:12.44makkonenso the same problem as back in mid-january.
08:12.55babijoeeyeah
08:13.02babijoeeAPNS are so gay
08:13.05babijoeetoo many
08:13.07stinebdhah
08:13.13makkonenhmm.
08:13.22babijoeei'll merge them later
08:13.24makkonenbooted one more time to play around with apns... and data works.
08:13.28babijoeei'm looking for snes roms :)
08:13.36babijoeelol
08:13.38babijoeeawesome
08:14.00stinebdwhat a coincidence, i think my brother in law has every snes rom ever dumped
08:14.24babijoeehahah
08:14.34babijoeedoes he even own a 1/4 of them?
08:14.52stinebdhe doesn't even own an snes
08:14.59babijoeeroflmao
08:15.08makkonenI used to have all of them. because my friend had all of them, and brought over his hard drive.
08:15.22babijoeeother day i saw EB selling a snes system for $180. more than a ps2
08:15.23makkonenI, however, do still own an snes. and SMW and simcity 2000.
08:15.33makkonenwow. maybe I should sell mine.
08:15.37stinebdi have some pretty rare cartridges
08:15.54stinebdchrono trigger, final fantasy III/VI, earthbound, etc
08:15.57ReeferMattnessI still have my Sega and Sega CD
08:16.02stinebdi have no need for roms :)
08:16.10makkonennice. youtube works with the extra ram.
08:16.19babijoeereally?
08:16.24babijoeewatchable?
08:16.25makkonenthis is totally becoming a usable phone.
08:16.27makkonenyeah.
08:16.36babijoeecool
08:16.40babijoeei'm trying now
08:16.44leobaillardwooocha : [ 7781.708740] Rebooting in 7 seconds..<3>ARM9 has CRASHED >> that doesn't seem good at all :p
08:16.45makkonenI've got the sound turned down, but the video seems fine.
08:16.59leobaillardmakkonen: I hate you :(
08:17.11babijoeeleobaillard: during boot?
08:17.30makkonenleobaillard: uf. bad timing. I feel your pain.
08:18.04leobaillardmy investigation for phh : I was trying to get a hold on what could be this ~18h problem, this was just after a kernel oops and the system restarted
08:18.22babijoeeooo
08:18.26*** join/#htc-linux BabelO (~fcr@unaffiliated/babelo)
08:18.27leobaillardbut the message is scary :p
08:18.38stinebdthe caps make it scary
08:18.46leobaillardif someone want to have a look at it : http://leobaillard.org/partage/gnux/kmsg
08:18.48stinebdreplace it with some ascii hearts and it's a friendly message
08:19.04ReeferMattnessLOL
08:19.10leobaillardthat time it did it before 18h but I think the problem is the same, or at least, related
08:21.26MrPippywow another panic in htc_battery_smem, this one looks like wakelocks though
08:22.39leobaillardI'm gonna update and see if it goes for 18h or so
08:22.49leobaillardand see if the problem is the same
08:24.45*** join/#htc-linux jumoit (~samuel@121.77.87.145)
08:25.59*** join/#htc-linux jeremychang__ (~jeremycha@117.19.71.4)
08:26.40makkonenmrpippy: my panic in htc_battery_smem was fixed by turning off rhodium in the defconfig
08:28.43MrPippyok, i guess i've never built kernels with rhod enabled
08:28.53MrPippywhat a weird bug, maybe i'll look at that
08:29.45adamwi've built+booted a few kernels today obviously with rhodium enabled and they work, so it doesn't break actual rhodiums, heh
08:29.58makkonen:-)
08:30.19makkonenlots of things break these cdma devices. not sure why.
08:30.36adamwis happy to be off frickin' cdma
08:30.52makkonenI love it.
08:31.39makkonenI hate the sound of gsm. "ca--u--er---me now?"
08:31.49makkonenit amazes me that that's the technology that took over the world.
08:32.03leobaillardoh crap... it's not my day, my desktop is making oopses now :/
08:32.09adamwnot noticed any difference in call quality...
08:32.39adamwwell, i'm not actually on gsm. telus' network is all hspa, no gsm at all.
08:33.16makkonenmrpippy: was this your change to fix adb in htc_battery_smem?
08:33.18makkonen-       msm_hsusb_set_vbus_state((source==CHARGER_USB) || (source==CHARGER_AC));
08:33.19makkonen-       if ((source == CHARGER_USB) || (source==CHARGER_AC)) {
08:33.19makkonen+       msm_hsusb_set_vbus_state(source==CHARGER_USB);
08:33.19makkonen+       if (source == CHARGER_USB) {
08:33.40MrPippynot just adb, but usb overall
08:33.48makkonenok
08:34.11makkonenseems like it broke adb for me. possibly I'm just going crazy.
08:34.39makkoneneverything breaks adb for me, though. what I get for using windows.
08:35.25adamwnoticed a usb icon in his notification tray on boots with recent kernels
08:35.32adamwso uh yay and stuff.
08:35.43adamwthough that may just be because I was booting with the PC connected, thinking about it.
08:35.59MrPippyyeah that patch shouldn't break adb, unless maybe your charge_current gpio actually works (mine doesn't), you unplug from an ac charger and plug into a computer and it doesn't realize theres a change
08:36.24MrPippyit's been months since i've seen the usb debugging icon in android, i wonder what happened to it
08:36.34makkonenso strange.
08:36.48makkonenfor a while it was appearing, and I couldn't connect. then it wasn't, and I could...
08:37.36mcdullI am just booting the new build.. hope everything is good.
08:38.16mcdullconfirmed the hack for adb over windows still works.
08:38.18makkonenmrpippy: oh, I'm back to having usb drop during the boot animation. I don't even remember what used to cause that.
08:38.49mcdullare there any file manager for adb that works good?
08:39.02makkonendroid explorer seems alright
08:39.06leobaillarddoes someone else than me has issues with cell tower localisation ?
08:39.18leobaillardI get this message from radio : E/RILC    ( 1176): RIL_onRequestComplete: invalid RIL_Token
08:39.44leobaillardthe towers are found, but it seems it's unable to complete the request or something
08:40.09*** join/#htc-linux alanho (~mcdull@n219076081115.netvigator.com)
08:40.24leobaillardhere's the complete log : http://pastebin.com/d56ccadb6
08:40.59*** join/#htc-linux alanho (~mcdull@n219076081115.netvigator.com)
08:41.31MrPippystinebd: what is the smoother scrolling in latest xdandroid?
08:41.47*** join/#htc-linux mcdull (~mcdull@n219076081115.netvigator.com)
08:42.52*** join/#htc-linux alanho (~mcdull@n219076081115.netvigator.com)
08:43.40*** join/#htc-linux mcdull (~mcdull@n219076081115.netvigator.com)
08:43.44mcdulltest
08:43.56mcdulloh.. finally being able to connect again.
08:45.14mcdullmy blackstone halt in 3 minutes after first boot.
08:45.29adamwhmm. xdandroid extracts fine on a machine running mandriva. i guess fedora's p7zip is broken.
08:45.54playdomcdull: whats the problem?
08:46.00playdophone just freezes?
08:46.21mcdullplaydo, as usual all bottons / screen got no response.
08:46.23makkonensweet. adb working, got logcat spewing like crazy... life is good.
08:46.27makkonenand as I type that...
08:46.36makkonenSystemServer( 1213): Battery Service
08:46.38mcdullplaydo,  but I can still connect it to adb.
08:46.45makkonenand adb dies. weird.
08:46.50makkonenusb dies, in fact.
08:47.03*** join/#htc-linux zachy (~george@ip-85-160-13-178.eurotel.cz)
08:47.09playdomcdull: weird, mine was running fine
08:47.25playdomcdull: i boot again
08:47.38adamwheh, .tar.lzma beats .7z by...9kB. go lzma!
08:47.44mcdullplaydo, it happens randomly. sometimes I can have it on for more than 2 days.
08:47.49*** join/#htc-linux MrPippy (~pip@adsl-75-33-10-219.dsl.sndg02.sbcglobal.net)
08:48.04mcdullsometimes it just stopped working in few minutes.
08:48.27playdomcdull: sounds weird. i just got the problem with the hibernation
08:48.41mcdullwhat problem?
08:48.45playdobut didn't try running android longer than a few minutes
08:48.56*** join/#htc-linux Olipro_ (~Olipro@uncyclopedia/olipro)
08:49.10leobaillardmakkonen: I take back what I said, I can watch youtube videos too !, the video quality is real shit, but the audio's great and the video is fluid
08:49.20playdomcdull: when i set the phone to sleep and will power on again, is jumps back to sleep after 1 second displaying the screen
08:49.36makkonensounds about like it is here.
08:49.50playdoor it even doesn't respond to wake up button
08:49.53mcdullplaydo, so you never have the phone freezing?
08:49.53leobaillardso nothing about the new mem bank ;)
08:49.59leobaillardI'm releved
08:50.11makkonenglad I can avoid the hate -- until I mention something else about RAM :-)
08:50.16leobaillard^^
08:50.18playdomcdull: no, til now the phone didn't freeze after a few minutes
08:50.49playdobut it didn't wake up any more from sleep several times with older builds
08:50.56mcdullplaydo, it randomly happens.
08:51.20mcdullplaydo, it is actually the same issue.  when you feel the machine not waking, and the machine start a bit warm, that's it.
08:51.22playdono idea where it comes from? app usin or so?
08:51.32playdoah ok
08:51.49playdojust boots android
08:51.50mcdullthe adb logcat can tells alot. but I have no idea of what it means.
08:52.31mcdullplaydo, if I boots with usb on, the phone freeze alot.
08:52.35playdodont have adb here. can i connect to windows xp somehow?
08:52.41mcdullyes.
08:52.51playdoyou mean with plugged in usb?
08:52.54*** join/#htc-linux jeremychang__ (~jeremycha@115.80.21.30)
08:52.56playdoi try that
08:53.02adamwcan you make the usb connection do tethering? that would be sweet.
08:53.06mcdullyes. connect to windows before haret.
08:53.23playdogod dammit >.< say that 5 seconds earlie xD
08:53.26playdo+r
08:53.37playdogonna reboot ^^
08:53.40mcdullplaydo, not that simple...
08:53.46mcdullyou need to add a line to your conf
08:54.04playdowhat should i do? connect with windows via active sync or tethering?
08:54.28mcdullecho 2 > /sys/devices/platform/msm_hsusb/usb_function_switch
08:54.46mcdullactivesync..
08:54.53mcdullit actually doesn;'t matter.
08:54.57playdok
08:55.12playdohow do i add this line? which config?
08:55.14mcdullput the line into your conf in the custom command section.
08:55.29playdo?
08:55.35playdodont get it, sry ^^
08:55.41mcdulleclair.user.conf
08:55.50mcdulledit this file in your conf folder
08:55.55mcdullat the last part.
08:55.58playdok wait, rebooting winmo
08:56.56mcdullshit.. my phone freeze again. may because of sleep while some background job is running that break the use input interface.
08:57.36playdohow can i set, that phone sleeps after a few minutes?
08:57.49playdoand not instantly after a few secs
08:57.58mcdullit is default in 1 minutes
08:58.02mcdullin setting.
08:58.53*** join/#htc-linux GeertJohan (~Squarc@82-217-32-29.cable.quicknet.nl)
08:59.26playdochanged it to 10min but didn't work last time
08:59.52playdowhere do i have to add the line?
09:00.02mcdulleclair.user.conf
09:00.08mcdullcan you find this file?
09:00.12mcdullunder conf folder
09:00.22mcdulland the last part
09:00.35playdoi have opened the file
09:00.54playdohmm better change it from notepad. on the phone there too much confusion
09:01.11mcdullthere is a custom_shells section
09:01.31playdoyeah saw it, but there are too many sign on that small screen ^^
09:01.31mcdulljust add the line there. HOWEVER.
09:01.57mcdullthis line may break the adb under linux. so.. choose the os you want.
09:03.30playdook i added the line
09:03.34playdonow starting haret?
09:03.53playdowhile plugged to usb and synced with windows
09:04.16mcdullyes.
09:04.22mcdullin activesync mode..
09:04.37mcdullcoz in storage mode you wont be able to start haret.
09:04.55mcdullbabijoee, are you there?
09:05.07babijoeeyes
09:05.15*** join/#htc-linux Markinus (~Miranda@gtng-4db04e69.pool.mediaWays.net)
09:05.20mcdullI confirmed Google Voice is not working on my machine...
09:05.21playdobooting
09:05.21babijoeeMarkinus: ping
09:05.28babijoeehmmm
09:05.32babijoeeah well :p
09:05.35Markinusbabijoee: pong
09:05.36babijoeeit works for me
09:05.37playdonew hardware found ^^
09:05.46babijoeeyou have some files for me?
09:05.48mcdullif you use old data.img, then it should be fine.
09:06.09mcdullI just use your new package with my startup only.
09:06.19babijoeehmmm
09:06.19mcdulland I see no google voice icon. only GTalk icon
09:06.21Markinusbabijoee: We need some modifications in the systemfiles, I wrote you a PC in XDA, did you read this?
09:06.27babijoeeyes
09:06.27playdomcdull: my pc doesnt connect cause of admin rights. but that should simulate ur situation too, or not?
09:06.29MarkinusPM
09:06.34babijoeei need the actual driver
09:06.45Markinusokay, Moment, I give you this . .
09:07.03babijoeei'll add it in next release as i just released a new build earlier
09:08.12adamwMarkinus: heya
09:08.21leobaillardbabijoee: you can update it
09:08.22adamwMarkinus: the wireless doesn't work with the stuff you left for me
09:08.32adamwMarkinus: however, i did find quite a bunch of new possibilities
09:08.41Markinusadamw: could you load the driver? Eny errors in dmesg?
09:09.01babijoeeleobaillard: i dont want to atm :p
09:09.06babijoeestill looking for games
09:09.10adamwMarkinus: it's exactly the same as without the firmware
09:09.24adamwMarkinus: what I found is that lg gw620 uses bcm4325, and has a complete system and code dump available
09:09.38adamwMarkinus: so if you have a look at that you may be able to get something going...i tried to build that driver but couldn't manage it yet
09:09.43adamwMarkinus: let me dig out the links for you
09:10.33mcdullbabijoee, did you start a new data.img with your new build?
09:10.38adamw03-02-2010 20:26:37 > adamw: the source code for teh LG GW620, which has the bcm4325 that's in rhodium (and a couple other htc models), is at http://depositfiles.com/files/zibqndg0g
09:10.38adamw03-02-2010 20:26:53 > adamw: the system files for the GW620 are at http://depositfiles.com/en/files/uygt3aqx0
09:10.38adamw03-02-2010 20:27:30 > adamw: the system files contain etc/wl/nvram.txt , etc/wl/rtecdc.bin , etc/wl/rtecdc-mfgtest.bin and bin/BCM4325D0_004.001.007.0168.0169.hcd (I have no idea what that is)
09:10.42adamwMarkinus: ^^^^
09:10.53babijoeemcdull: i always do
09:11.10Markinusbabijoee: http://www.multiupload.com/9JLRK2I6V7
09:11.20adamwMarkinus: there's an nvram.txt and a firmware (rtecdc.bin) in the system image, as i said. I don't know what the BCM4325D0_004.001.007.0168.0169.hcd file is for at all
09:11.33mcdullthat's weired... for most of the pass version, gvoice not working... I need to extract the gvoice out and reinstall from market.
09:12.12Markinusadamw: the files from we are from a LG  ..
09:12.21mcdullplaydo, did you phone die after it sleep with the usb connected?
09:12.27adamwbabijoee: tilt2 keymap is fine in current xdandroid btw, i'll try rhod210 in a minute
09:12.29playdowait i try
09:12.35Markinusthat in the package, I renamed this . .
09:12.40adamwMarkinus: oh, the ones you left for me this morning were from an lg? didn't know
09:12.41playdowith market running in the back
09:12.49Markinusadamw: yes
09:12.50adamwMarkinus: did you have the driver source though? that may help
09:13.03adamwit seems like an older version of bcm4329, but with a lot of differences...
09:13.13mcdullplaydo, it could be caused by my SD Card.. I have lots of photo in my card. It will index the photo and take a lot of time.
09:13.23adamwbut yeah, loading the bcm4329 driver with those files behaves exactly like loading it with the other files, or with no files
09:13.26playdomcdull: shall i try directly to go back from sleep?
09:13.40adamw10 second wait, then the 'sdio init failed' (or whatever it is) error
09:14.02mcdullplaydo, you just leave your machine and let it shut off itself.. and wait 2 more minutes to try to bring it up,
09:14.33playdomcdull: ok, switching back to 1min to hibernation and first installing andchat ^^
09:15.22Markinusadamw: Hmm,. maybe is there a vreg for the chip what we have to activate .. .
09:15.32playdois waiting zzzZZzzZZZ
09:15.47mcdullplaydo, did you do the most important part in winmo?
09:15.57babijoeemcdull: try calling out
09:16.04babijoeeand then see if it works
09:16.11mcdullplaydo, I mean , to disable ALL power management.
09:16.19adamwMarkinus: I noticed in bcm4329 the id for the chip is set to 0x000, but someone (i think phh or mrpippy) told me that was normal
09:16.34mcdullbabijoee, gvoice should have its own application icon.. but I can never find it.
09:16.44babijoeeapplication icon?
09:16.57playdomcdull: which power management? auto screen light?
09:17.02mcdullyes.. Say "Google Voice" , white in color
09:17.15playdoor sleep modes too?
09:17.24mcdullplaydo, yes, the sleep mode..
09:17.34mcdullplaydo, 1 minutes to sleep .. etc
09:17.44playdodammit, no
09:17.45babijoeegoogle voice = voice search?
09:17.50mcdullplaydo, you have to disable ALL of them.
09:17.57mcdullbabijoee, of course NOT.
09:17.58playdo*_____*
09:18.01adamwMarkinus: the nvram.txt in the gw620 dump is definitely different from the one you sent me, btw
09:18.03adamwMarkinus: i did check
09:18.07babijoeehmmm
09:18.07*** join/#htc-linux fleixius (~fleixius@unaffiliated/fleixius)
09:18.09adamwneither seesm to work, though. heh
09:18.10*** join/#htc-linux jeremychang__ (~jeremycha@115.80.9.220)
09:18.12babijoeewat do i use to check its working
09:18.14playdowhy do i have to disable it mcdull?
09:18.15mcdullplaydo, or your android will NEVER goes into deep sleep
09:18.35playdobut it does Oo
09:19.03mcdullbabijoee, no idea.. it simiply not working.. coz when you start the application, it let you choose the dialer to use.
09:19.15playdohmm just got back from sleep now with power button (not end call button)
09:19.18babijoeewhat application/
09:19.19babijoee?
09:19.28mcdullbabijoee, Google Voice App
09:19.41babijoeei dont see the program at all
09:19.50mcdullbabijoee, that is the problem.
09:20.12babijoeehmmm
09:20.17babijoeeits not even on my nexus
09:20.18mcdullbabijoee, just remove it would be fine. This program can be easily find in market and it works fine after install
09:20.24babijoeei'll dl it now and see what it does
09:20.29babijoeeooo
09:20.33babijoeethen just install it :p
09:20.40adamwbabijoee: rhod210 seems fine too
09:20.50babijoeeadamw: awesome
09:20.50mcdullwhen you have it in system... market wont let you install
09:20.57fleixiusbah laptop battery is about to die
09:20.58fleixiusnot fun
09:21.02babijoeemcdull: duly noted
09:21.08babijoeeif i cant get it working
09:21.11ReeferMattnessaye adam, tested that one earlier on a friend phone, he had just left, and I came back to report just that  :)
09:21.15babijoeei'll remove in next build and place in others folder
09:21.19playdomcdull: what program do u mean? google voice?
09:21.24mcdullbabijoee, thx.. coz I need it for free SMS.
09:21.29babijoeeLOL
09:21.33mcdullplaydo, yes.. google voice..
09:21.38*** join/#htc-linux kvaster (~kvaster@86.57.250.146)
09:22.28playdomcdull what does it do? i have google voice installed. should i replace it with the one from market?
09:22.29adamwheh. i like stupid dumb keymap tricks
09:22.33fleixiuslol you dont get free sms?
09:22.33playdofor testing?
09:22.35mcdullbabijoee, my though is that, if the software is available from market, it should not be put in system. Coz it will prevent it from unload or update.
09:22.37fleixiusOh man thats lame
09:22.42adamwi mapped the one of the useless keys on the rhodium keyboard to ctrl-c
09:22.42adamw:P
09:22.48babijoeemcdull: must be old version
09:22.55babijoeei'll see if an updated version is detected
09:22.57adamwAHAHAH FEEL MY WRATH, ONGOING CONSOLE PROCESSES
09:23.06mcdullbabijoee, no, the version is the same .. 0.3
09:23.09fleixiusadamw, ha I'd have to do that - also map a tab key.
09:23.11babijoeeah k
09:23.16babijoeei'll remove it :)
09:23.29adamwflex: i'm not sure it's possible, there needs to be an ascii code for whatever you want to map
09:23.32mcdullbabijoee, and I just used your apk to install back after removal.
09:23.43adamwflex: if there's an ascii code for tab you can stick that in the .kcm and it should work
09:23.45stinebdtab has an ascii code
09:23.49adamwthen you can do it
09:23.57stinebd0x09 or something
09:24.07adamwhmm, i think i put that in somewhere
09:24.16*** join/#htc-linux Olipro_ (~Olipro@uncyclopedia/olipro)
09:24.24fleixiusadamw, Ahh excellent - which kcm file?
09:24.28mcdullbabijoee, would you care to update the astro explorer as well? it expired... of course we can replace it by our own.
09:24.38adamwfleixius: well, whichever one you're using. i thought you were doing your own keymapping?
09:24.52adamwstinebd: oh yeah I did. the good news - it 'works'. the bad news - android's shell apparently has no tab completion. heh.
09:25.06babijoeehmmm i'll try to find one that doesn't have an expire
09:25.19fleixiusadamw, Oh I didnt realize you could place them directly in that file.  I figured the keyboard had a separate map file outside o the hard buttons.
09:26.11mcdullbabijoee, thx. I guess I will do some editing tonight on the rootfs, to enable me to put everything into "android" folder.  It is partially implemented in the init, but not complete.
09:26.29adamwfleixius: well it sorta depends. there are two drivers, for most hardware, yeah. some 'hard buttons' are really part of the keyboard though. what's your hardware again?
09:26.38babijoeemcdull: why would you want to do that?
09:26.42adamwfleixius: you probably want the microp-keypad file for whatever it is you're playing with
09:26.43fleixiusadamw, rap100 fuze
09:26.43stinebdhe has a raph110
09:26.54fleixiusbah 110 *
09:27.38fleixiusI'll brb I have to get my charger.
09:28.08babijoeeanyways i'm out.
09:28.13babijoeecya guys
09:28.18stinebdfleixius: if you're going to change the character map, i suggest you base it off of my original: http://maduin.southcape.org/~bryan/android/fuze.kcm
09:28.37playdomcdull: cant emulatu ur problem atm
09:28.49adamwfleixius: then you want the fuze microp-keypad file, yeah.
09:29.02adamwstinebd: do the ctrl-c hack, you know you want to :P and map | as well. heh
09:29.02playdomcdull what doesnt work with google voice?
09:29.11adamwdamnit. we don't have iptables in this kernel?
09:29.12mcdullplaydo, everything.
09:29.38mcdullplaydo, if you cant go into deep sleep.. there will be no problem.. so you got to disable every power management in winmo first.
09:29.46stinebdadamw: i don't plan to support any keys that aren't drawn on the actual keyboard
09:29.52stinebdit confuses users
09:30.02adamwstinebd: just don't tell 'em!
09:30.02playdohow do i see that it isnt deep sleep? mcdull
09:30.30adamwoh, it's a module. sigh.
09:30.33mcdullplaydo, if you can wake the machine with home button.
09:30.34adamwtoo late, i'll do this tomorrow.
09:30.40fleixiusstinebd, yeah I agree it would confuse people - but us power users need functionality.
09:30.46mcdullplaydo, then it wont be deep sleeping.
09:30.51adamwMarkinus: if you have any more wireless ideas for me to test overnight, leave a message and i'll give it a shot in the morning
09:31.04playdomcdull: then it is in deep sleep if i can only wake with power button?
09:31.09stinebdfleixius: that's why i provide the source. you're free to change your system however you like
09:31.11fleixiusI'd really like to see a tab key as I always use SSH and other tools where tab completion would work wonders.
09:31.22fleixiusstinebd, thanks for your map
09:31.35mcdullplaydo, not vice versa.. but more likely.
09:32.00adamwfleixius: does whatever app you're using actually do tab completion? the terminal i'm using doesn't, it seems.
09:32.05playdomcdull: i can start google voice
09:32.15stinebdtab is pretty easy to implement, i suggest setting it to fn+space
09:32.16playdobut im not activated for it
09:32.22fleixiusadamw, I'm not sure - Ive never had the ability to test.
09:32.24mcdullplaydo, did you use old data.img
09:32.25mcdull?
09:32.39playdono, took the build from today this morning
09:32.42stinebdactually it's probably already set to that
09:32.44playdofew hours ago
09:32.49adamwstinebd: yeah i think it's in your map
09:33.08fleixiusstinebd, I was going to map it to the windows key
09:33.10mcdullplaydo, I mean your data file.. a fresh data store or with your old settings and program?
09:33.28playdophew
09:33.33playdocould be old
09:33.42fleixiusI'm afraid to turn wifi on
09:33.51mcdullplaydo, that's the reason that you can start.
09:33.53playdow00t Oo got 10 programs running
09:33.54fleixiusLast time I couldnt turn it off without my device locking up
09:33.57playdowhat the hell
09:33.57fleixius:(
09:34.31mcdullplaydo, anyway, babijoee agreed to take it out.. I won't have to do it myself..
09:34.31playdohow do i create new data storage? cant format my card here mcdull
09:34.38mcdulldelete data.img.
09:34.43playdoalright, k
09:34.49mcdulland you will LOST ALL settings and program
09:34.54playdoshall i try ?
09:35.02mcdullyou should.
09:35.19playdoi deleted everything from my card before copying the new build
09:35.27playdoso it should be new storage or not?
09:35.55mcdullin that case , yes... but if you see old settings, like the google account is still there, the adata.img is not removed.
09:36.05playdono, wasnt there
09:36.31mcdullso you need to setup the google account again? in that case, yes, it is new.
09:36.41playdoand i can wake from sleep with home button. so youre right mcdull
09:36.41mcdulland you can still start google voice?
09:36.46playdoyep
09:36.55playdoinstalled version 0.3 from market
09:36.55mcdullyou got the google voice icon?
09:37.15mcdullmarket should not allow you to install.
09:37.21playdoyep "voice" with the white bubble icon
09:37.31playdowhat? i installed it from there Oo
09:38.02mcdullumm.. let me try again now
09:38.25playdok, i will star winmo an shut off the power settings
09:38.35mcdullmy experience is that the market says "Google Voice" was installed but disabled the option for uninstall.
09:38.43fleixiusplaydo, Is it recommended to disable all power management from wm?
09:39.16mcdullfleixius, not recommended but you should have done so for power management in android to work.. at least for blackstone
09:39.16playdomarket said "this version will replace google voice on ypur phone with version 0.3" or so
09:40.01mcdullplaydo, no .. cant be.. unless you was using my custom build.
09:40.16fleixiusmcdull, Define it working on android...it appears to be working and I havnet done anything to wm
09:40.19mcdullplaydo, which is downloadable in blackstone forum.
09:41.11mcdullfleixius, in blackstone, you would never goes into deep sleep if you do not disable all of them. and can you test if you can adjust the screen brightness in android?
09:42.02fleixiusmcdull, Yep brightness can be adjusted properly
09:42.48mcdullfleixius, if that is the case, it might be board specific.. you are not using blackstone, right?
09:43.03stinebdyou don't need to do that stuff for raph100/110
09:43.27playdomcdull: i downloaded the version from babijoee's thread at xda-devs
09:43.55fleixiusmcdull, Nope Im not...Im just making sure I get the most potential out of my fuze.  I do need to compile a new kernel to enable more ram.
09:43.56playdomcdull: is that what u mean? and how should i make power settings?
09:44.36mcdullplaydo, anyway.. I have tried many times with different build.  The markets refused to update.
09:45.19mcdullplaydo, for blackstone user, you need to turn off ALL power management, and auto lighting (<-- for this one, I actually tried and had no effect at all, but it was recommended by others)
09:45.33*** join/#htc-linux jumoit (~samuel@121.77.87.145)
09:45.34playdomcdull like i said, i use this one (http://htcandroid.xland.cz/XDANDROID.4.02.10.7z) at the moment and i downloaded it from market
09:45.40fleixiusI think everything works as it should other than GPS / Camera.
09:45.57stinebdand BT
09:46.06fleixiusstinebd, yeah well I dont use BT any who.
09:46.41mcdullplaydo, are you sure you started a fresh installation? coz I have just tried again couple minutes ago.
09:47.11mcdullfleixius, light sensor not working >.<
09:47.20mcdullI don't know why it was removed.
09:47.39fleixiusmcdull Yeah thats probably the best feature to conserve battery power
09:47.48playdomcdull: yes, is just "delet" all data on my card and i had to reenter my google account. but i didnt format my card
09:48.13playdomcdull: i'm now waiting for deep sleep
09:48.41mcdullplaydo, remove your usb cable .. it prevents the blackston from sleep
09:49.13fleixiusAhh sweet so far 15% battery life used over the course of 15 minutes
09:49.20*** join/#htc-linux jumoit (~samuel@121.77.87.145)
09:49.32mcdullfleixius, also, the software mic does not works completely.. some program does not record sound from it.
09:49.58fleixiusmcdull, I rarely use the mic - I havent found a good reason for it at least.  I guess I should be more hands free ;-P
09:50.17playdomcdull: thought i should test it with usb cable ^^
09:50.21mcdullIts bad that I am in GMT +8.. cannot sync with other developer.
09:50.36mcdullplaydo, then the machine will not sleep.
09:50.52mcdullfleixius, you will love the new voice keyboard.
09:50.55playdook, waiting again for sleep
09:51.51fleixiusmcdull, Ha Im sure I would but I can never get around to actually using the voice options ina ndroid.
09:52.10fleixiusIm always in a place where I cant speak freely and my best option is to just type it out my self
09:52.36*** join/#htc-linux Olipro_ (~Olipro@uncyclopedia/olipro)
09:52.44mcdullfleixius, ha.. sometiems voice search is very useful as well.
09:52.53fleixiusIm just waiting for a visual voice mail app that works with att
09:53.09fleixiusWithout requiring me to redirect/forward my calls.
09:53.19adamwMarkinus: oh, yeah, I almost forgot - stinebd and I thought about the two key pairs on the rhodium (the ptt button and the e key, and the up arrow and left arrow) but couldn't figure anything out
09:53.38adamwMarkinus: I had a look with haretconsole at the GPIOs but it seems like *every* keypress gives the same GPIO
09:53.54stinebdi don't consider what i did as thought - it was mostly mindless rambling
09:54.04adamwMarkinus: and we couldn't really figure out exactly how board-htcrhodium-keypad.c works
09:54.08fleixiusIm just waiting for the battery fix mcdull - thats all I really care about.  I'd like to know how much time left i have.
09:54.12adamwstinebd: that's my favourite kind of thought!
09:54.28*** join/#htc-linux cairnz (mats@217-14-7-9-dhcp-osl.bbse.no)
09:54.39adamwMarkinus: like, why keymap index 0,2 is used three times, fr'instance
09:54.39playdomcdull: i think i'm in deep sleep. cant wake with soft buttons
09:54.46Markinusadamw: the keypad file is only for the keypad ..
09:54.58Markinususe the GPIOS to build a matrix . .
09:55.07playdomcdull: waking with power button is possible
09:55.25Markinusyou have very time a combination of some gpios when you press a keypad key
09:55.40adamwMarkinus: as far as haretconsole could see, every key gives the same gpio
09:55.54*** join/#htc-linux marcydarcy (~5b2989b8@gateway/web/freenode/x-rhyrhzfjaeqcrbqc)
09:56.05adamwthey all seem to be mem GPIOS(6) 92e00c20=07b45006 (00000800) then mem GPIOS(6) 92e00c20=07b45806 (00000800)
09:56.10adamwno matter what key you press
09:56.30playdomcdull: google voice has disappeared Oo
09:56.41Markinusno:) you send me a log with the unmapped keys, and there wware 3.1, 0.1, 1.0 .. etc.
09:56.42*** join/#htc-linux MrPippy (~pip@adsl-75-33-10-219.dsl.sndg02.sbcglobal.net)
09:56.47Markinusthis are diffrerent GPIOS
09:57.09adamwMarkinus: well, that's what haretconsole saw. anyway, remember, the unmapped keys weren't the ones we thought
09:57.27adamwMarkinus: it's not the ptt button or the up/left arrows that cause the 'unmapped key' messages
09:57.34mcdullplaydo, may be you remembered the old days.
09:58.02mcdullplaydo, coz I have tried it for a long long time and for this reason I build my own system.sqsh
09:58.10Markinusif this wouls be one, you had on every key the same function. . . maybe this is both. A GPIO for every key as event and the other GPIOS to differ which . .
09:58.25adamwMarkinus: yeah it seems odd to me too but i really can't see any other gpio in haretconsole
09:58.36playdomcdull: thats crazy, market says google voice is installed, but i cant open it
09:58.37adamwmaybe it's the problem the haretconsole docs mention with very very short gpios?
09:58.43adamwoh well, i'll try again tomorrow maybe
09:58.46adamwjust wanted to mention it
09:58.50playdomcdull: so ure right in the end, something doesnt work
09:59.01mcdullplaydo, that is not crazy... that is what I tested for the past month..
09:59.23Markinusadamw: you can di a wirq and joinlist GPIOS, then you see the short one too
09:59.24playdobut why could i intall it, open it and after reset it is gone?
09:59.35mcdullplaydo, it will goes right.. after the googlevoice being removed.. or you can do it by yourself.
09:59.40Markinusread about this in the docu . .
09:59.55adamwMarkinus: i saw the wirq thing but didn't see anything about joinlist
10:00.06adamwMarkinus: also I couldn't get the ibit thing for filtering results to work, so wirq is way too noisy
10:00.26leobaillardhey folks, I'm exploring the data.img databases and I see that the provider for the market is set to T-Mobile, do you think this have any implication on the market behavior or available apps ?
10:00.29mcdullplaydo, no idea.. I have tried many times and cannot get it to work until I remove it. And I guess you didnt actually try to use it.
10:00.48Markinusadamw: http://www.handhelds.org/moin/moin.cgi/HaRET_20Documentation
10:00.59playdomcdull: no because i have no working account
10:01.00adamwMarkinus: yup that's where I am
10:01.15Markinussearch: High frequency polling
10:01.18adamwMarkinus: oh, just saw it - way down below the other gpio bit. sigh
10:01.32mcdullyou want one?
10:01.45*** join/#htc-linux lkcl (~lkcl@nat65.mia.three.co.uk)
10:01.49adamwMarkinus: okay, i'll see if i can get anything out of that tomorrow
10:02.01Markinusok
10:02.11adamwMarkinus: off to bed now - like i said, leave a message if you have anything else for me to test. thanks again
10:02.13cairnzwhat could be causes for haret refusing to run?
10:02.41Markinusadamw: ok, gn!
10:02.44adamwnight all
10:02.47cairnzmy raphael says "cannot open file haret. either not signed with a cleared certificate, or one of the components doesn't exist. install this file again or restore it if problems persist" (loosely translated)
10:02.49*** join/#htc-linux rzk_ (~rzk@daemonet.ru)
10:02.59cairnzthing is i ran it like 20 minutes ago and it was no problem
10:03.13Markinuscairnz: did you export you sd card over usb?? :)
10:03.24cairnzi have a m2 card in the raphael
10:03.30cairnzand just copied it over through usb cable
10:03.39cairnz(it did work a couple of boots ago)
10:04.06Markinusdou you see the sd card in explorer?
10:04.10cairnzyes
10:04.32Markinushmm, maybe filesystem wrong . .
10:04.32cairnzi see the phone, and inside phone is \ and \storage card
10:05.16cairnzit's fat32, and like i said, it did run it (and launch that eclair androind thing) - then i was going to reboot to show it off to some dude here and then haret.exe didn't want to run
10:05.47cairnzjust removed battery to see if "such a boot" would help :p
10:06.09mcdullcairnz, check if you got activesync.exe running and eat all your cpu.. if so.. kills it.
10:06.34mcdullcairnz, I mean in your handset.. not the PC
10:06.38playdomcdull: i have no need for google talk :( just wanted to help
10:06.51cairnzmcdull - i just booted the phone now, it's not connected
10:06.57mcdullplaydo, that's okay.. The problem is sorted out anyway.
10:07.29mcdullcairnz, sometimes the activesync process goes wrong and prevent all other process to run.. that's real bad.
10:07.56mcdulloff working... see you guys.
10:08.08cairnzthere should be nothing running on it now - hmm
10:10.51fleixiusWhat browser do you guys recommend thus far?
10:12.31leobaillardthe T-Mobile stuff may impact MMS among other things ! look what I've found : http://www.google.com/oha/rdf/ua-profile-kila.xml
10:12.42leobaillardthis is in a settings databse of android
10:22.37fleixiusoh bad my batter is getting raped.
10:22.46fleixiusbah*
10:27.04cairnzMarkinus: i removed the sd card, and did a factory reset on phone, now it boots again
10:27.24Markinuscairnz: ohhh
10:31.36leobaillardcrosses his fingers and hope not to have broken it all :
10:34.01sektorNBAmorning
10:42.05*** part/#htc-linux marcydarcy (~5b2989b8@gateway/web/freenode/x-rhyrhzfjaeqcrbqc)
10:42.19*** join/#htc-linux marcydarcy (~5b2989b8@gateway/web/freenode/x-kmzuapvtaibjxqkl)
11:12.23*** join/#htc-linux kiozen (~oeichler@p549210A0.dip0.t-ipconnect.de)
11:33.24IceBonephh, here?
11:34.32*** join/#htc-linux MethoS- (~clemens@134.102.106.250)
11:50.56playdore
11:51.11playdowhere stands the development of the camere atm?
11:54.56leobaillardw00t ! I just had a porn ad in an android application !! :O
11:55.56playdow00t xD
11:56.09playdowas it the popup with the videos?
11:57.12leobaillardnope, a text at the bottom saying "Click here for free amateur sex videos"
11:57.30playdonice one ^^
11:57.40playdopr0ndroid
11:58.24leobaillardand before you guys ask, no I didn't click
11:58.49playdosure
11:58.52playdorolleyes
12:00.12leobaillardgreat ! my cell location now works after I deleted my data.img
12:00.16leobaillardweird...
12:00.33leobaillardwaow, quite accurate :)
12:00.43playdosame here with google voice ^^ but vice verca
12:00.59playdogoogle voice worked --> restart --> doesnt wark
12:01.01playdo-a +o
12:01.12playdois cell location an app?
12:02.14leobaillardnope
12:02.52leobaillardit's a feature, and it's not even named like that
12:02.58leobaillardbut I can't remember the name
12:03.16playdoah now i know what u mean. is diabled it
12:03.17leobaillardit gives you your approximate location by triangulating from cell tower positions
12:03.23leobaillardoh...
12:03.26playdowhere can i look if it works?
12:03.37leobaillardgoogle maps
12:03.42playdoits the one you can disable at the first boot or not?
12:03.47leobaillardyes
12:03.57playdok, got the same on winmo for weather
12:04.44IceBoneGeolocation.
12:05.25leobaillardthanks IceBone, my mind saviour :)
12:05.33playdo^^
12:05.46IceBoneI'm leaving it on since GPS isn't working and it's quite good as it is for certain stuff (not navigation, of course).
12:06.04playdoe. g. if u get lost? :-D
12:06.22IceBoneNah, flickr has an option to look for pics "near you".
12:06.24IceBoneEtc.
12:07.37playdoyep, that works on winmo too, but with gps i think
12:08.24IceBoneIs there a footprints ap?
12:08.45IceBoneOr is that Sense UI only?
12:13.21playdofootprint app i think
12:13.25playdowait i look icebone
12:13.30IceBoneCan't find it in the market.
12:13.33IceBoneOnly 8 footprints.
12:13.35IceBoneWhatever that is.
12:13.55IceBoneWow, the new build is really fast!
12:13.58playdoaqh you mean for android?
12:14.08IceBoneYush.
12:14.44playdogot footprint on winmo with sense
12:15.03*** join/#htc-linux mcdull (~mcdull@110.4.31.114)
12:15.18IceBoneYeah, figures.
12:15.32playdonothing similar for droid?
12:16.28IceBoneI guess it is that 8 footprints thing.
12:16.51playdoyep googled it. seems to be
12:17.26playdoargh
12:17.34playdowants to go home
12:27.53IceBoneWow, that was weird...
12:28.04IceBoneI just got a warning on android that the battery is at only 63%.
12:28.36playdotake caution, it will explode at 100%
12:34.50leobaillardah it feels great to have a fresh data.img and everything that is supposed to work, actually works :)
12:35.28*** join/#htc-linux zycho1000 (~zycho___@f048051050.adsl.alicedsl.de)
12:35.39IceBoneHmm... when android becomes flashable, will we need a haret for winmo?
12:36.22playdoroflmao
12:36.30playdosaved my day icebone :D
12:36.42*** join/#htc-linux cairnz (mats@217-14-7-9-dhcp-osl.bbse.no)
12:36.43IceBoneI still need winmo as a backup, damn it :P
12:37.48playdowhy?
12:37.50ToAsTcfhphh: http://pastebin.com/d3d2426df
12:37.55*** join/#htc-linux zycho1000 (~zycho___@f048051050.adsl.alicedsl.de)
12:37.57leobaillardI hope I'll be able to get rid of winmo soon, now that I solved my calendar and contacts problem
12:38.12leobaillardthe only things that prevents me from getting rid of it are gps and bluetooth
12:38.25IceBoneFreezes during the night, mostly. I need the phone to be on in the morning for various reasons.
12:38.45leobaillardToAsTcfh: ?
12:39.11leobaillardoh yeah, there is this bug... I'm investigating for phh on this one
12:39.49playdoicebone. winmo sucks too in the morning. i set alaram to 6am but my phone wrecked my time and it was suddenly pm
12:39.56playdoso no alarm at all ^^
12:40.04IceBone:D
12:40.17IceBone24h time ftw.
12:40.42leobaillardI don't trust my phone for the hard task of waking me up on time
12:40.56leobaillardnothing can replace a good old alarm clock
12:41.00ToAsTcfhi got to get to work. this is our source > http://github.com/jhansche/htc-2.6.27-heroc
12:41.05IceBoneI love it when Android messes up the time and you fix it, then go into recent calls and they're from the future.
12:41.58playdomy fcuking alarm clock didnt work too and i got 24h time argh
12:42.01leobaillardToAsTcfh: you're talking about camera ?
12:42.21IceBoneplaydo: works for me *shrug*
12:42.43ToAsTcfhyes
12:42.50ToAsTcfhmsm_camera
12:43.00leobaillardwaow ! gg and congrats :)
12:43.06playdoicebone: i think my location does fuck up some time
12:43.20playdowahts with camera
12:43.21playdo?
12:43.44IceBoneYour location?
12:43.54IceBoneOh, ffs... pro/engineer crashed again.
12:44.06IceBoneFucking useless piece of shit multithousand euro worth of software...
12:44.08playdolocation app from sense i mean
12:44.18playdopro/engineer?
12:44.29IceBoneYou know Catia or SolidWorks?
12:44.38playdogot it
12:44.47playdostudying mech engineer
12:44.59IceBoneSame thing.
12:45.05playdobut i dont know every bloody cad software ^^
12:45.09IceBone:P
12:45.28playdoworking on autodesk (autocad/inventor)
12:45.29IceBoneI prefer it cause it comes with a good library.
12:45.39playdoand of course catia (ford ^^)
12:45.42*** join/#htc-linux mickey|office (~Mickey@dialbs-092-079-168-007.static.arcor-ip.net)
12:45.52playdoautodesk got some good lib too
12:46.17IceBoneAnd there's a module for building with standard I-profiles.
12:46.55playdoOo dont know that
12:47.07playdowhere are u from?
12:47.10IceBoneFor basic construction.
12:47.11IceBoneSlovenia.
12:47.30playdodo u got so called "Normteile"?
12:47.45IceBone*shrug*
12:47.51IceBone:D
12:48.06playdohmm dont know how to explain. we got "german industrial standard"
12:48.17IceBoneYeah, DIN and ISO.
12:48.18playdofor nearly everything, like I-profiles
12:48.34playdoright, so i just grab a I-profile and build ^^
12:49.15*** join/#htc-linux mcdull (~mcdull@110.4.31.114)
12:49.21IceBoneYeah, but this is more advanced, builds its own reinforcements and connections.
12:49.36IceBoneThen, depending on how much weight you put on it, it modifies everything.
12:49.43IceBonestatic calculations on the fly.
12:49.56playdonice
12:51.07IceBoneIt does cost an extra 2 grand. :D
12:51.33playdo^^ that not much compared to full price, is it?
12:51.44IceBone4 grand for the basic package.
12:51.48IceBone750 for sheetmetal.
12:51.52IceBoneThat's what I have now.
12:52.47playdohmm thats quite cheap. i think inventor professional cost about 12 grand for a comopany
12:52.48IceBoneAnd like a grand for support (new version upgrades, 24/7 tech support).
12:52.57IceBoneYeah, Pro/Engineer is quite cheap.
12:53.12IceBoneSo I'm willing to go along with its niggles.
12:53.54playdou use it for ur job or what?
12:54.35IceBoneYes.
12:56.24IceBoneAsphalt plants.
12:56.36IceBoneScreens mostly, and other components if the client so desires.
12:58.13playdonot at work now?
12:58.29IceBoneAm. :D
12:58.34IceBoneBut dual screen ftw. :D
12:58.44IceBonePlus, I work from home.
12:58.47IceBoneWork for my dad.
12:58.53IceBoneSo, it's a lot more relaxed.
12:59.09*** join/#htc-linux GNUtoo|oeee (~GNUtoo@host146-211-dynamic.25-79-r.retail.telecomitalia.it)
13:07.01playdoi'm relaxed too, cause its a big company ^^
13:07.12playdolike dilbert
13:09.32*** join/#htc-linux GeekLad (~GeekLad@adsl-178-231-40.jax.bellsouth.net)
13:10.27*** join/#htc-linux _rzk_ (~rzk@daemonet.ru)
13:11.40*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
13:13.58playdotries poking the boringness
13:14.26playdowas hit back by boringness
13:14.38leobaillard^^
13:14.43playdocant defeat boringness
13:14.50playdosuch a crap
13:15.04leobaillardlawl
13:15.17playdogotta have to play with android ^^ dont want to write on my diploma thingy
13:15.55leobaillardwill be better when we'll have 3D :)
13:16.26leobaillardhave a look at this :
13:16.27leobaillard13] * playdo tries poking the boringness
13:16.29leobaillard[14:14] * playdo was hit back by boringness
13:16.31leobaillardoops
13:16.35leobaillardhttp://www.journaldugeek.com/2010/01/26/50-jeux-android-dans-une-seule-video/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+LeJournalDuGeek+(le+Journal+du+Geek)
13:17.21playdoyep 3D is gonna be awesome
13:17.51playdoshould have brought my eeepc with me to work
13:19.16*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
13:19.16playdothe games look awesome
13:19.26*** join/#htc-linux kiozen (~oeichler@p549210A0.dip0.t-ipconnect.de)
13:20.01playdoleobaillard is it very likely that 3d drivers are developed in the near future?
13:20.12IceBonePlease connect the charger, the battery is getting low: 45% remaining. WTF?
13:20.30playdothats some weird bug
13:20.43leobaillardIceBone: still the battery problem you know... nobody managed to correct it yet
13:21.29IceBoneYes, but it's getting worse, isn't it?
13:21.32IceBone45%
13:21.39IceBoneBefore it told me that it's 63%.
13:22.28playdodidnt got any message above 15%
13:23.03IceBoneBoth were during phone calls, though.
13:23.23IceBoneMaybe it refreshed the screen after the phone call was over and it displayed what it was getting then.
13:26.05*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
13:27.33*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
13:29.15*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
13:30.33playdomcdull: what program do u use?
13:30.45playdo^^ down
13:42.28*** join/#htc-linux MethoS- (~clemens@134.102.106.250)
13:46.03IceBoneOff to class.
13:46.15IceBone8-15 = work, 16-19 = class
13:46.18IceBoneAnd my day is fuckt.
13:49.47*** join/#htc-linux jumoit (~samuel@121.77.87.145)
14:19.40*** join/#htc-linux marcydarcy (~5b2989b8@gateway/web/freenode/x-qgouvkgxmvmwxbll)
14:31.41*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
14:33.28*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
14:35.45*** join/#htc-linux mcdull (~blackston@061093132071.ctinets.com)
14:36.56mcdulltest
14:37.23mcdull~.~ irc NickServ is difficult
14:37.24aptmcdull: okay
14:39.31*** join/#htc-linux c2d (~Mike@port-92-200-3-165.dynamic.qsc.de)
14:39.59*** part/#htc-linux c2d (~Mike@port-92-200-3-165.dynamic.qsc.de)
14:40.59*** join/#htc-linux balans (~Gebruiker@82-170-215-5.ip.telfort.nl)
14:44.43*** join/#htc-linux Taypen (~taypen@85.65.36.171.dynamic.barak-online.net)
14:45.22*** part/#htc-linux zachy (~george@ip-85-160-13-178.eurotel.cz)
14:53.49*** join/#htc-linux marex (~marex@vasut.kolej.mff.cuni.cz)
15:07.32*** join/#htc-linux mc (~nathan@66.189.214.135)
15:21.12*** join/#htc-linux miknix (~miknix@gentoo/developer/miknix)
15:38.33*** join/#htc-linux dekar (~dekar@dialbs-088-079-080-042.static.arcor-ip.net)
15:52.47*** join/#htc-linux Taypen (~taypen@85.65.36.171.dynamic.barak-online.net)
15:53.13*** join/#htc-linux lkcl (~lkcl@nat65.mia.three.co.uk)
15:58.40*** join/#htc-linux Boydell (~Boydell@69.49.58.28)
16:00.23*** part/#htc-linux jumoit (~samuel@121.77.87.145)
16:02.51*** join/#htc-linux Boydell_ (~Boydell@69.49.58.28)
16:03.01*** join/#htc-linux lucx (~luc@89-115-128-35.cl.ipv4ilink.net)
16:10.58*** join/#htc-linux Taypen (~taypen@85.65.36.171.dynamic.barak-online.net)
16:11.57*** join/#htc-linux kiozen (~oeichler@rgnb-5d87dfb5.pool.mediaWays.net)
16:22.06*** join/#htc-linux Taypen (~taypen@85.65.36.171.dynamic.barak-online.net)
16:22.32*** join/#htc-linux leobaillard2 (~leobailla@leobaillard.org)
16:23.09Taypenвключил emerald пропали все декорации окон шо за
16:23.14Taypenкак вернуть?
16:23.24Boydellenglish?
16:24.19Taypensorry wrong tab :)
16:24.41Boydelloh lol
16:24.42Boydellok
16:27.44*** part/#htc-linux leobaillard2 (~leobailla@leobaillard.org)
16:29.12*** join/#htc-linux leobaillard2 (~leobailla@leobaillard.org)
16:30.23*** join/#htc-linux leaigor (~laigor@188.134.16.241)
16:32.52*** join/#htc-linux playdo (~playdo@p57B3E77F.dip.t-dialin.net)
16:36.20*** join/#htc-linux playdo (~playdo@p57B3E77F.dip.t-dialin.net)
16:38.12*** join/#htc-linux playdo (~playdo@p57B3E77F.dip.t-dialin.net)
16:46.47*** join/#htc-linux playdo (~playdo@p57B3E77F.dip.t-dialin.net)
16:50.10*** join/#htc-linux MethoS- (~clemens@134.102.106.250)
16:58.51*** join/#htc-linux Boydell (~Boydell@69.49.58.28)
17:12.28*** join/#htc-linux malgon (~simon@ABordeaux-257-1-122-197.w90-55.abo.wanadoo.fr)
17:14.41*** join/#htc-linux noisyzen (~muenster@c-71-238-20-94.hsd1.mi.comcast.net)
17:14.45noisyzen&
17:14.55Boydell<PROTECTED>
17:18.58noisyzenit means i'm here, but i'm kinda away
17:19.09Boydellah. never knew that.
17:19.47noisyzena friend of mine taught me that
17:19.55Boydellnice.
17:20.06noisyzenJust looked it up and found it here: http://pound.perl.org/RTFM/pound.perl.guide.html
17:20.16noisyzenif you search for /me &
17:20.16makkonendoesn't it only mean that if everyone knows it means that?
17:20.17noisyzenlol
17:20.26Boydellha
17:20.30Boydellwas thinking that too
17:20.33Boydelloh well
17:20.35noisyzenha, probably
17:20.47Boydellmakkonen: glad to see you fixed power colapse, what was the problem?
17:21.00noisyzenit's the same concept as the age old question, "If a tree falls in the woods and no one is around to hear it, does it still make a sound?"
17:21.17noisyzenok, back to lurking. :)
17:21.31makkonenwait, you're going by what perl hackers consider good etiquette? Of course & has a whole meaning. %$%$#%^#$ probably means 'I hope you have a pleasant afternoon, good sir' to those freaks.
17:22.10makkonenI'm just kidding. I love the perl hackers.
17:22.19noisyzenLOL. I'm writing in perl as we spseak. but not hacking :)
17:22.36noisyzenand come to think of it, the person who told me about that does a ton of perl...
17:23.01Boydellmakes sense then doesnt it?
17:23.13makkonenboydell: I don't know that it was actually broken. did you check the dmesg? the breathing stopped because of the change to the way LED effects were handled, I gather.
17:24.12makkonenanyway, I got MrPippy's .config, and built with that. It had the power collapse settings different, as well as a bunch of other things. That fixed it.
17:24.30BoydellI looked at it, but wasnt sure what is called/needed to see if its working. It just seems to wake up too fast for me to believe it was working. I havent tried the new package and kernal yet though
17:25.06*** join/#htc-linux dcordes (~dccordes@unaffiliated/dcordes)
17:25.26makkonenwell, I ran it for 4 hours last night and it went down to 15% battery... which is about what I get with power collapse... so I couldn't tell.
17:25.40*** join/#htc-linux philipgian (~philipgia@athedsl-4524221.home.otenet.gr)
17:25.46BoydellDo you leave your phone booted into android all the time?
17:26.11dcordesGNUtoo, ping
17:26.46GNUtoodcordes, hi
17:27.58makkonennah. but I wanted to see how it was doing last night. new smd_tty workqueue thing from mrpippy seems to make cdma data... legitimately stable. I downloaded 3 or 4 podcasts and the worst that happened was at the end the radio went crazy, but the phone still didn't crash.
17:28.18Boydellnice!
17:28.38BoydellI've been leaving my phone on, and every morning I wake up to it booted back into winmo
17:28.42BoydellI dont know why
17:28.51makkonenramconsole
17:28.56dcordesGNUtoo, any news? did your build work?
17:29.05makkonenand leave logcat running overnight.
17:29.10Boydellyah but they dont have timestamps do they?
17:29.10GNUtoodcordes, what build?
17:29.17dcordesGNUtoo, x image
17:29.52GNUtoodcordes, ah? I didn't know I was building x-image...I'm building e-image right now but for bug device
17:30.51Boydellmakkonen: not sure what logcat is or what it does
17:31.17dcordesGNUtoo, then I misunderstood. I thought you were building an image with the purpose of testing xf86-video-msm on dream
17:31.18makkonenadb logcat
17:31.32makkonenheavy duty userspace logging.
17:31.38makkonenif android crashes, it will tell you why.
17:31.41Boydellhm
17:31.48BoydellIll have to take a look at that
17:31.54GNUtoodcordes, ah yes I was waiting for leviathan's work to be commited
17:32.03GNUtoodcordes, I forgot that
17:32.07GNUtoosorry
17:32.21*** join/#htc-linux babijoee (~babijoee4@d110-33-172-85.sun801.vic.optusnet.com.au)
17:32.42Boydellmorning babijoee
17:32.42dcordesGNUtoo, the patch is already in pastebin
17:32.46babijoeehi
17:32.47dcordesGNUtoo, I have it saved locally
17:33.10dcordesGNUtoo, and the kernel headers thing requires a hack too and I don't know if it's good to commit that
17:33.27dcordesleviathan, ping
17:33.31GNUtoook
17:33.39GNUtoothe libc header hack
17:33.40GNUtoolol
17:33.46dcordesyes
17:33.51*** join/#htc-linux ercani (~ercani@78.185.35.74)
17:33.54dcordesbtw did you get rid of the ugly alsa hack thing?
17:34.02GNUtoomaybe we could do that:
17:34.20*** part/#htc-linux ercani (~ercani@78.185.35.74)
17:34.38GNUtoodcordes, not yet...I had some exams and I was unshure of the result until yesterday
17:35.04GNUtooso I had to study for the next exam time
17:35.14GNUtoowhich would have been very soon after the firt one
17:36.09dcordesstupid exams...
17:36.12GNUtoolol
17:36.28GNUtooI'm glad there are more than one time slot for passing them
17:36.57GNUtooalso how would be as good at contributing at free software as now without the university
17:37.01GNUtooI would only know perl
17:37.13GNUtooand without object oriented programming
17:37.16GNUtoolol
17:38.29chamonixhey guys
17:38.39Boydellhey chamonix
17:39.31dcordesGNUtoo, I will prolly learn some java in the 3rd semester.
17:39.51dcordesinstead doing some good C from the beginning we do nothing but matlab
17:39.57GNUtoostrange...java is the first thing I learned at university
17:40.01babijoeehi chamonix
17:40.17Boydellfirst thing i learned was c# ...
17:40.35Boydellstupid universtiy
17:40.44chamonixhey Boydell & Boydell
17:40.50chamonixoops
17:40.52chamonix& babijoee
17:40.54chamonix:)
17:40.58babijoee:3
17:41.08chamonixhow were the penguins babijoee ?
17:41.16babijoeeawesome lol
17:41.29babijoeehad a awesome trip
17:41.32chamonixcool
17:41.42babijoeenice work on led effects :)
17:41.44chamonixdid u get ur nexus fixed?
17:41.52babijoeeyes i did :)
17:41.58babijoeeinvolved updating radio
17:41.59dcordesGNUtoo, I guess we have very different programmes
17:42.02chamonixty, it's still work in progress but it's a good start
17:42.10dcordesGNUtoo, I'm not studying CS
17:42.10babijoeedefinantly
17:42.23GNUtoodcordes, ok...what are you studying?
17:42.27chamonixI'll add prefs and custom timers today/tomorrow
17:42.31GNUtooBoydell, lol
17:42.39babijoeewhen i got a call, i thought my dpad was dirty as the ringer and center was flashing
17:42.53babijoeebut then i thought it was intentional :)
17:43.10Boydellis there any progress with the while mic issue right now?
17:43.14*** join/#htc-linux dekar (~dekar@e176254205.adsl.alicedsl.de)
17:43.20babijoeemic issue?
17:43.28Boydellhaving to call first
17:43.45babijoeeor you can play a sound file
17:44.10Boydellwhile launching haret?
17:45.17babijoeewe just need proper initialisation
17:45.38*** join/#htc-linux Captnoord (~Captnoord@dc5147a47b.adsl.wanadoo.nl)
17:45.41Captnoordlol
17:45.41Captnoordk
17:45.42makkonendoes someone know what happened to fix it on rhodium? (I'm not sure if it was the same issue... might've been that the speaker didn't work unless you made a call before booting on rhodium, whereas it's mic on raph800/diam500)
17:45.44chamonixbabijoee: it is indeed :) for ringer and charge I've not much to change except selecting the effect, for notifications I have the problem of ending the effect..... I'm tying to detect when the corresponding app is being opened (e.g. SMS app) but the API is quite limited.... when I'll do for now is limit it to a certain time (e.g. 10s) with an optional repetition
17:45.46Captnoordgot the bastard....
17:45.58Captnoordchar c9[]={MICROP_I2C_WCMD_MISC,0x08};
17:45.58Captnoordprintk("Something used micropklt_lcd_ctrl. This function should no longer be used.\n");
17:46.08Captnoordmicrop-klt.c
17:46.20CaptnoordI really like the debug message
17:46.27Captnoordbut.... it spams the system atm
17:46.44Captnoordand I also think its one of the reasons the battery is draining
17:47.06Captnoordmainly because of the spamming
17:47.13Captnoordlinux-msm\drivers\i2c\chips\microp-klt.c
17:47.28chamonixfrom my experience overflowing dmesg is not causing any drain
17:47.50Captnoordi'm totaly fine with that
17:47.52chamonixpreventing sleep is on the other hand
17:47.58makkonenholy crap, the htc supersonic on sprint looks like the perfect phone. wtg sprint.
17:48.18Boydelllink?
17:49.02makkonenhttp://www.boygeniusreport.com/2010/01/18/htc-supersonic-to-hit-sprint-with-wimax-on-board/
17:49.45makkonenand I'll never get it because it'll be $600 and not on SERO. oh well.
17:50.30makkonenI was hoping it'd come with winmo and end up on the sero list.
17:50.57Boydellok what is sero?
17:51.04adamwgood sprint data plan
17:51.10*** join/#htc-linux onen|openBmap (~quassel@vbo91-1-89-87-201-85.dsl.club-internet.fr)
17:51.14adamwwhich they're trying like hell to get people off
17:51.19*** join/#htc-linux graziano (~graziano@fsf/member/graziano)
17:51.26grazianoleviathan, ping
17:51.26Boydellha
17:51.27makkonenthe best cell phone plan ever. which apparently loses sprint money like whoa.
17:52.01*** join/#htc-linux avengerpenguin_ (~sean@5ad1cd58.bb.sky.com)
17:52.16makkonen$30/mo, 500 minutes, unlimited data, free roaming on verizon, unlimited m2m, etc.
17:52.45babijoeeUS has great plans
17:53.01babijoeeAU internet is slow growing and expensive
17:53.04Boydellholy shit!
17:53.04adamwahaha free roaming on verizon? that's just insane
17:53.08babijoeei pay 8$ for 500mb
17:53.09adamwi hadn't heard that bit before
17:53.17adamwwonders how much verizon screws them over on that
17:53.59*** join/#htc-linux GlemSom (~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk)
17:54.07makkonenI think sprint has done a lot of dumb things in the past to try to stop the bleeding... and has left them with some stupid plans out there. I'm not complaining.
17:54.10babijoeechamonix: any recent development for android nand?
17:54.42phh[00:16:09] <adamw> is the LED stuff expected to work on all phones or just specific ones? <----- only raph/diam
17:54.59adamwphh: ok
17:55.00babijoeehi phh
17:55.04phhhi babijoee
17:55.06adamwmorning phh
17:55.22adamwhas another shot at doing usb tethering
17:55.22phhit's 7pm :p
17:55.29adamwno, it's not.
17:55.30adamw:P
17:55.32babijoeeits 4:55 -.-"
17:55.34babijoeeam*
17:55.41makkonenno, it's not
17:55.44phhadamw: you mean an automated way or manual one ?
17:56.06adamwphh: i was fiddling with iptables. there's an automated way? or are you talking about that pdanet crap?
17:56.12Boydellits 1pm :)
17:56.15phhdoing scripts ? :p
17:56.28phh(that's what I mean with "automated".)
17:57.25Captnoordspams phh with his micropklt_lcd_ctrl message
17:57.25Captnoord:P
17:57.31phh[00:27:36] <adamw> like I said, though, if wifi's different on topaz and rhodium, won't BT be different too? <---- basic bluetooth (ie 115200 bauds.) should easily works
17:57.42phhCaptnoord: that much ?
17:57.46phhI'll have to take a look at it.
17:57.46Captnoordyup
17:57.54Captnoordit uberly spams...
17:57.59Captnoordmaking my phone not booting
17:58.05Boydellmakkonen: adb working with new build? Im getting device offline?
17:58.12Captnoordmany users.. of the raph series have this
17:58.22Captnoordmany people use a diff base files to fix this
17:58.27phh[00:28:45] <adamw> i suspect the bcm4329 is supposed to do BT on rhodium as well, though, so it won't work until that driver's going <------ same chip, but not same driver, BT is done through serial port, and should be easy to get working
17:58.36Captnoorddiff rootfs stuff
17:58.37phhCaptnoord: "base file" ?
17:58.54adamwphh: ooh, I see. d'oh, shoulda realized I didn't see any BT stuff in the driver file :)
17:58.58Captnoordits of course related to how micropklt module works
17:59.09makkonenboydell: add echo 2 > /sys/devices/platform/msm_hsusb/usb_function_switch to your custom shell commands in eclair.user.conf... or just write it in the terminal.
17:59.33Boydelli did
17:59.33adamwgoddamnit i'm tired of playing iptables module dependency bingo
17:59.40phhadamw: and you have bcm4325 not bcm4329
17:59.40Boydellthe devies is "there"
17:59.45phhwhich has wwwwwaaaaaaayyyyyy less features.
17:59.48adamwphh: yeah, we know
17:59.53adamwphh: keep reading the scrollback :D
17:59.56phhok
18:00.09adamwphh: I found a rom / source dump for the lg gw620, which has the 4325 as well
18:00.11Boydellmakkonen: adb devices shows 00000000000000000 offline
18:00.18phhadamw: samsung i7500 too
18:00.19makkonenhmm
18:00.31adamwphh: so it has firmware and an nvram file and an excitingly old version of the driver, heh
18:00.46phhI guess N1's one is the newest available ?
18:00.47Boydellgot it working
18:00.54adamwphh: haven't found anything newer, yeah
18:01.01adamwi posted the versions somewhere in scrollback
18:01.14makkonenboydell what'd you need to do?
18:03.21Boydellmakkonen: well i have two different adb's, one for xda or something, and one that came with the adnroid sdk
18:03.41Boydellmakkonen: the one from xda will start the daemon but not connect
18:03.47Boydellthen the sdk one connects
18:03.49makkonenah
18:03.52Boydellidk its fucked
18:03.55phh[01:17:59] <adamw> MrPippy: how did we get the calibrations for other phones? <----- we used android phone's calibration files :D
18:04.07phh(we know how to read it from nand too thuogh)
18:04.40adamwphh: yeah we were looking at the nand thing a bit later, but with the n1 and gw620 dumps i guess it really shouldn't be needed
18:04.48phh[01:19:34] <Markinus> we could dump /proc/calibration on a nexus . . <------- babijoee provided you with it ?
18:04.57makkonenboydell: if you're in windows, grab droid explorer. little (ok a lot) buggy, but pretty file explorer and shell/logcat both have nice colors and everything.
18:05.18adamwman, watching phh play catchup is like some kinda awesome Yesterday Morning Wayback Machine :P
18:05.23babijoeeooo need me to dump something from my nex?
18:05.39phhadamw: iirc there is someone here with a samsung galaxy which also has bcm4325
18:05.47phhbabijoee: dd if=/proc/calibration of=/sdcard/plouf
18:05.54makkonenadamw: protip: you can just read his responses to scrollback instead of actually reading scrollback yourself. way more efficient.
18:06.01adamwmakkonen: ooh. nice one.
18:06.03Boydellmakkonen: yah i have that. keep forgetting i do
18:06.15adamwmakkonen: I should convince him to join #fedora-qa , it'd save me so much time
18:06.38phh[01:32:31] <adamw> might be less tiring than making usbnet work, is that complex? as i said earlier, 'ifconfig' already shows a usb0 interface with an ip address but i'm not entirely sure what that means <----- usbnet just works for me :/
18:07.09adamwphh: yeah I realized late last night that actually it just works for me too
18:07.15phh[01:36:09] <adamw> which of the mtd drivers need to be loaded exactly? is just mtd_blkdevs and mtdblock_ro enough? that looks like the safest combo <------ iirc only mtdchar works if you're not using yaffs2
18:07.16phhadamw: lol ok
18:07.18babijoeeuhh not sure what that means
18:07.21adamwphh: well, I can ping one from the other, so i'm assuming it works
18:07.42adamwhaven't installed an sshd yet
18:07.49phhand to read with mtdchar, do dd if=/dev/mtd/mtd0ro bs=4096 of=/sdcard/plouf
18:07.58phh(bs has to be a multiple of 2048 at least)
18:08.00phhadamw: use telnetd
18:08.06adamwphh: right. we probably don't need that yet though.
18:08.19phhadamw: having a full dump is still nice to have :p
18:08.29adamwphh: if you want it i'll do it then
18:09.00adamwis not quite sure why he's wasting so much time on wifi when he never frickin' uses it anyway
18:09.06adamwoh well. other people want it.
18:09.37makkonenadamw: higher good. nice.
18:09.38adamwoh yay i'm telnetted in. well this will make shit easier.
18:10.22babijoeesomeone explain to me how to :  dd if=/proc/calibration of=/sdcard/plouf
18:10.35adamwbabijoee: it's just a command you run in a terminal on the phone (or logged into the phone)
18:10.41babijoeeooo
18:10.51adamwit reads the 'file' /proc/calibration and dumps it to /sdcard/plouf
18:11.05adamwthen you upload plouf somewhere
18:11.27babijoeeok thanks
18:11.30adamwdd is great, I use it for backups when markinus wants me to install some 1.6 crap to test something
18:11.40adamwdd if=/dev/sdb1 of=myandroid.img
18:11.46adamwmakes an exact dump of my sdcard partition
18:11.58adamwthen i do whatever i need, then do the reverse dd...and I have my android back.
18:13.02chamonixbabijoee: no, nand is still working like a charm... phh gave me a few hints but it still required a kernel with yaffs support compiled-in for now, once effects service is feature complete that's definitely what I'll work on
18:13.48phhadamw: btw, did you try using lg gw620 or samsung galaxy's bluetooth stack ?
18:13.57chamonixhey phh
18:14.10adamwphh: no, as I was still thinking we'd need bcm4325 before bluetooth would work
18:14.15adamw(aka being an idiot)
18:15.19phhhi chamonix
18:15.20phhchamonix: I'll make you a script to use glemsom's kernel.
18:15.20phhadamw: well you might have some problems with gpio.
18:15.24adamwby 'stack' you just mean the userspace stuff? or their kernel bluetooth modules too?
18:15.32phhthey have bluetooth modules ?
18:15.41phhI mean apart the network protocol itself
18:15.44adamwwell, kernel bluetooth code. however they build it. i didn't look.
18:16.07phhbut I meant about userland.
18:16.38adamwah. no, i didn't
18:16.45adamwok hit me with one thing at a time here :P
18:16.49adamwstill working on the dump
18:21.58chamonixphh: sure I'd be happy with that, on the other hand I still want to understand the at least the ramzswap and initrd in order to be able to load mtd* at fron for testing my homebrew kernels :P
18:23.46*** join/#htc-linux Boydell_ (~Boydell@69.49.58.28)
18:24.24adamwi think i'm killing my cheapo android sd card, i get a Mysterious Random Boot Failure about one boot out of three now. heh.
18:24.30Boydellkeystore( 1570): chdir: /data/misc/keystore: Permission denied
18:24.35Boydellwhats up with that?
18:24.49adamwwell, you don't have execute permission on /data/misc/keystore ?
18:25.23BoydellI guess not? but its not something IM tryin to do
18:25.26Boydellthats android
18:25.30Boydellnot having permission
18:25.39tmztit probably lacks +x
18:26.46babijoeehmmm cannot open for write: permission denied
18:27.18Captnoordbabijoee: do you know if you still use "micropklt_lcd_ctrl" stuff in your releases
18:27.45babijoeeCaptnoord: i wouldn't have a clue :p
18:27.51Captnoordk
18:28.03Captnoordas its spamming most raph users.. with your release
18:28.09Captnoordusing your release*
18:28.13babijoeeyou'll have to ask others
18:28.15babijoeehmmm
18:28.31babijoeeit is just spamming messages?
18:28.40Captnoordmajorly
18:28.54babijoeebut not affecting functionality?
18:29.26makkonenjust on raph100, or what?
18:29.54Captnoordforum is full of it
18:29.58BoydellI think i see it, but only on startup, ill tell you in a minute
18:29.59Captnoordonly seems to be raph
18:30.13adamwif you're talking about stuff like: [  395.704284] microp-klt: Setting lcd-backlight brightness to: 0x10
18:30.16adamwi get that.
18:30.24Boydellno no
18:30.27adamwoh kay.
18:30.41phh[07:17:21] <makkonen> has power collapse stopped causing the LEDs to breathe since the changes were pushed to allow userspace to access them? <---- theorically, no
18:30.42makkonensomething about using the wrong function for microp-klt
18:30.58makkonenphh: it's been moved to LEDEffects, right? (which I didn't have installed at the time)
18:31.04phhno
18:31.07phhthe sleep part is still in kernel
18:31.27phhbut if sleep_effects is written, then it overrides the sleep_leds
18:31.30*** join/#htc-linux polyrhythmic (~charles@c-67-171-16-39.hsd1.wa.comcast.net)
18:31.35phh(well actually the last written overwrites the other)
18:33.02*** join/#htc-linux GregLem (~greg@lal69-5-88-171-98-250.fbx.proxad.net)
18:33.19*** join/#htc-linux MrPippy (~pip@adsl-75-33-10-219.dsl.sndg02.sbcglobal.net)
18:33.22Boydellis there a way to tell in the dmesg weather its going to sleep?
18:33.38phhjust read it :p
18:33.59adamwwell that's fucking dandy
18:34.10adamwif i don't boot to android, i can't telnet in
18:34.26makkonen...
18:34.30adamwhttp://fpaste.org/2gXg/
18:34.41adamwthat's what i get trying to telnet in if I just boot to a console and run telnetd
18:34.51adamwif i boot to android and run telnetd, i can connect fine
18:34.57adamwsigh.
18:34.59makkonenit's like it hates you, isn't it?
18:35.07adamwi just want to be loved
18:35.10adamw*weeps*
18:35.11Boydellphh: i didnt know if something got written. I see sending arm9_low_speed 2
18:35.25Boydellim assuming thats parts of sleep
18:35.28phhthat's done on early_suspend, not true suspend
18:35.45adamwpersonally i blame google. heh.
18:35.48adamwokay, planb
18:35.49phh(early_suspend ~= screen off)
18:35.57makkonenhmm. I might've built it with the wrong suspend.
18:36.03MrPippyadamw: you probably have to make some special device nodes first
18:36.16Boydellthis was one i built but off your repo.
18:36.32Boydellafter that, active wake lock PowerManagerService
18:36.33phh[08:05:19] <adamw> babijoee: calibration stuff is phh's i think? <------ me and makkonen
18:36.36Boydellthats about it
18:36.52babijoeeok
18:37.07makkonenbeams
18:37.10babijoeeupdating that now
18:37.46adamwMrPippy: uh, really? i can't think of any that telnet needs offhand. then it's been about 15 years since i used telnet, heh.
18:37.49makkonenboydell: it probably didn't work when I used the defconfig from the repo. try the one I posted, it was built with a different config.
18:37.59phh[08:07:55] <playdo> what about calibration for blackstone? <----- yeah... not today :p
18:38.01MrPippyits some device nodes, ptmx i think
18:38.15phhmakkonen: who has latest calibration's code ? you or me ?
18:38.16adamwmaybe it needs ttys?
18:38.29makkonenphh: I do, I think.
18:38.34phh[08:09:01] <mcdull> yes. any idea of why the tssc not being impletemented in blackstone? <------- buttons are handled by touchscreen -_-'
18:38.47MrPippyyeah i'll look at my rootfs and see
18:38.54adamwthanks
18:38.56phhmakkonen: mind pasting it somewhere ?
18:38.59adamwfor now i'm doing what i suggested yesterday
18:39.07adamwjust sticking the commands to do the dump into the init script
18:39.23makkonenphh: http://pastebin.com/f71e14a69
18:39.57*** join/#htc-linux mickey|zzZzzz (~mickey@openmoko/coreteam/mickey)
18:39.58phh<PROTECTED>
18:40.19phhok I see makkonen already answered everything actually.
18:41.19makkonenI didn't answer anything about multitouch. I think I missed reading that line. multitouch? c'mon. I've seen how resistive screens handle multiple touches.
18:41.55Boydellmakkonen: how many reboots before data worked?
18:42.02makkonen~3
18:42.03apt3 is a number, silly
18:42.14makkonenhush, you.
18:42.15Boydellwtf?
18:42.21Boydell~3
18:42.22apt3 is a number, silly
18:42.31makkonenapt takes commands starting with ~.
18:42.39BoydellI dont get that bot. I need to find all its commands
18:43.15babijoeelol funny bot
18:45.55MrPippyadamw: put these before the telnet commands http://pastebin.com/f731ffa02
18:46.19adamwdoh, /dev/pts wasn't there? heh. the things you assume.
18:47.18Boydell3 reboots, data is still dead. :(
18:47.54MrPippyyeah init.android makes pts
18:47.56babijoeeBoydell: data working for you before?
18:48.05Boydellyup it was
18:48.06babijoeei used apns from nexus one
18:48.14babijoeei haven't merged it with xda version
18:48.22Boydellthats why. im on telus
18:48.22babijoeei'll get on it tommorow
18:48.39babijoeehehe
18:48.44Boydellwhere are the APN's stored?
18:48.46makkonenI don't understand why it didn't work for a bunch of reboots and then did. that's really baffling to me.
18:48.54adamwBoydell: you can do it graphically in the settings
18:49.06adamwBoydell: just poke around, it's the bottom entry in one of the wireless settings lists
18:49.13babijoeein /system/etc/apns-conf.xml
18:49.45makkonensettings > wireless & network > mobile networks or something
18:49.51Boydelladamw: I have NO idean what to put though lol
18:50.04adamwtelus cdma or gsm?
18:50.08adamwuh, hspa
18:50.15Boydelltelus cdma
18:50.20makkonengo look at it and see what it says. I'm curious.
18:50.36Boydelllook at what makkonen?
18:50.40makkonenbasically it just needs to be a placeholder apn,
18:51.00adamwi think you just set it to like 'internet.com' or something
18:51.05adamwbut i'm on hspa so dunno for sure
18:51.19makkonensettings > wireless & networks > mobile networks > access point names
18:51.30babijoeehspa?
18:51.33adamwMrPippy: i'm in, thanks
18:51.43adamwbabijoee: yknow, 3.5G.
18:51.48babijoeeooo
18:52.09babijoeeisnt it hspda
18:52.14*** join/#htc-linux reactor16 (~Reactor16@41.105.73.222)
18:52.32babijoeehsdpa*
18:52.42Boydellwell I set APN to internet.com, lets see if that works
18:52.56babijoeeentering APN manually works also
18:53.20adamwbabijoee: opinions differ :P hsdpa is downstream, hsupa is upstream, hspa is both. i think. anyway
18:53.24makkonenboydell: was there anything in there?
18:53.26ToAsTcfhphh: u ever look at the camera stuff?
18:53.35adamwphh: after loading the modules I have no /dev/mtd* , do I have to manually create the nodes?
18:53.55Boydellmakkonen: no, everything was "not set" pretty much. changed name to "telus" and APN to "internet.com"
18:53.56babijoee<PROTECTED>
18:53.57*** join/#htc-linux GeertJohan (~Squarc@82-217-32-29.cable.quicknet.nl)
18:54.02Boydelland it rebooted
18:54.03Boydellha
18:54.27makkonenboydell: I think it's supposed to be name: Android: APN: internet
18:54.40Boydellmaybe?
18:54.49*** join/#htc-linux TimY (~timy@rue92-7-88-164-189-67.fbx.proxad.net)
18:54.54makkonenhuh. made mine reboot too.
18:54.58makkoneninteresting.
18:56.01MrPippywhich modules did you load?
18:56.15babijoeewell i'm off guys :) gnite
18:56.26Boydellnight babijoee
18:56.28makkonenme? compcache and tiwlan
18:56.38adamwMrPippy: started with just mtdchar as phh recommended . then I tried the others.
18:56.52makkonenoh. not me. that makes more sense.
18:57.44Boydellmakkonen: those settings I put in seem to have worked
18:57.47MrPippydid you load msm_nand?
18:57.51makkonencool.
18:59.13adamwMrPippy: no. my kernel config doesn't actually build that...maybe it's built in, lemme check
18:59.20adamwit's built in
18:59.34adamwoh, /proc/mtd shows it...
18:59.35adamwdev:    size   erasesize  name
18:59.35adamwmtd0: 20000000 00020000 "msm_nand"
18:59.39adamwi guess i just need an mknod
18:59.45*** join/#htc-linux defendthecommons (~defendthe@bd21ec63.virtua.com.br)
19:01.02*** join/#htc-linux Scepterr (~scepterr@ool-18b92277.dyn.optonline.net)
19:01.47MrPippyanything in /dev/block ?
19:02.04adamwMrPippy: loops and mmcblks
19:02.08adamwand ramzswap
19:02.34phh[09:26:38] <makkonen> nice. youtube works with the extra ram. <----- that seems really weird ...
19:02.49adamwMrPippy: I did an mknod and the dd is now running. no idea if it's doing what it should be, though.
19:03.30makkonenphh: leobaillard confirmed it worked even without. I'd just never bothered to try before because everything was so slow I imagined it would be terrible.
19:03.58phhstrange, it doesn't work for me, I run in some copybits errors
19:04.04phhmakkonen: both lowres and highres works ?
19:04.15*** join/#htc-linux [1]Captnoord (~Captnoord@dc5147a47b.adsl.wanadoo.nl)
19:04.24adamwMrPippy: how big should the dump wind up being?
19:04.28makkonenhuh. didn't try high res. I would doubt it works.
19:04.37MrPippy512mb i think
19:04.39stinebdi had lowres youtube (and my own streaming) working before as well
19:05.19ToAsTcfhphh: i seen u discussing multitouch. i just wanted to let it be known also that .27 multitouch driver doesnt seem to work in 2.x android. well it does kinda... it sees it when u multitouch. but it doesnt register on the apps. prolly cuz the multitouch was hacked into 1.5 and its native in 2.x. also backporting .29 driver looked to be a pain. again this is all on my hero and other android devices
19:05.43phhToAsTcfh: strange, backporting should be easy
19:06.06ToAsTcfhyeah it looked to be kinda deep in the kernel to me
19:06.10adamwMrPippy: yikes, only at 95mb so far, gonna take a bit :)
19:06.25adamwphh: does this look okay to you? (/proc/mtd showed the device after loading the modules, but I had to manually mknod /dev/mtd0 )
19:06.39ToAsTcfhlike i was gonna be changing stuff that was breaking other stuff kinda thing
19:06.56phh[09:49:35] <leobaillard> does someone else than me has issues with cell tower localisation ? <----- ask chamonix for help
19:07.11ToAsTcfhany how camera man?
19:07.22ToAsTcfhdid u ever look?
19:07.51*** join/#htc-linux Scepterr (~scepterr@ool-18b92277.dyn.optonline.net)
19:08.25*** join/#htc-linux zwobot (~zycho@f048051050.adsl.alicedsl.de)
19:08.52*** join/#htc-linux mickeyl (~mickey@80.81.242.146)
19:10.27ToAsTcfhi know its something to do with the loading of vfe. (ie its just not doing it) it registers fine though
19:11.01*** part/#htc-linux defendthecommons (~defendthe@bd21ec63.virtua.com.br)
19:11.06*** join/#htc-linux defendthecommons (~defendthe@bd21ec63.virtua.com.br)
19:11.30ToAsTcfhsomething is missing in the backport somewhere that will alow for vfe to be loaded
19:12.04ToAsTcfhqcam goes off without an issue
19:12.47ToAsTcfhvfe is always failing to start before write of something else
19:13.09phh[13:46:10] <IceBone> Hmm... when android becomes flashable, will we need a haret for winmo? <--- if it's truly flashable there won't be any remaining wimo  -_-'
19:13.22phhToAsTcfh: what's in dmesg again ?
19:13.43ToAsTcfhhttp://pastebin.com/d3d2426df
19:14.31ToAsTcfh#
19:14.31ToAsTcfh<6>[  813.504882] msm_camera: vfe_7x_release:235:Calling vfe_7x_stop()
19:14.31ToAsTcfh#
19:14.31ToAsTcfh<PROTECTED>
19:14.31ToAsTcfh#
19:14.33ToAsTcfh<3>[  813.505340] adsp: module VFETASK not enabled before write
19:14.35ToAsTcfh#
19:14.36phhToAsTcfh: mmm might sound like wrong qdsp5 backport then
19:14.37ToAsTcfh<PROTECTED>
19:14.39ToAsTcfh#
19:14.41ToAsTcfh<6>[  813.507019] msm_camera: vfe_7x_stop:216: failed rc = -19
19:14.51ToAsTcfhyeah idk
19:15.42*** join/#htc-linux Chicago (~Chicago@c-98-223-75-214.hsd1.in.comcast.net)
19:15.52ToAsTcfhits killing me because ive tried to compare with .29 and it gets ugly when trying to compare qdsp5  with qdsp_comp
19:16.21phh[14:30:32] <playdo> leobaillard is it very likely that 3d drivers are developed in the near future? <----- we do have 3D drivers (and it's even working in donut), but eclair borke everything.
19:16.33phhToAsTcfh: you tried comparing the vfe_task activation ?
19:16.44stinebdclearly the answer is to revert to donut
19:16.48ToAsTcfhyeah
19:16.50adamwthat's what markinus does
19:16.59adamwevery frickin' thing he asks me to test is a 1.6 image, heh
19:17.03phhstinebd: yeah... I don't want to support two builds at a time
19:17.05*** join/#htc-linux Scepterr (~scepterr@ool-18b92277.dyn.optonline.net)
19:17.18phhwhat's new in eclair again
19:17.25phhpretty much nothing. right.
19:17.27stinebdstuff
19:17.34stinebdvoice something or other
19:17.38stinebdwho knows
19:17.47ToAsTcfhlots of stuff
19:17.48phhstinebd: yes voice control, but I think that's pretty much everything.
19:17.50stinebdslower app drawer
19:17.59phhstinebd: memory eater
19:18.07ToAsTcfhdex optimising
19:18.09adamwthat neat slide-to-unlock thing
19:18.10stinebdcan we back port all that stuff? ;)
19:18.14adamwi can't live without it!
19:18.17phhToAsTcfh: hum, for me dex is kernel stuff.
19:18.21phhso I can't see the link :p
19:18.32ToAsTcfhno dex in the apps
19:18.37ToAsTcfhodex
19:18.51ToAsTcfhturned into classes.dex
19:18.58phhmmm ?
19:19.01phhwhat's that ?
19:19.46ToAsTcfhthe odex of each apk is smali up and made into a classes.dex file
19:20.08ToAsTcfhthen used by android for dex-opt
19:20.10Boydellanyone know what apps randomly load all the time in the backround without me opening them? and after i kill them?
19:20.48ToAsTcfhsuppose to make for better app management
19:20.57ToAsTcfhphh:^^^^
19:21.03Boydellthere has to be a way to stop that though
19:21.12ToAsTcfhits better in al;ot of ways
19:22.21ToAsTcfhphh: when i was working on hacking androids frameworks i had to deodex it to get the smali files i needed to edit
19:22.42ToAsTcfhthen smali it back
19:22.44phh<adamw> phh: after loading the modules I have no /dev/mtd* , do I have to manually create the nodes? <----- you should get a /dev/mtd folder, but read /proc/devices if it doesn't appear
19:22.49phhI'm not sure how android's device creation works
19:23.22phhBoydell: I'd like to know too.
19:23.40ToAsTcfhphh: so qdsp5 is prolly whats wrong for us?
19:23.48phhdon't know
19:23.52Boydellphh: it annoys the shit out of me. things load i would/will never use
19:23.54phhthat's what I can think of.
19:24.06adamwphh: /proc/devices shows  90 mtd
19:24.07ToAsTcfhok
19:24.16adamwphh: and I did mknod /dev/mtd0 c 90 0
19:24.19phhadamw: for char or block ?
19:24.25adamwchar
19:24.29phhshould work then
19:24.32phhanyway reading is safe
19:24.34adamwso is that okay, or should it have been /dev/mtd
19:24.37adamwyeah, it can't break anything
19:24.45adamwi just don't want to dump a gigantic file on you which isn't any use :P
19:24.47phhadamw: still, you might want mtd0ro
19:24.52phhfind /sys -name mtd0ro
19:24.56phhand read the "dev" file in this folder
19:25.08*** join/#htc-linux Zoolooc (~fredsibar@p54953D4A.dip.t-dialin.net)
19:25.11adamw90:1
19:25.12phhadamw: having the whole file might be useful for some things.
19:25.15ToAsTcfhqdsp5 is way different in .29 though when being compared to .27. alot of changes have been made
19:25.24adamwphh: i mean, if i'd done the dump wrong, it'd be useless
19:25.30phhToAsTcfh: warn me when you got it working then :p
19:25.34phhadamw: oh yes right.
19:26.14phhdone reading irc logs \o/
19:26.22phh(you're killing me guys -_-')
19:26.27adamwi think i'm just gonna be dangerous and leave it running off mtd0
19:26.31chamonixlol phh
19:26.36adamwit's a totally bare boot so 'surely' nothing will write to it
19:26.40adamwNothing Can Possibly Go Wrong!
19:27.18ToAsTcfhok so on to investigate qdsp5 :(
19:27.37phhthat's funny. I can resolve names, I can ping hosts (like google.fr), I can do requests with telnet on it
19:27.39adamwit's up to 305MB now...
19:27.41phhbut no browser works.
19:27.43phh(on my desktop)
19:27.49phhadamw: 512MB ROM ?
19:28.12phh(I need a raph or rhod :'()
19:28.15adamwphh: that's what the specs pages say.
19:28.25adamwphh: well we're working on that ;) reefermattness may pm you soon
19:28.29phh(I might even take a touch HD or topaz.)
19:28.40phh(just anything that's not gsm diam -_-')
19:28.59phhadamw: you got me a lower price ? :)
19:29.18adamwphh: we're gonna try and get a donation drive running. we need a dev to have a rhodium so you will fix it, and you need a better phone
19:29.21adamwit's a marriage made in heaven :P
19:29.26ToAsTcfhphh: do u own a native android device yet?
19:29.30phhToAsTcfh: no
19:29.35ToAsTcfhlol
19:29.44ToAsTcfhu love the struggle
19:29.55*** join/#htc-linux Scepterr (~scepterr@ool-18b92277.dyn.optonline.net)
19:30.15Boydellphh: that must be brutal with WinMo then!
19:30.21phhadamw: I can pay up to 130€ for it (that's around the donations I already received basically :p)
19:30.44phhToAsTcfh: do you know how to get WVGA android devices with keyboards and msm7k maybe ?
19:30.59phhI'm pretty sure there is no such thing.
19:31.46ToAsTcfhphh: wow so i grep for vfe_task just to make sure and found its not in .29 at all but it is in .27. wtf
19:31.57phhToAsTcfh: mmmmmmmuh ?
19:32.04ToAsTcfhtry it then
19:32.10phhyeah... another day :p
19:32.12ToAsTcfhim tellin u
19:32.20phhfirst I have to write the script for chamonix
19:32.57ToAsTcfhbah...
19:33.22ToAsTcfhanyhow i guess ill figure that out after work. for now i g2g
19:33.28ToAsTcfhgood luck
19:33.58adamwphh: that should actually be enough to swing it, reefermattness is gonna poke you now :)
19:34.21phhyes I got it :p
19:35.44*** join/#htc-linux mastermerlin (~merlin@pD957CD27.dip.t-dialin.net)
19:39.37makkonenshould there be a gitorious repo for the rootfs? there's a bunch of little fixes that should go into the init script, but they never make their way out of my personal copy because it's I have no idea where to direct the fixes. I don't really know how it'd handle all the permissions and binary files, though. I assume git is made to handle that sort of stuff.
19:39.50adamwmakkonen: stinebd started one I think
19:39.54phhmakkonen: we would need a whole clean android tree.
19:40.14adamwmakkonen: but you can send fixes to babijoee or leob and they should get into xdandroid...
19:40.25makkonenphh: we would?
19:40.33phhs/would//
19:40.41adamwphh: oh yay my dump stopped right on 512MB, so that seems right
19:41.03phhadamw: first 36MB are all 0xff ?
19:41.17adamwhaven't got the sdcard out and looked yet
19:41.45phhok
19:42.26adamwand my phone boots, so i didn't kill it. nice.
19:42.34phhlol
19:42.41adamwyes, a gigantic pile of <FF> at the start.
19:42.52phhit's the radio rom
19:42.59phh(it's not readable for """""""""security reasons""""""""")
19:43.03adamwso should I compress this and dump it somewhere?
19:43.19phhhum no
19:43.38makkonenadamw: yeah, I can send changes... but that usually means I download the latest rootfs, apply my fixes to it, make sure it works... then send a whole rootfs to one of them and hope they don't have to merge it with someone else's changes on their end. this is what git was MADE for.
19:43.54phhdd if=plouf of=plouf2 bs=1024 skip=36000 count=1k
19:43.57adamwmakkonen: true. well, I usually just send the changed files (or a patch) within the rootfs.
19:44.01phhI guess this plouf2 should be enough
19:44.09phh(I'm no longer sure if it's 36000 or 36*1024 thouhg)
19:44.09adamwphh: ah, to cut out the radio rom. right.
19:44.13makkonenwhatever... I'm jut complaining because... it's easier than making the fixes.
19:44.19phhadamw: and we need only the first MB
19:44.22phhthe rest is just wince
19:44.26adamwgotcha
19:44.42adamwso, try it with 36000 first and see if there's still any FF there?
19:44.50*** join/#htc-linux GeertJohan (~Squarc@82-217-32-29.cable.quicknet.nl)
19:44.55phhyes
19:45.35adamwstill starts with FFs
19:45.41adamwso try with 36864?
19:45.43*** join/#htc-linux mickeyl (~mickey@openmoko/coreteam/mickey)
19:45.53phhyes
19:46.07adamwthat looks like a bingo
19:46.32adamwstarts with a page or so of ^@ and then 0.85.OliNex^@Rhodiu SPL EVT^@^@Shipped and data with some readable text in there
19:46.37adamwsound right?
19:46.44phhah spl.
19:47.19phhadamw: count=4k
19:47.21phhnot 1k
19:47.23adamwok
19:49.20*** part/#htc-linux [1]Captnoord (~Captnoord@dc5147a47b.adsl.wanadoo.nl)
19:49.35*** join/#htc-linux captnoord (~Captnoord@dc5147a47b.adsl.wanadoo.nl)
19:49.41captnoordradio rom.... interesting.....
19:49.53captnoordrare to share it with me?
19:50.06captnoordcare*
19:50.14adamwphh: http://www.happyassassin.net/extras/plouf2.zip
19:50.15phhcaptnoord: it's not readable
19:50.17*** join/#htc-linux Scepterr (~scepterr@ool-18b92277.dyn.optonline.net)
19:50.22adamwcaptnoord: sure. 0xFF
19:50.24captnoordnot readable?
19:50.27adamwtake that, multiply it by 36MB
19:50.31adamwthere's your radio ROM
19:50.31captnoordtotaly 0xFF
19:50.45makkonendid anyone (chamonix?) get any farther on dropbear? anyone know?
19:51.32captnoordits not totaly 0xFF
19:51.42phhcaptnoord: yes it is :p
19:51.46phhwhen you read it.
19:51.49captnoord52748725
19:51.52phhfrom A11 by default
19:51.55mastermerlinhi@all
19:52.00adamwphh: that look like the good stuff?
19:52.15captnoord0xD9A00
19:52.22captnoordoffset
19:52.33captnoordand above that
19:52.45phhwhat about it ?
19:52.50phhcaptnoord: that's not radio dump
19:52.51captnoordbleh
19:52.52captnoordcrap
19:52.57captnoordI understand
19:53.42captnoordOffset      0  1  2  3  4  5  6  7   8  9  A  B  C  D  E  F
19:53.42captnoord00380000   47 4F 4C 44 00 00 08 00  4E 4F 53 54 00 68 65 72   GOLD....NOST.her
19:53.45captnoordhmmm
19:53.46adamwcaptnoord: if you want anything out of the dump i can do it for you.
19:53.58captnoordnah... just interested
19:54.18captnoordI like to check if I can magicly get more out of it...
19:54.19captnoordbut I can't
19:54.32phhadamw: I think I don't know how to calculate.
19:54.36adamwphh: heh
19:54.46phhah no I forgot a translation
19:55.15phhadamw: if it's like raph/diam/cie do dd if=plouf2 of=calibration bs=1024 skip=1k count=1
19:55.17phhand you should get it
19:55.58adamwwow, magic. yup.
19:56.06adamwlet's see how that compares to the one I ripped out of gw620
19:56.25phhright magic ?
19:56.25phhcool
19:56.50adamwooh. it's pretty different.
19:56.52*** join/#htc-linux M1DLGpc_ (~M1DLGpc@bb-87-81-252-83.ukonline.co.uk)
19:56.54adamwthat's interesting.
19:57.04phhadamw: calibration isn't expected to be the same at all :p
19:58.04adamwphh: thanks
19:58.11adamwi'll try bcm4329 with this calibration
19:58.18adamwi fully expect it to fail anyway but it's something to do :P
19:58.38adamwwhen you get your rhodium you'll no doubt have everything working the next day anyway, right? ;)
19:58.54phhI think wifi should be pretty easy yes
19:59.57adamwworking power management is the next big thing everyone wants i think
20:00.00phhchamonix: I'm taking care of your script I swear ! :p
20:00.11phhadamw: I'm pretty sure power management already works -_-'
20:00.26adamwphh: hum, well, to be fair i'm just going off what others have reported
20:00.38adamwhaven't had time to run it unplugged without rebooting for a long time and see how it goes, yet
20:00.51adamwbut for e.g. the screen backlight stays on even when the screen goes 'off'
20:00.52*** join/#htc-linux fleixius (~fleixius@unaffiliated/fleixius)
20:01.08adamwso that's obviously not optimal, heh
20:01.22phhadamw: shouldn't be a big problem
20:01.39phhon blackstone when the fix has been released, they got no huge improvement
20:01.46adamwoh k
20:01.55*** join/#htc-linux swc|666 (~infidel20@unaffiliated/swc666/x-4934821)
20:02.07adamwwell, let's see...what kinda stuff should be in dmesg if power management is 'working'?
20:02.18adamwwe could compare what it looks like on rhod to diamond/raph i guess
20:02.46phhgive me yours, I know how to see that
20:03.01adamwokay, let me boot back into android
20:03.07adamwthis shit will be so much easier now I can telnet, heh
20:03.15phhno adb ?
20:03.25adamwi haven't actually tried that at all
20:12.42adamwhmm, that's interesting - the usb only works if it's plugged in when android boots...
20:13.09Boydellyah thats known
20:13.19Boydellotherwise it doesnt iniltialize
20:13.42makkonenadamw: if you feel like fixing that, that'd be cool.
20:13.43adamwah k.
20:13.49adamwmakkonen: ah, you're a funny man :P
20:14.03makkonenthanks. I try.
20:14.34adamwonce i've fixed everything else I'll fix that
20:14.36adamwhow's that sound?
20:14.54phh:)
20:15.20adamwseriously, is it just something borked in the init process? or actual scary code-y stuff?
20:15.40makkonenfor the usb? it's lower level than that.
20:15.56phhI did some little tries on it, no luck yet
20:15.57makkonenactivesync needs to be running at boot to get the usb correctly initialized.
20:16.01adamwokay, nothing i'm gonna be fixing then.
20:16.07makkonenme neither.
20:16.12phhmight be some dex calls
20:16.22adamwoh, so it's sort of abusing windows to do the initialization
20:16.37adamwlike that phone where you have to be on a call in windows before booting android to get the mic to work, and stuff
20:16.55Boydellha mine
20:17.02adamwheh, one of those funny ones that happens on the desktop too
20:17.03Boydellwell the raph/diam
20:17.06makkonenphh: do you know what was done to get sound working on rhodium without having to make a call while booting? I'd like to do whatever they did for the mic on raph800. I assume it's not at all that easy.
20:17.15adamwsome graphics cards work okay in Linux if you warm-boot after booting windows
20:17.17adamwbut not from a cold boot
20:17.18adamwheh
20:17.31phhmakkonen: mmutraced  smem I guess
20:17.39Boydelladamw: really? wtf
20:17.43*** join/#htc-linux kvaster (~kvaster@live.bn.by)
20:17.43phhadamw: my TV card does kind of the same.
20:17.51phhthere is two antenna input
20:17.56phh"digital" and "analog" one
20:18.03phhif I boot in windows, they are in the correct order
20:18.08phhif i boot in linux, they are inverted :p
20:18.27adamwheh
20:18.27phh(if i boot in windows then warm reboot, it stays as in windows)
20:18.41phhit was driving me crazy before I understood that -_-'
20:18.53adamwyeah, os does quite a lot to initialize hardware these days
20:18.58adamweverything has firmware
20:20.58captnoordas long as my guitar doesn't have firmware i'm happy
20:21.03chamonixlol phh.... don't panic, I'm working in my emu fulltime anyway
20:21.17phhcaptnoord: eletrical one ?
20:21.25chamonixmakkonen: dropbear runs fine with pub/privkey
20:21.35captnoordhttp://fatpenguinblog.com/wp-content/uploads/2006/01/IntelFender1.jpg
20:21.38captnoordhehe
20:21.38Boydellcaptnoord: I agree.
20:21.47makkonenchamonix: awesome. how do I get it?
20:21.51adamwphh: just getting you a few dmesg's now.
20:22.20captnoordits such a support atm because I don't have my laptop... and the pc i'm working on is way to slow..
20:22.37chamonixmakkonen: http://www.cri.ch/sven/doku.php/blog/running-dropbear-on-android
20:22.50captnoordBoydell: what kind of guitar ya have
20:22.51captnoord?
20:23.11adamwreally should have set telnet to listen only on usb0, thinking about it
20:23.22makkonenchamonix: thanks. looks keen.
20:23.24Boydellmore bass
20:23.28makkonenadamw: that's how it's set by default.
20:23.29chamonixmakkonen: I can provide u the binaries if u want to skip the building part
20:23.32Boydellbc rich and a yamaha
20:23.33adamwmakkonen: oh. whew.
20:23.39captnoord4 string?
20:23.45Boydellyah
20:23.49captnoordnice....
20:23.56Boydellcaptnoord: used to have guitars
20:23.59Boydellgot rid of them
20:24.00captnoordwhat do ya play? funk.... or more rock..
20:24.05captnoordbass is nice
20:24.11Boydellmore rock
20:24.16Boydellheavey rock
20:24.17Boydelllol
20:24.18adamwis very good at fake drums
20:24.24Boydelladamw: me too :P
20:24.27captnoordhehe... nice!!!...
20:24.33adamwBoydell: ahh, not the REAL fake drums though I bet
20:24.33Boydelland OK on real drums
20:24.34makkonenchamonix: it'll probably be good for me to build them myself.
20:24.48adamwBoydell: http://en.wikipedia.org/wiki/DrumMania
20:24.51captnoordI simply can't drum....
20:24.58captnoordnot fake or real...
20:24.59chamonixI agree, learning by doing is always better ;)
20:25.00captnoordI suck
20:25.06*** join/#htc-linux gnutoo_ (~GNUtoo@host230-159-dynamic.51-79-r.retail.telecomitalia.it)
20:25.15adamwcaptnoord: on the other hand, I sing *exactly* like a drummer
20:25.15adamwheh
20:25.31captnoordstacado..
20:25.37adamwbadly
20:25.42captnoordloooooool
20:25.45adamw:P
20:25.52Boydelladamw: i should set my rock band drums up like that
20:25.56adamwfirst rule of being in a band: never turn on the drummer's mic
20:25.56captnoordlemme see if I got some crap around
20:26.02adamwer, vocal mic, that is.
20:26.04*** join/#htc-linux cr2_ (~cr2@ip-109-85-95-173.web.vodafone.de)
20:26.11chamonixmakkonen: if you have problems with pub/privkey just wave as I would like to extend the troubleshooting section.... ssh-keygen stuff tends to be tricky sometimes
20:26.20adamwBoydell: i've spent somewhere north of $4,000 on that game in the last few years
20:26.27makkonenwill do
20:26.28adamwi could've bought two drum kits and a lot of lessons with that, heh
20:26.30Boydell:O
20:26.37Boydelladamw: what is WRONG with you
20:26.43adamwjapanese arcade games, man
20:26.48adamwthey have crack-like addiction down to a T
20:27.01Boydellha
20:27.08adamwthey measure like every single *iota* of your performance and analyse it sixteen different ways
20:27.11BoydellI loive in a small town, no arcade games here
20:27.12adamwthere's always something to improve, heh
20:27.33Boydelladamw: its more ATV and field cars here :)
20:27.36adamwheh
20:27.42adamwvancouver's a very asian town
20:27.45adamwso we have awesome arcades
20:27.51Boydelladamw: building cars :) thats fun
20:27.52Boydellmeh
20:27.57BoydellI think its a waste he
20:27.59Boydell*heh
20:28.04adamwdoesn't drive
20:28.12adamwnever learned, dunno how, scares the crap out of me
20:28.17adamwi can screw up enough stuff in front of a computer
20:28.29adamwletting me throw two tons of steel around at 70mph just seems like an award-winningly bad idea :P
20:28.35Boydelladamw: !!!!!!!!
20:28.52phhadamw: got some dmesg ?
20:29.05adamwphh: oh yeah i was just letting the phone sit for a while in case the messages when it goes idle are interesting
20:29.06captnoordlol
20:29.13captnoorduse arcade games to improve your drumming
20:29.14Boydelladamw: gettin out on the lake with my snowmobile doing 100MPH, nothing like the feeling
20:29.24captnoordI wonder if I could use it to improve my singing
20:29.25captnoordhttp://deja.jails.nl/trashbin/no_way_to_know.ogg
20:29.26captnoordbleh
20:29.27captnoord:P
20:29.55makkonensnowmobile... 100mph.... <skin crawling>
20:30.26Boydell150 horse power in a 400 pound machine. its fun.
20:30.43adamwyou, sir, sound like a canadian
20:30.44captnoordbut then the machine is doing all the work...
20:30.46adamw(and that's a high form of praise :>)
20:30.52captnoordadamw: and i'm kinda dutch
20:31.01makkonenyeah. I ride a motorcycle. Only 125hp and 500lb, but... also makes my skin crawl.
20:31.15makkonens/Only/"Only"
20:31.29Boydellah. i want a bike. no time/no money for it
20:31.43adamwphh: http://fpaste.org/SnNT/
20:31.46Boydellrode dirt bikes all my life though. those are fun too.
20:31.52captnoordwe always want stuff we don't have... or can't have
20:32.04stinebdlike phh wish his rhodium
20:32.10captnoordyup
20:32.11adamwphh: i booted, let it sit for a minute so it hit the lock screen, unlocked, ran a terminal for no reason, telnetted in, turned the screen off with the button then on again, then let it sit for about five minutes.
20:32.12stinebdwish for*
20:32.14phhstinebd: I might get one :p
20:32.17adamwstinebd: he's getting one :P
20:32.26Boydellcaptnoord: its not that i CANT, im just being smart about cashflow right now :P
20:32.32phh[  414.425781] active wake lock PowerManagerService
20:32.32phh[  414.425872] active wake lock vbus_present
20:32.38phhadamw: you have to disconnect usb to get into suspend -_-'
20:32.48adamwphh: ah, i was gonna ask that then forgot :)
20:32.51adamwok, will do that then
20:33.05*** join/#htc-linux c2d (~Mike@port-92-200-114-238.dynamic.qsc.de)
20:35.55phhchamonix: http://husson.hd.free.fr/initramfs-updater.tgz
20:36.08phhthe script takes the path to the modules.tar.gz
20:36.16captnoordif you ever think about wanting a broken leg
20:36.17captnoordhttp://deja.jails.nl/Data/Shared/Pictures/x-rays-2009/leg-under-right/been004_small_safe.jpg
20:36.33captnoordbig badaboom
20:36.34captnoord:P
20:36.37phhadamw: anyway, you have an app that prevent the system from sleeping, see the "[  414.425781] active wake lock PowerManagerService"
20:36.57adamwi'll kill everything, then
20:37.38*** join/#htc-linux MrPippy (~pip@adsl-75-33-10-219.dsl.sndg02.sbcglobal.net)
20:38.16phhadamw: do you have some "media" on your sdcard ?
20:38.30phhthere is a background android process that scans it, and it might be painfull for that
20:38.45phhadamw: what do you get know with wifi btw ?
20:38.54adamwphh: haven't tried it with the new calibration yet
20:39.00phhok
20:39.06adamwthat's interesting - it's suddenly decided my battery is under 5%
20:39.34adamwok, i just killed the hell out of everything with atk
20:39.52phhyes we have really need a real battery driver
20:40.02adamwno, no media folder
20:40.16adamwheh, battery information claims it's at 201 mV
20:40.21adamwsomehow I doubt that :P
20:40.34phhwhy ? :p
20:41.23captnoordhttp://www.limn2o4.com/battery/charger2.jpg
20:41.33captnoordmental note for battery voltage...
20:41.41captnoordvoltage != power
20:41.41stinebdwoo
20:41.51phhcaptnoord: basic physics :p
20:41.55captnoordyup
20:42.03captnoordu * i = w
20:42.06captnoordwhich is power
20:42.21phhLiMn_2O_4 ? I didn't know that
20:42.31dcordescaptnoord, nice broken leg.
20:42.37phhI think they can't really make better (chemistry speaking) batteries than that -_-'
20:42.40phhwell they could use fluor.
20:42.50chamonixty phh.... just for my understanding as I have two initrd.gz right now and I don't really know the difference.... the initrd.gz produced will provide me with the mountpoint / in the nand as I have it right now, correct?
20:42.51captnoorddcordes: and its still bothering me... and it still a pain in tha ass
20:43.03adamwcaptnoord: yeah, I know, but phones always just monitor the voltage, because that's what drops over time in a battery.
20:43.13phhchamonix: yes, and it loads the modules from the modules-xxxxx.tar.gz so you can use GlemSom's kerneml
20:43.18captnoordadamw: please don't make me start....
20:43.29dcordesgnutoo_, sorry was afk. medical engineering
20:44.00phhadamw: I think at least wimo do it clever
20:44.02adamwcaptnoord: roger :)
20:44.06phh(integral of u*i*dt)
20:44.21*** join/#htc-linux GNUtoo (~GNUtoo@host230-159-dynamic.51-79-r.retail.telecomitalia.it)
20:44.42captnoordphh u isn't needed
20:44.48chamonixthat IS cool! ty phh.......
20:44.50GNUtoodcordes, ok
20:44.51captnoordbut for the people who doesn't have a clue...
20:44.54phhcaptnoord: r*i*i ?
20:44.57captnoordits the best way to explain
20:44.57captnoordnah
20:45.00captnoordi * dt
20:45.11GNUtoodcordes, what is it exactly? like  bio-engineering ?
20:45.14phhoh right. chemistry again.
20:45.21captnoordis how you calculate the amount of consumed current
20:45.30captnoordif you differenciate that
20:45.45dcordesGNUtoo, no more like technical. electrical engineering, physics.. only few bio lectures
20:45.50captnoordyou get the total amount of used power
20:45.56GNUtoook
20:46.10captnoordin the end you get a graph similar to the picture....
20:46.16GNUtoodcordes, so what's medical in it?
20:46.30stinebdyou guys should give up on this battery stuff and just make fuel cells for these phones
20:46.39dcordesGNUtoo, the name ;)
20:46.41captnoordwhich suck even more....
20:46.44phhstinebd: <3
20:46.46captnoordthey have compared to there size
20:46.50captnoorda to low voltage
20:46.58captnoordthey can produce more power
20:47.05captnoordbut they generate lower voltage
20:47.05phhstinebd: I have a 60Wh battery for my laptop in my backpack anyway :p
20:47.26stinebdlol 60Wh
20:47.51phhoh that makes me thing I have to get ie recharged
20:47.55captnoord24v 60wh
20:47.57phhbah it's too far.
20:48.10adamwhaha, now it's decided the battery's full again.
20:48.17adamwfastest charge ever! and without a charger plugged in!
20:48.21phhadamw: :))
20:48.33adamwcaptnoord: go ahead and explain THAT with your so-called science! ;)
20:48.42ReeferMattnesswireless charging adam
20:48.49captnoordadamw because the system is crap
20:48.51stinebdoh, well actually mine is 58Wh as of last full
20:48.54captnoorduses the wrong fieldz
20:49.02captnoordI know its using the temp field
20:49.04adamwi was joking, but never mind :)
20:49.06captnoordinstead of the correct one
20:49.07captnoord:P
20:49.11captnoordlolz
20:49.15phhcaptnoord: temp field ?
20:49.16phhhuhu
20:49.38captnoordhmm.. you know MAF filters?
20:49.40phhcaptnoord: btw have you documented anything ?
20:49.43captnoordmoving avarage
20:49.52captnoordphh no facts yet
20:50.06captnoordthey use 2 fields... 1 stores the old value
20:50.15captnoordof the messurement before the current one
20:50.21phhcaptnoord: chamonix already implemented that -_-'
20:50.29captnoordthen something is wrong
20:50.36phhimplemented but not commited
20:50.40captnoordlolz
20:50.41*** join/#htc-linux avengerpenguin_ (~sean@5ad1cd58.bb.sky.com)
20:50.41captnoordI see
20:50.44phhI was too lazy to check if it's correct or not
20:50.45captnoordthen i'm happy
20:50.50captnoordgimme
20:50.51captnoord:P
20:50.56captnoordI can't compile it
20:50.58captnoordbut I can check it out
20:51.15captnoorddcordes: have you asked that guy for me?
20:51.23GNUtoodcordes, ok
20:51.29adamwphh: http://fpaste.org/1ew6/
20:51.33adamwphh: i dunno why it's not complete, but anyway
20:51.39phhcaptnoord: http://pjottrr.no-ip.org:81/redmine/issues/show/9
20:51.41adamwphh: seems like it keeps sleeping and waking up again?
20:52.03phhadamw: ouch yes
20:52.22phhwhat's the debuging flag again mmm
20:52.27dcordescaptnoord, yes see query
20:52.31adamwphh: i guess that would explain the terrible battery life people see then
20:52.36phhyes.
20:52.43adamwwake/sleep/wake/sleep/wake/sleep every second is worse than just staying awake i expect heh
20:52.54phhadamw: oh every second should be fine.
20:53.06adamwoh yeah it's less than that even...
20:53.08phh:p
20:53.49adamwhehe
20:54.16phhadamw: echo 16 >  /sys/module/pm/parameters/debug_mask
20:54.21adamwthat's with everything showing in atk shut off, btw
20:54.31adamwso no non-default process should be waking it up
20:54.45phhwhen sleeping you'll get a flood of messages, the important one is SMEM_SMSM_INT_INFO
20:54.48adamwk
20:54.55phhtrying to sleep I mean :p
20:55.05captnoorddev = abs((l1-l2)*100/l1);
20:55.08captnoordhmmm
20:55.12captnoordwierd stuff dude
20:55.13captnoord:S
20:55.14chamonixlol php.... for usre it's not correct, it's just a low pass filter fixing the jumping reading when temp varies too fast
20:55.24chamonixs/usre/sure
20:55.33phhchamonix: want to be killed hum ?
20:55.54chamonixerrrrr
20:55.59chamonixno, not today :P
20:55.59phh(s/php/phh/.)
20:56.09captnoordchamonix: wouldn't that be
20:56.10phhcaptnoord: why ?
20:56.12chamonixrofl
20:56.13chamonixsry
20:56.14adamwshould really add a sekrit keyboard map for >
20:56.16phhcaptnoord: that's called relative error -_-'
20:56.17captnoord(i1 + i2) / 2
20:56.21captnoordI know
20:56.25chamonixdéformation professionelle, désolé
20:56.41phhchamonix: wrong charset is that too ?
20:56.51chamonixnah, I have ISO8859-15
20:56.57phhchamonix: no it's not :p
20:57.00chamonixsure
20:57.09avengerpenguin_anyone got any advice when getting this error when trying to compile kernel "__LINUX_ARM_ARCH__" is not defined"
20:57.11chamonixor did I forget to set my screen.....
20:57.13chamonixmaybe
20:57.14phhit looks like UTF8 casted as ISO-8859-15 coded to UTF8
20:57.30chamonixthen it's screen not being set right my irssi is
20:57.43phhcaptnoord: it might be called logarithmic differential or something like that too
20:57.43captnoordas now you are using the diff between 1 and 2 and use that to do magic calculations regarding i1
20:57.52captnoordhehe
20:57.57chamonixphh: it's like SMS in android ;)
20:58.03captnoordnah its better than nothing
20:58.08captnoordI like
20:58.12phhchamonix: nah it's better I can still understand that :p
20:58.17chamonixHeHeHe
20:58.49chamonixwell I've almost finished prefs for effects
20:59.26phhchamonix: you added sleep_effects ?
21:00.23chamonixnot yet, I haven't tried how it works yet.... do I just have to write there like in effects for it to be applied when sleeping?
21:00.40phhadamw: if you don't get extra messages, you might have to reboot with pm.debug_mask=16
21:00.41*** join/#htc-linux zachy (~george@85.193.4.18)
21:00.48phhchamonix: yup
21:01.03chamonixcool, I want it rotate when it sleeps :-D
21:01.14adamwphh: as a kernel param?
21:01.19phhadamw: yes
21:01.21adamwgotcha
21:01.25chamonixok, let's add that straight away
21:01.25adamwi'm trying it with the echo now
21:01.29phhchamonix: and does it handle mail ?
21:01.29adamwif it doesn't work i'll do the param
21:02.38chamonixphh: I still have a problem with mail/im/sms because I can't figure a way to end the effect...... theoretically it's just one setting more but I first want to add timer+repeat for SMS, then I'll add mail+im
21:02.52chamonixand then I guess I have a RC
21:02.53phhpfff
21:03.29chamonixphh: by tomorrow u'll have it with all notifications android provides
21:03.36chamonixand the BRICK perm :-D
21:03.42phhlol
21:03.45stinebdooh
21:04.16chamonixI'd like to know what the guy who invented that feature smoked that day
21:04.38phhcaptnoord: I don't understand why you get looping micropklt_lcd_ctrl errors
21:04.43phhit shouldn't be called at all on raph
21:04.49adamwphh: nope, no flood with the echo, I'll try with the param
21:05.10*** join/#htc-linux playdo (~playdo@p57B3D024.dip.t-dialin.net)
21:05.12captnoordphh I don't understand
21:05.26captnoordit shouldn't idd
21:05.26phhcaptnoord: didn't you say you had problems to boot because of micropklt_lcd_ctrl errors ?
21:05.29captnoordbut it does
21:05.35captnoordyup
21:05.36phhah ok
21:05.38captnoordthat message
21:05.47captnoordI mean that I don't understand how its possible
21:05.51captnoordif I do a search
21:06.01phhcaptnoord: well, android userland do one write to it
21:06.01captnoordthe function is used in several other things
21:06.03phhbut only one.
21:06.13captnoordnot in my world as it seems
21:06.13captnoord:S
21:07.36phhcaptnoord: maybe try commenting this line in rootfs /init
21:07.54captnoordphh I don't have a clue but would it be possible that that single user land fucks everything up
21:07.55captnoordk
21:07.58captnoordgimme
21:08.16phhdon't know
21:08.34phhchamonix: don't foget to make the sleep_leds stuff only optional :p
21:09.16*** join/#htc-linux Markinus (~Miranda@gtng-4db04e69.pool.mediaWays.net)
21:09.49phhhi Markinus
21:10.04MarkinusHi phh!
21:10.18adamwphh: okay, booted again, waiting for it to sleep
21:10.36adamwMarkinus: heya. phh helped me dump the calibration from my rhodium, it's different from either of the others we tried. having tried loading it yet though...
21:10.46captnoordphh what line?
21:10.50*** join/#htc-linux polyrhythmic (~charles@c-67-171-16-39.hsd1.wa.comcast.net)
21:11.00phhcaptnoord: echo 3 > /sys/class/htc_hw/test
21:11.02Markinusadamw: ahh, cool!
21:12.14adamwMarkinus: http://www.happyassassin.net/extras/rhodium-calibration , if you're interested
21:12.34phhadamw: I think cr2_ might be interested too :p
21:12.44Markinusphh: do you have some GPS stuff?
21:12.49phh-_-'
21:12.57stinebdhey look at that
21:12.59stinebdslide to answer works now
21:13.02phhoh right for this one I told you I would help you doing that
21:13.03phhstinebd: oO
21:13.12phhstinebd: strange
21:13.19Markinusadamw: ahh like this what I send you from the Samsung phone
21:13.23stinebdts calibration maybe?
21:13.37phhMarkinus: find / -name libgps.so
21:13.44phhstinebd: mmm might be
21:13.50phhMarkinus: and do a strings on the libgps.so
21:13.55Markinusphh: Ahh okay! :-)
21:13.57phhsee if it uses /dev/vogue_gps or libcrpc
21:13.58adamwphh: mmmff...even with the kernel param, there's no flood in dmesg after waiting for the phone to sleep
21:13.59phhoncrpc*
21:14.05stinebdi haven't tried it in a loooong time so i don't know when it started to work
21:14.08phhadamw: no new messages at all ?
21:14.14stinebdi'll still just use the navipad buttons anyway
21:14.27adamwphh: doesn't look like it at a quick glace, but i'll take a copy
21:15.49phh2^5=16 ?
21:15.54adamwMarkinus: it's different from the one you sent me, though, look at 'em side by side
21:16.01Markinusok
21:16.06captnoordphh yes
21:16.34captnoordits 32
21:16.46captnoord2^0
21:16.48adamwphh: http://fpaste.org/KEEC/
21:17.01adamwphh: you can see the pm.debug_mask=16 in the cmdline at the start...
21:17.24captnoord2^5 = 32
21:17.29adamwphh: i do see stuff like '[  259.030273] Suspending console(s) (use no_console_suspend to debug)' , do I need that too?
21:17.46phhadamw: not if you're using dmesg
21:17.49adamwk
21:17.51captnoorddoing that in hex is easier
21:17.54adamwyeah this is just dmesg > somefile
21:17.57captnoord0x10
21:18.10captnoord0x20
21:18.12captnoordwoeps
21:18.15captnoordmake the same mistace
21:18.16captnoordlolz
21:18.28phhyup its 32 not 16 -_-'
21:18.31adamwoh ok :)
21:18.32captnoordyup
21:18.35adamwnew boot coming then :)
21:18.38phho
21:18.39phhno
21:18.45phhtry with the echo 32 > blabla
21:18.48adamwk
21:18.49phhI'd like to know if this actually works.
21:21.52captnoordphh works
21:22.00phhcaptnoord: weird.
21:22.17captnoordI hexedited the rootfs lolz
21:22.23captnoordyup wierds
21:22.44*** join/#htc-linux lucx (~luc@89-115-128-35.cl.ipv4ilink.net)
21:23.41adamwphh: okay, waiting for it to sleep.
21:25.55phhadamw: still not ?
21:25.56adamwphh: ohhh yeah there we go. that works.
21:25.59phh.
21:26.30phhMarkinus: which wifi driver do you use in your donut release btw ?
21:26.37phhwl1251 or tiwlan ?
21:27.06Markinusphh: We have a problem with Topaz. If the one is sleeping, the call isn'T work. The device isn't waking up. There is no message about missing call or so. Only nothing. This is only working, when the USB cable is pluged in after start from winmo. Did you have a Idea??
21:27.12Markinuswl1251
21:27.18adamwphh: http://fpaste.org/I6OE/
21:27.22*** part/#htc-linux c2d (~Mike@port-92-200-114-238.dynamic.qsc.de)
21:27.23phhok, I'll make a donut with tiwlan I think
21:27.58phhMarkinus: the usb cable has to be still putted in for it to work I guess ?
21:28.31captnoordphh works.... I haven't got a clue how something like that can turn into a loop
21:28.32captnoord:S
21:28.40MarkinusYesm but if you pull it out and then again in, this isn'T work
21:28.43phh"[  373.402587] SMEM_SMSM_INT_INFO 0 0 4" means "oh god I got awaken by a gpio so you have to debug gpio guy"
21:28.59phhcaptnoord: I can't see why either.
21:29.08adamwoh yay. back to haretconsole and watch GPIOs? or is this some exciting other form of GPIO debugging?
21:29.12phhno
21:29.20phhecho 1 > /sys/module/gpio/parameters/debug_mask
21:29.26adamwalllrighty
21:29.39*** join/#htc-linux lucx (~luc@89-115-128-35.cl.ipv4ilink.net)
21:29.50adamwif i boot with usb connected, then can I connect usb to telnet in and disconnect it to test sleeping? will that be okay?
21:29.57adamwbecause that would be so much easier than rebooting all the fracking time
21:30.00phhsure
21:30.03Markinusphh: only after winmo start, maybe when the USB network connection is working
21:30.03adamwk
21:30.15phhMarkinus: just vbus detection actually.
21:30.22phhthere is a wakelock on vbus detection
21:30.54noisyzenMarkinus: I'm kinda here (working on somse other stuff) but are you saying that if you leave the phone plugged in on USB that it will not miss the calls?
21:30.58noisyzen(so i can test this later)
21:31.10Markinusnoisyzen: yes
21:31.12noisyzeni'm digging around in my own little eval world right now, but wanted to clarify.
21:31.41noisyzenMarkinus: okay, assuming i am not working late tonight, i will totally test and be available for testing
21:31.52Markinusphh: you mean the VBUS detection is blocking the wakup?
21:32.03phhMarkinus: no, the sleep.
21:32.14phhthe device won't sleep if vbus is present
21:32.26Markinusphh: ahhhhh,
21:33.03Markinusok, the the problem is that it isn't waking up if the phone is deep sleeping ..
21:33.03adamwphh: alright, waiting for sleep.
21:33.16phhadamw: me too :p
21:33.22phhMarkinus: try with pm.sleep_mode=2
21:33.34Markinusphh: ok
21:34.01adamwphh: hehe =)
21:34.12stinebduh oh
21:34.14stinebdtime to add more udelays
21:34.49phhstinebd: maybe, maybe not.
21:36.19adamwphh: here's a few loops of what I get with gpio debugging
21:36.20adamwhttp://fpaste.org/hdhi/
21:36.41phhadamw: also, do cat /proc/interrupts ; sleep 10;cat /proc/interrupts
21:36.50phhand if there is any device taking a lot of interrupts
21:37.23phhadamw: pfff I hate those gpio stuff
21:37.39adamwphh: interrupts: http://fpaste.org/VvwZ/
21:37.53adamwlooks like...gp_timer and vsync
21:38.20phhnone of them awakes the system from sleep
21:38.30phhthe problem is in an unhandled interrupt... yay.
21:39.18adamwphh: what else can I do?
21:39.32phhwait a second.
21:39.36adamwgotcha :)
21:39.42adamwwe can totally do this tomorrow if it's late for you and you're sick of it
21:39.45*** join/#htc-linux lalaleche (~jooprzol@ip70-189-79-143.ok.ok.cox.net)
21:39.46adamwi have work i'm supposed to be doing anyway
21:40.02adamwhas been sitting in front of the computer 14 hours a day lately, poking android for 12 and working for 2 :P
21:40.13phhlol
21:40.43phhok just one other.
21:41.06phhecho 63 > /sys/module/pm/parameters/debug_mask
21:41.58captnoord0b11111
21:42.08phhcaptnoord: I know :p
21:42.11adamwphh: then let it sleep again?
21:42.14captnoordhehe I know
21:42.15phhadamw: yes
21:42.17captnoord:P
21:42.17adamwkk
21:43.37phhgroumpf I really hate this pm debugging
21:44.52adamwholy shit, that's verbose
21:44.57phhkind of.
21:46.39adamwgonna have to reboot to get this one off...
21:47.30phhecho 0 > /sys/module/pm/parameters/debug_mask
21:47.32phhto remove it.
21:47.37adamwphh: http://fpaste.org/8wbz/
21:47.55phhargh
21:47.57adamwyeah i mean - i had to copy it to the sd card, and when i eject the sd card i always reboot (dunno if that's necessary but it feels like it should be)
21:47.57phhfucking swfi
21:48.21adamwbefore i was just pasting from scrollback, but that thing was huge...
21:48.53adamwseriously, though, you sound stressed, just take a break man :) it'll wait
21:48.57phhadamw: echo 55 > /sys/module/pm/parameters/debug_mask
21:49.05adamwkk
21:49.18phhdon't worry :p
21:49.38adamwi think it's like matt said...now you're getting a rhodium you want to fix it, hehe :P
21:52.14adamwoh wow, android even saves command history across reboots. that's nice and civilized.
21:53.56phhadamw: I'm even trying to get backlight on/off working :p
21:53.59phhbut it seems weird
21:54.04adamwhuh. that's interesting. now i'm holding it - it keeps vibrating
21:54.09adamwwhile it's in 'sleep'
21:54.17adamwlike whatever event is going on is triggering a vibrate
21:54.41phhoh yes
21:54.45phhthat's the second bit of pm.sleep_mask
21:54.48phhdon't take care of that
21:54.50adamwoh k
21:56.01adamwphh: http://fpaste.org/3ZTw/
21:56.06adamwthat's with 55 and gpio at 1
21:56.27*** part/#htc-linux zachy (~george@85.193.4.18)
21:56.43*** join/#htc-linux MethoS- (~clemens@134.102.106.250)
21:58.01phhadamw: hum ok, too hard to read it today.
21:58.08adamwphh: np np, like i said, go to bed :)
21:58.22phhI finish translating the logs mastermelin gave me first
21:58.45adamwphh: I will upload that log somewhere permanent for you because fpaste expires after an hour
21:58.50adamwphh: or should I just email it?
21:59.03phhas you want
21:59.06phhmy mail is phhusson@free.fr
21:59.32adamwok
21:59.44phhI read logs anyway
21:59.51phhso you can paste an url here
22:00.45adamwi'll email it
22:01.34phhyay. we've got a microp 0x84 command
22:01.41adamwphh: sent
22:01.43phhand cr2 said there was no command > 80 :p
22:02.24phhINT_CTL stuff, I'd bet keyboard position is handled through that.
22:03.58ReeferMattnessoh god i hope so phh, that drives me CRAZY  ;)
22:04.39phhso we have an unknown I2C device
22:04.41phhcoool
22:05.26Markinusphh: maybe sound ??? ha! ;-)
22:05.36phhMarkinus: no for rhod's backlight
22:05.54adamwphh: oh, the other thing that i guess needs figuring out for rhodium is the keyboard open / close
22:05.59adamwi don't think anyone's figured how that works yet
22:06.09phhthey use both 0xcc>>1 (microp) and 0x70>>1 (unknown) devices for that
22:06.11*** join/#htc-linux makkonen (~makkonen@cpe-66-69-229-9.austin.res.rr.com)
22:06.17adamw(though when I was monitoring gpios in haretconsole yesterday it seemed to trigger an event like a keyboard press)
22:06.23phhadamw: that's what I was talking about with the "keyboard position" :p
22:06.26adamwahh :)
22:06.49adamwit'd be cool if you could fix that for sure
22:07.03adamwbtw, is it just an android bug that lots of apps seem to have trouble switching landscape -> portrait?
22:07.11adamwpulling the stylus out always switches portrait -> landscape
22:07.24adamwbut putting it back in doesn't seem to switch back, unless you go to the home screen - then it does
22:07.32ReeferMattnessyup, I can second that bug
22:07.37adamw(and when you go back to an app, it'll be portrait)
22:07.51phhchamonix: oh ! if you know how to unlock screen, please do something for the stylus out detection :p
22:08.18phhI already searched but no luck
22:08.28adamwanyway thanks for your efforts phh
22:08.39adamwanything you need me to provide just ask, sorry i can't do more of the actual work myself :(
22:08.44adamwhope your rhodium gets there soon
22:09.10adamwi'll try the wifi with the new nvram.txt but i don't honestly think it'll help, i think we decided it was failing before it even tries to load firmware / calibration didn't we?
22:09.37phhadamw: I did, but maybe I didn't looked at code right
22:09.48adamwkk, i'll give it a try anyhow, can't hurt
22:10.10adamwoh, i tried building it with the slightly updated nexus one code we talked about the other day
22:10.19adamw(which seems to try and make the error checking a bit more granular)
22:10.23adamwgets the exact same error
22:10.43Markinusphh: maybe we need a vreg for the bcm chip. There is nothing about this in the wiki . ..
22:10.55phhMarkinus: cr2 said that none is needed
22:11.03Markinusphh: ahh, ok
22:11.14*** join/#htc-linux kvaster (~kvaster@live.bn.by)
22:11.21adamwMarkinus: the nand dump is at http://www.happyassassin.net/extras/plouf2.zip if it's of any use to you
22:11.35adamwthat's what phh got the nvram.txt out from
22:12.17phhMarkinus: seems to be at the same address as for raphael, see raphaelnand page on wiki
22:14.32Markinusphh: ahh, there a did not looked in yesterday . .
22:14.59phhMarkinus: setlcd 4 in haret is for lcd on and setlcd 1 for lcd off right ?
22:15.06Markinus4 is off
22:15.43phhok.
22:15.43phhso it's rrrrrreeeeeeaaaaaallllllllyyyyy weird.
22:15.43*** join/#htc-linux Boydell (~Boydell@69.49.58.28)
22:15.44Markinusand 1 or 0 is on
22:15.47phhor it's damn logical ?!?
22:16.21adamwlogic is overrated
22:16.24phh:p
22:16.24Markinus:)
22:16.45chamonixphh: I've read lots on screen stuff but noting on buttons/stylus... I don't think that's detectable from android..... is stylus exposed like a dpad key or a keyboard key?
22:16.49phhadamw: you know how to trace gpios/memory with haret ?
22:17.06phhchamonix: not exposed yet, since I don't know how to properly expose it
22:17.18phhchamonix: just take care of the "unlock" part :p
22:17.28adamwphh: i got the idiot's guide - WATCH GPIOs 5, poke some stuff, look at what you get
22:17.51adamwoh, shit, just remembered I have to flash this diamond and pack it up and send it off to the guy who bought it...
22:18.00Boydelllmfao
22:18.12phhadamw: addlist mmutrace 0xb2300000 0x20
22:18.19phhtrace that when opening/closing keyboard
22:18.22phhtime to sleep.
22:18.31adamwphh: alright i'll give that a shot
22:18.33adamwnight
22:18.38Markinusphh: gnight!
22:18.45chamonixnite phh
22:21.32Boydellbah
22:21.41Boydellmy batt life is TERRIBLE
22:24.06adamwchamonix: android definitely detects the stylus somehow
22:24.17adamwchamonix: because on rhodium, ejecting / replacing stylus triggers landscape / portrait switch
22:24.56*** join/#htc-linux GNUtoo (~GNUtoo@host230-159-dynamic.51-79-r.retail.telecomitalia.it)
22:25.09Boydelladamw: check getevent?
22:25.13Markinusadamw: this is a GPIO
22:25.27adamwphh: sent that mmutrace by email.
22:27.35makkonenwhat's the short version of what to do to boot off an ext2 partition?
22:28.01Boydellthere is no short version?
22:29.34*** join/#htc-linux lenix (~irc@lenix.de)
22:29.56Boydellcreate partions, mount ext2 partion, copy /system/* to ext2 partition, mv system.sqsh to /sdcard/backupsystem/installedsystem/sqsh, chmod 777 dbus.conf
22:30.09Boydelli forget where dbus.conf is though one sec
22:30.11stinebdlooks pretty short to me
22:30.26Boydellwell it takes a few minutes
22:30.37Markinusadamw: did you watch GPIOS/IRQS with haret on slide in/out?
22:30.40Boydelland its a pain to do when a new system.sqsh comes out
22:31.39stinebdthis ext2 partition is on the sd card?
22:31.47adamwMarkinus: phh asked me for mmutrace, i emailed it to him
22:31.48Boydellchmod 777 /mnt/etc/dbus.conf
22:31.49Boydellyah
22:31.51makkonencopy over some of the stuff from the vogue rootfs that autocopies.
22:31.56adamwMarkinus: watching gpios it seemed to give a keyboard-style gpio event
22:32.01adamwMarkinus: i can send you the mmutrace if you like
22:32.30adamwMarkinus: http://fpaste.org/COCC/
22:32.40adamwthe first set of mmutrace events showed up on opening keyboard, second set on closing
22:32.42Markinusadamw: ahh, okay . . . interesting . . take alook
22:32.49*** join/#htc-linux docc (~docc@static.88-198-83-83.clients.your-server.de)
22:33.29Boydellanyone seen that massive storm in the states right now?
22:33.30adamwMarkinus: quote from phh earlier - <phh> they use both 0xcc>>1 (microp) and 0x70>>1 (unknown) devices for that
22:34.28Boydellhttp://www.accuweather.com/
22:34.34Markinuswasn't this for not for backlight?
22:34.36Boydellscroll down and look at the radar
22:34.41MarkinusThis is keaxboard or ont?!
22:34.44adamwMarkinus: i think we were onto keyboard by then
22:34.58stinebdBoydell: that thing is heading right for me
22:35.12Boydellstinebd: where you at?
22:35.16stinebdeastern pa
22:35.21stinebdthey only want about a foot of snow here though
22:35.24adamwMarkinus: or it might be backlight
22:35.25adamwMarkinus: heh
22:35.30adamwMarkinus: best wait for phh for that one :)
22:35.37adamwMarkinus: that dump I just sent you is definitely keyboard, though.
22:35.39Boydellstinebd: want? or predicting?
22:36.06stinebdBoydell: that's what they're predicting
22:36.13Boydellah
22:36.16Boydellthats not enought
22:36.19Boydell*enough
22:36.25MrPippya random patch for anyone looking at pm: "[ARM] msm: idle: add memory barriers, cache flush, TLB invalidation" https://www.codeaurora.org/gitweb/quic/le/?p=kernel/msm.git;a=commitdiff;h=c307b720e772c461b3fa02c3199308ee29aad4ee
22:36.31stinebdnobody actually WANTS a foot of snow with the way people drive here
22:36.38Boydellha
22:36.46BoydellI want like 3-4 feet right now
22:36.49BoydellI have none
22:40.41Markinusadamw: yeah, the is much I2C communication
22:49.17*** join/#htc-linux M1DLGpc (~M1DLGpc@bb-87-81-252-83.ukonline.co.uk)
22:53.07avengerpenguin_couple of quick questions if someone can help, 1. am I right in thinking that a defconfig has to be built rather than just using cp txt .config
22:53.42Boydellnope
22:53.48makkonenmake ARCH=arm htc_msm_android_defconfig
22:53.55Boydellwell, that.
22:53.58Boydellbut i think he means
22:54.03Boydellruns the config
22:54.07Boydell*run
22:55.02avengerpenguin_dont need to run it, I have a defconfig as a text file that cr2 sent me, but it fails during compile but until now I thought it was possible to copy and rename to .config
22:55.28Boydellhave to compile it
22:55.30Boydellor w/e
22:55.33Boydell"make" it
22:55.48makkonencopy it over to .config, and then make ARCH=arm menuconfig, maybe?
22:55.57avengerpenguin_how can I do that from a txt file?
22:56.53makkonenI feel like it should fix it during the regular make, but maybe it doesn't.
22:57.08makkonenavengerpenguin_: I don't really understand what you're asking.
23:00.57avengerpenguin_sorry I am not being very clear, will try and explain a bit better, I am trying to make a .config file from a txt file I have, I have tried converting the file by "cp config.txt .config" this renames my txt to .config however it will not compile and I cannot run the command "make ARCH=arm"
23:03.54*** join/#htc-linux jumoit (~samuel@121.77.87.145)
23:07.26*** join/#htc-linux M1DLGpc (~M1DLGpc@bb-87-81-252-83.ukonline.co.uk)
23:16.20IceBonephh?
23:16.29IceBoneBah, gone already.
23:23.10makkonenavengerpenguin_: does the txt file look like a .config file? i.e. it says at the top that it's an autoconfigured config file and not to edit it? because if so, unless it's somehow corrupted, that should work.
23:23.14makkonen...bad timing.
23:24.51*** join/#htc-linux Wout (~wout85@s55927d21.adsl.wanadoo.nl)
23:27.26*** join/#htc-linux M1DLGpc (~M1DLGpc@bb-87-81-252-83.ukonline.co.uk)
23:38.11*** join/#htc-linux |Jason8| (JayAte@2001:470:1f07:714::15e)
23:39.11*** join/#htc-linux swc|666 (~infidel20@unaffiliated/swc666/x-4934821)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.