IRC log for #htc-linux on 20110123

00:01.27smokuphh, IIRC PVR is tile based, and geForce is not
00:01.54phhsmoku: I meant only performance-wise
00:02.04smokuoh :)
00:04.05Alex[sp3dev]damn.. i hate the developers of linux network.. no other subsystem gets rewritten from scratch so often.. if you take, say, framebuffer driver or input driver from an old kernel, it either compiles as is or requires few changes.. but network api breaks just about every release. awesome
00:06.10fakkerAlex[sp3dev], tegra2 rocks
00:06.17*** join/#htc-linux Amander (~admin@adsl-99-58-216-14.dsl.hstntx.sbcglobal.net)
00:06.23AmanderBazGee
00:06.45*** join/#htc-linux IB2667-004 (~ocm@189.152.63.147)
00:06.58BazGeeyes
00:08.48fakkerAlex[sp3dev], there's a few in EU - Germany/Netherlands have got POV Mobii (they're the places i've read of having it) in UK we got Advent Vega
00:08.52fakkersame device
00:09.08Alex[sp3dev]lucky bastards
00:09.08fakkerit's stupid fast
00:09.11fakkeri got one bro
00:09.25fakkerhdmi out
00:09.32Alex[sp3dev]who cares for hdmi
00:09.35fakkerme
00:09.51[Rapunzel]no
00:09.56[Rapunzel]missing documentation
00:09.59[Rapunzel]awful code
00:10.03[Rapunzel]awful system design
00:10.11fakkeri don't care about that shit
00:10.12Alex[sp3dev]yeah. their code is scary
00:10.16[Rapunzel]like no user space drivers in linux
00:10.19fakkerif i can see my stuff on TV, i'm happy
00:10.22[Rapunzel]it sucks
00:10.50fakkerwhat do you know?!
00:10.50Alex[sp3dev][Rapunzel]: O RLY? NO USERSPACE? there's even support for userspace interrupts
00:10.54fakker:p
00:12.27Alex[sp3dev]phh: have reverted to stock msm_ts from 35 (the one without autocalib and quirks).. seems like cpu usage has dropped. at least i have not managed to make it more than 65%.. which is rather a good result
00:12.35[Rapunzel]no
00:12.39[Rapunzel]who need user space interrupts
00:12.57[Rapunzel]what about using IOCTL fro user mode drivers?
00:13.09Alex[sp3dev]what's the problem with ioctls?
00:13.18[Rapunzel]so I can open / ioctl / close such device
00:13.26Alex[sp3dev]you can
00:13.34[Rapunzel]how?
00:13.55[Rapunzel]as well suck fucked drivers like msm_fb
00:13.58Alex[sp3dev]uhm.. grep it ;). even qualcomm uses ioctls in their camera library
00:14.13[Rapunzel]they use ioctl to kernel driver
00:14.14Alex[sp3dev]and who fucked msm_fb? it was qcom, right?
00:14.14[Rapunzel]I am sure
00:14.18[Rapunzel]I mean
00:14.26phh[Rapunzel]: and still, camera driver is userland.
00:14.36[Rapunzel]user space program -> ioctl -> user space driver
00:14.50Alex[sp3dev]what's the problem again?
00:14.58[Rapunzel]how to implement this?
00:15.24Alex[sp3dev]using ioctl syscall?
00:15.50[Rapunzel]dunno I don't find examples
00:16.19Alex[sp3dev]i'll try to find one.. and i can bet that 'Advanced Programming in Unix environment' should have one
00:16.38[Rapunzel]try...
00:17.10[Rapunzel]in kernel u register sysfs item
00:18.56[Rapunzel]I need register such object from userspace
00:23.37[Rapunzel]lol
00:23.38[Rapunzel]http://lists.freedesktop.org/archives/dri-devel/2010-July/001824.html
00:25.07Alex[sp3dev]this has been available for quite a while.. but generally the code that is designed solely to support proprietary userspace libraries is never accepted to mainline
00:25.31[Rapunzel]yeah
00:25.54[Rapunzel]but it's nice. because no body allow them linuxing code
00:26.15[Rapunzel]I cleared shit from msm_fb for 2.5 hours
00:27.13*** join/#htc-linux Untouchab1e (~Untouchab@cm-84.215.29.184.getinternet.no)
00:27.15Alex[sp3dev]some days ago the V4L maintainers NAKed qcom camera patch. they've agreed that the driver will be accepted if it will allow to get some picture (even of poor quality, without proprietary image processing algorithms) without userspace library. qcom developers said that they'd love to do so, but it will depend on the decision of their lawyers
00:27.42[Rapunzel]anyway
00:27.44[Rapunzel]did u found
00:27.49[Rapunzel]about user space drivers
00:27.51[Rapunzel]with IOCTL
00:28.17[Rapunzel]?
00:28.39Alex[sp3dev]nope. seems like you can't install an ioctl handler from userspace.. although i should say it's not needed because in userspace you can have more advanced IPC solutions like signals, sockets, dbus etc
00:28.44[Rapunzel]heh
00:28.48[Rapunzel]I though so
00:28.51[Rapunzel]it sucks
00:29.01Alex[sp3dev]but why ioctl when there are signals and sockets?
00:29.05[Rapunzel]IPC is too complex
00:29.13[Rapunzel]IOCTL it's simple solution
00:29.44Alex[sp3dev]you can use signals..
00:29.48[Rapunzel]I have in different processes shared libraries, and I need use own manager for handling actual stuffs.
00:30.40Alex[sp3dev]you can install the handler for SIGUSR1 or SIGUSR2 in your daemon. then, you can send the USR1 signal to the daemon and pass your ioctl and, say, pointer to the data via the signal argument
00:30.49[Rapunzel]hm
00:31.22[Rapunzel]seems better move stuffs to kernel
00:31.38Alex[sp3dev]what actually do you want to do?
00:31.54[Rapunzel]need output buffers to screen
00:32.18[Rapunzel]also I though I can use exa from X11 to manage framebuffer memory, but they are also in other process
00:32.22[Rapunzel]stupid :(
00:32.49Alex[sp3dev]are you implementing opengl?
00:32.58[Rapunzel]ya
00:33.06Alex[sp3dev]did you take a look at mesa then?
00:33.24[Rapunzel]ya. mesa needs DRI from X11
00:33.30Alex[sp3dev]yes
00:34.03[Rapunzel]new kgsl have some dri support, but I don't think it can be used for 3D
00:34.55Alex[sp3dev]aren't qcom going to release opengl for chromium tablets? or they'll be using adreno300 or newer then?
00:35.09[Rapunzel]I think only new...
00:35.15[Rapunzel]but they can be compatible also
00:36.54[Rapunzel]anyway meego is buggy and unfinished yet
00:37.05[Rapunzel]and the main thing which is really funny
00:37.11[Rapunzel]NOBODY KNOWS ANYTHING :D
00:39.14Alex[sp3dev]ok. i'm going to bed ;)
00:39.28[Rapunzel]heh
00:39.30*** part/#htc-linux smoku (~spectrum@xkh0g2.infr.xiaoka.com)
00:39.35[Rapunzel]+1 to epic fail
00:39.36[Rapunzel]LD
00:39.38*** part/#htc-linux [Rapunzel] (~opera@nat004-252-205-109.tvoe.tv)
00:43.48*** join/#htc-linux kcrazy (~kcrazy@117.79.235.246)
01:22.09*** join/#htc-linux ftoz (~root@gprs9.vodafone.cz)
02:00.29*** join/#htc-linux Regulator (~duffman@c-67-162-193-231.hsd1.ar.comcast.net)
02:23.52*** join/#htc-linux arrrghhh (~arrrghhh@c-71-237-40-111.hsd1.co.comcast.net)
02:28.30*** join/#htc-linux gauner1986 (~Miranda@p508C75C2.dip.t-dialin.net)
02:31.27fakkerfu gauner1986
02:32.10gauner1986how was the party fakker?
02:32.25fakkerwhat party?
02:32.27fakkeri played pool
02:32.35fakkerand ate mexican food
02:32.51gauner1986also nice
02:33.10gauner1986i never ate mexican food :P
02:33.17fakker;]
02:33.18fakkerit's nice
02:49.29*** join/#htc-linux WisTilt2 (~wisgreg@wireless248.wirelesstcp.net)
02:51.53arrrghhhyo!
02:51.59arrrghhhWisTilt2, how you doin
02:52.34WisTilt2hey there arrrghhh, as my son always says - C'mon!
02:54.50arrrghhhha
02:55.17*** join/#htc-linux plupke (~chatzilla@77-234-80-72.pool.digikabel.hu)
02:56.02WisTilt2im fine tuning the delay for panel power up so the touch unlock is no longer issue so if you want to try a test kernel in a bit ill put it up.
02:56.36stinebdWisTilt2: please test the new rootfs and see if it has any effect on system_server
02:56.40stinebdalso hi
02:56.49WisTilt2hey stinebd
02:57.28arrrghhhWisTilt2, ready when you are
02:58.44WisTilt2stinebd will do.  i added some low level hooks to a couple buttons that might aid in tracing that sod hanging the system also.  now i just need to get it to happen so i can see if the hooks work:)
02:59.18arrrghhh"Android want us to connect as GSM while we are a CDMA phone !" - i see that in the logcat -b radio lol
03:02.37stinebdWisTilt2: arrrghhh says system_server is unaffected so expect the same behavior
03:03.01arrrghhhyup, complete a call and it clears up.
03:03.16arrrghhhi'm seeing a lot of GSM messages in my logcat -b radio... seems wrong to me.
03:06.59arrrghhhwell i can see that it's not requesting the correct command when it tries to get my location based on cell-towers...
03:07.37*** join/#htc-linux nineX_ (~nunya@75-132-13-29.dhcp.stls.mo.charter.com)
03:10.10arrrghhhWisTilt2, these mdp_dma: busy and mdp_irq already on 4 4 - i think acl just said ignore them but there's a boatload in my dmesg - what are they?
03:13.17WisTilt2stinebd: same problem.  turned on netloc and still got pegged cpu 3 boots in a row.
03:13.22*** join/#htc-linux kubi (~Adium@miranda/user/kubi)
03:14.34WisTilt2arrrghhh: i never looked at that but wondered the same thing.  see it numerous times in a row sometimes, usually only 4 times though.
03:25.04*** join/#htc-linux localhost (~Chris@cpe-76-188-107-188.neo.res.rr.com)
03:34.13arrrghhhhrm... ok
03:34.47arrrghhhwell whenever your radio guy gets some free time, i have some great RIL logs for him to look at!
03:41.16*** join/#htc-linux MacDrunk (~marper@201.164.175.17)
03:47.26WisTilt2F22 you around?
03:48.01F22what's up WisTilt?
03:48.50WisTilt2hey, when you made those kbd layout changes did the underscore and ! get removed possibly?  they no longer work i just noticed.
03:49.12F22you're using my rootfs?
03:49.41WisTilt2no actually now that you say that, i just changed to stinebd's latest one to test
03:49.46F22my changes haven't been committed yet.
03:49.56arrrghhhso on his latest the _ and ! don't work?
03:50.00arrrghhhlol let me try
03:50.07WisTilt2im pretty sure it worked the other day so maybe its that rootfs
03:50.38F22tilt2 kbd is different arrrghhh. no number row.
03:51.25arrrghhhreally?
03:51.30arrrghhhsadface
03:51.45arrrghhhis it still 5-row...?
03:52.00F22yep, still 5 row.
03:52.05arrrghhhweird!
03:52.24F22at&t prefer to superimpose a numpad over the letters.
03:52.31F22rather then have a dedicated number row.
03:52.33arrrghhhmy mogul had that
03:52.37arrrghhhi like the dedicated row
03:52.50arrrghhhseems no new phones have a dedicated row
03:53.13F22none of the android phones do, they only have 4 rows.
03:53.27arrrghhhindeed
03:53.30F22i think the new htc win7 phone will have 5 rows.
03:53.41arrrghhhhence the reason this port must be completed :P
03:53.58*** join/#htc-linux BHSPitMonkey (~stephen@unaffiliated/bhspitmonkey)
04:14.56*** join/#htc-linux GNUtoo|laptop (~gnutoo@host19-55-dynamic.180-80-r.retail.telecomitalia.it)
04:20.33NeoMatrixJRReally?  I liked the numpad overlay better.  Seemed more natural dialing to me.
04:20.45NeoMatrixJR~seen glemsom
04:20.48aptglemsom <~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk> was last seen on IRC in channel #htc-linux, 70d 10h 55m 23s ago, saying: 'Sweet! :P''.
04:21.06arrrghhhi saw him join the other day in the logs, but didn't say anything :/
04:21.21NeoMatrixJRmust not have been this channel.
04:21.33arrrghhhthat just shows the last thing you said methinks
04:21.43NeoMatrixJRah.
04:21.54NeoMatrixJRI'm just wondering if he's still planning on bringing his auto-build back online.
04:22.10NeoMatrixJRnot that it matters to me at the moment.  I'm running the camera build
04:22.11arrrghhhyea... i didn't think it would be down this long.
04:22.23arrrghhhdid you see zoom works?
04:22.37arrrghhhjerome is a madman.
04:23.27NeoMatrixJRsaw the post.  haven't tried it yet.
04:23.43NeoMatrixJRjust cleared my test card and upped it to FRX04
04:24.18arrrghhhyea and a commit that will make DIAM users happy.  one guy said his battery is now acting all wacky...
04:24.19NeoMatrixJRnot sure if I grabbed yesterday's rootfs or todays :( I'll have to check that later
04:24.23arrrghhhhaha
04:24.37arrrghhhtoday's didn't really seem to make any difference unfortunately.
04:24.46NeoMatrixJR:'(
04:24.51arrrghhhyea.
04:31.35NeoMatrixJRI was hoping to catch bzo sometime.  I know he gave up on BT until .35 but I was wondering if he ever got the init figured out at least....
04:46.53*** join/#htc-linux theredundant (~thereduda@27-32-116-207.static.tpgi.com.au)
05:21.58*** join/#htc-linux DuperMan (Duper@93-172-191-26.bb.netvision.net.il)
05:23.06*** join/#htc-linux Termana (~bradley@122.151.73.211)
05:37.50WisTilt2arrrghhh: haven't forgotten you, just working out some other timing issues in the panel.
05:48.08arrrghhhha no worries dude.  i think i'm going to hit the sack, i'll check the logs in the morning.  if you say there's something to grab & it's good enough to throw up for testing, i'll bump my threads with the newest test kernel.
05:48.16arrrghhhanything else you're workin on other than the touch to wake bug?
05:49.03WisTilt2wake bug and some additional power saving areas in panel
05:49.13arrrghhhnice
05:49.41arrrghhhwell let the room how it goes, i'll read it eventually ;)
05:49.49arrrghhhtake it easy man
05:50.00WisTilt2will do, catch ya tomorrow, nite
05:54.49NeoMatrixJRHey WisTilt2, what ever happened with the button LEDs I tested for you long ago?
05:56.19WisTilt2on back burner.  finished the kbd backlight first since it seemed to be the most requested fix needed. button leds will probably be next after i commit this panel collapse.
05:58.57*** join/#htc-linux Kasjopaja23 (~Tina@p579C176B.dip.t-dialin.net)
06:22.19*** join/#htc-linux Wally (~wally@c-75-73-178-169.hsd1.mn.comcast.net)
06:43.48*** join/#htc-linux netson-ubuntu_ (~netson-ub@125.161.211.96)
06:50.59*** join/#htc-linux KrazyDaw (4c672cdc@gateway/web/freenode/ip.76.103.44.220)
07:01.23*** join/#htc-linux ManWithAPlan (~ManWithAP@cpe-66-74-69-200.socal.res.rr.com)
07:54.52*** join/#htc-linux kiozen (~kiozen@rgnb-5d865072.pool.mediaWays.net)
08:11.45*** join/#htc-linux DuperMan (Duper@109-186-37-89.bb.netvision.net.il)
08:18.39*** join/#htc-linux kvaster (~kvaster@109.126.153.145)
08:19.56*** join/#htc-linux pH5 (~ph5@e178213115.adsl.alicedsl.de)
08:21.27*** join/#htc-linux balans (~barry@82-170-217-205.ip.telfort.nl)
08:29.16*** join/#htc-linux Termana (~bradley@122.151.104.213)
08:36.23*** join/#htc-linux rick__ (4b49c333@gateway/web/freenode/ip.75.73.195.51)
08:36.31rick__<PROTECTED>
08:36.52rick__<PROTECTED>
08:37.32rick__its what it says when i run hariet
08:38.04*** join/#htc-linux tailormoon (bestirc@vpn-178-217-162-194.didan.com.ua)
09:13.47*** join/#htc-linux Jhinta (~Jhinta@s5592f326.adsl.wanadoo.nl)
09:23.22*** join/#htc-linux onen|openBmap (~quassel@vbo91-1-89-87-201-85.dsl.club-internet.fr)
09:25.51*** join/#htc-linux kryst666 (4f7501da@gateway/web/freenode/ip.79.117.1.218)
09:27.10*** join/#htc-linux eR^zeRa` (~zzeratul@88.103.98.168)
09:31.57*** join/#htc-linux Andreyxxl[HD2EU] (~Andreyxxl@89.32.146.153)
09:36.34*** join/#htc-linux Monzi (5ff4e607@gateway/web/freenode/ip.95.244.230.7)
10:01.48*** join/#htc-linux isikil (52330a8e@gateway/web/freenode/ip.82.51.10.142)
10:05.33*** join/#htc-linux imilka (~kvirc@95-25-221-167.broadband.corbina.ru)
10:15.49*** join/#htc-linux cedesmith (~chatzilla@188.173.15.86)
10:21.04*** join/#htc-linux rob_w (~bob@ppp-188-174-24-241.dynamic.mnet-online.de)
10:22.32*** join/#htc-linux balans (~barry@82-170-217-205.ip.telfort.nl)
10:23.11*** join/#htc-linux onen|openBmap_ (~quassel@vbo91-1-89-87-201-85.dsl.club-internet.fr)
10:35.27*** join/#htc-linux ViLkA (ViLkA@87.110.169.93)
10:35.32*** join/#htc-linux ViLkA (ViLkA@87.110.169.93)
10:37.38*** join/#htc-linux Termana (~bradley@122.151.88.231)
10:38.31*** join/#htc-linux GNUtoo|laptop (~gnutoo@host19-55-dynamic.180-80-r.retail.telecomitalia.it)
11:02.30GNUtoo|laptoptorgrimt, hi
11:11.36*** join/#htc-linux BabelO (~fcr@AMontpellier-554-1-103-242.w92-145.abo.wanadoo.fr)
11:11.36*** join/#htc-linux BabelO (~fcr@unaffiliated/babelo)
11:28.13*** join/#htc-linux Phally (~Phally@d28072.upc-d.chello.nl)
11:28.37*** join/#htc-linux dan1j3l (~quassel@93-138-34-131.adsl.net.t-com.hr)
11:33.45*** join/#htc-linux onen|openBmap (~quassel@vbo91-1-89-87-201-85.dsl.club-internet.fr)
11:35.37*** join/#htc-linux tailormoon (bestirc@vpn-212-87-172-170.didan.com.ua)
12:08.16*** join/#htc-linux dcordes-lib (83bc694b@gateway/web/freenode/ip.131.188.105.75)
12:08.29dcordes-libhi
12:10.36*** join/#htc-linux Rajko (~Rajko@wan.rajkonet.info)
12:11.52dcordes-libit's good to see the [Rapunzel] progress on leo accelerated display driver
12:18.17dcordes-libbbl
12:20.29*** join/#htc-linux Rob2222 (~Miranda@p4FFF1577.dip.t-dialin.net)
12:27.11*** join/#htc-linux cidhed (~chatzilla@96-35-59-23.dhcp.stls.mo.charter.com)
12:32.39*** join/#htc-linux cidhed (~cidhed@96-35-59-23.dhcp.stls.mo.charter.com)
12:34.45cidhedAnyone alive?
12:44.25plupkea better question would be: anybody around. a simple look out the window would prove ppl beside you being alive. lol
12:45.52cidhedSorry, lol.
12:46.09cidhedIt is 6am here so it looks like a zombie town.
12:46.17cidhedI could be the only one left.
12:46.40plupkejudgement day happend?  lol
12:47.47cidhedGeorge Romero's prophecies have come true!
12:48.19cidhedI am actually looking for kernel source for cm7 on the hd2.
12:48.19*** join/#htc-linux MethoS (~clemens@134.102.106.250)
12:48.58cidhedI am attempting to get wifi calling working and that seems to be my hangup.
12:50.12plupkewould you happen to be using channel 12 or 13?
12:50.36cidhedWifi channel?
12:50.39plupkeyep
12:52.37cidhedI haven't checked. Just for clarification I am talking about Tmobile Wifi Calling. Not the UMA that is part of GB.
12:53.20cidhedThe issue is I don't have an hd2 and can only test on it during the week.
12:54.42plupkehttp://htc-linux.org/wiki/index.php?title=Kernel  take a peek here
12:55.04plupkethe google git link should be somewhere on that site
12:55.21plupkei ahve seen it   just to sleepy to remember where
12:56.52cidhedI will look around. I looked there earlier and all I saw was EVO based stuff. I remember seeing nexus one based kernels for the HD2 and was hoping to go that route as wifi calling is working on the nexus one. I will see what I can do with the EVO kernels though.
12:56.56*** join/#htc-linux Termana (~bradley@122.151.120.58)
12:57.17plupkehd2 is there 2
12:57.19Rajkocidhed, hd2 uses its own kernel
12:57.24Rajkodont have an EVO version
12:57.34Rajkoi mean CM version
12:57.38Rajkothe EVO based kernel is the best one
12:57.48plupkemorning Rajko
12:58.15Rajkohttp://gitorious.org/linux-on-wince-htc/linux_on_wince_htc
12:59.15cidhedI meant based on evo/n1 not the actually evo/n1 kernel.
12:59.42cidhedThanks for the link. I will get to work.
12:59.53plupkegood luck
13:02.29*** join/#htc-linux bacore (5a0148fa@gateway/web/freenode/ip.90.1.72.250)
13:07.08*** join/#htc-linux Kasjopaja (~Tina@p579C129C.dip.t-dialin.net)
13:12.11*** join/#htc-linux RaiderX (5b6e440c@gateway/web/freenode/ip.91.110.68.12)
13:15.06*** join/#htc-linux LordDeath (~Lord|Lapt@cable-81-173-164-173.netcologne.de)
13:22.14*** join/#htc-linux kiozen (~kiozen@port-92-194-12-159.dynamic.qsc.de)
13:26.23*** join/#htc-linux MattOG (~MattOG@90.204.213.43)
13:33.10*** join/#htc-linux gauner1986 (~gauner198@p508C648F.dip.t-dialin.net)
13:35.06gauner1986hi guys
13:35.34*** join/#htc-linux mastermerlin (~Adium@p4FEE5B90.dip.t-dialin.net)
13:40.47*** join/#htc-linux kubi (~Adium@miranda/user/kubi)
13:45.31fakkerroses are #FF0000, violets are #0000FF, and all my base, are belong to you
13:46.34phho
13:46.35phhk
13:46.36Rajkohow calculate CMRR of ideal opamp
13:59.29*** join/#htc-linux FsTluxe (~FsTluxe@82-168-181-104.ip.telfort.nl)
14:10.52*** join/#htc-linux RaiderX (5b6e440c@gateway/web/freenode/ip.91.110.68.12)
14:30.03*** join/#htc-linux |Atom| (~atom@82.194.234.249)
14:31.12*** join/#htc-linux Pr0z (Proz@bzq-84-109-109-248.red.bezeqint.net)
14:33.55*** join/#htc-linux Cotulla (~opera@nat004-252-205-109.tvoe.tv)
14:46.26*** join/#htc-linux Pr0z (Proz@bzq-84-109-109-248.red.bezeqint.net)
15:04.06*** join/#htc-linux Pr0z (Proz@bzq-84-109-109-248.red.bezeqint.net)
15:23.37*** join/#htc-linux UnknownArtists (~unknown@84.19.198.203)
15:36.27*** join/#htc-linux hayzy00 (5284f235@gateway/web/freenode/ip.82.132.242.53)
15:38.14*** join/#htc-linux karaan5 (0fd3994a@gateway/web/freenode/ip.15.211.153.74)
15:43.35*** join/#htc-linux eugenb (~Adium@dslb-188-100-189-238.pools.arcor-ip.net)
15:46.58*** join/#htc-linux imilka (~kvirc@95-25-221-167.broadband.corbina.ru)
15:56.54*** join/#htc-linux Andreyxxl[HD2EU] (~Andreyxxl@89.32.146.153)
16:00.27*** join/#htc-linux darkstone (dtrack@kimoshi.net)
16:02.57*** join/#htc-linux UnknownArtists (~unknown@84.19.198.203)
16:29.05*** join/#htc-linux Poofybal (~admin@84.19.169.236)
16:32.59*** join/#htc-linux Wally (~wally@c-75-73-178-169.hsd1.mn.comcast.net)
16:33.59*** join/#htc-linux dharvey (~dharvey46@c-69-254-236-232.hsd1.ks.comcast.net)
16:41.00*** join/#htc-linux kubi (~Adium@miranda/user/kubi)
16:45.35darkstonehey guys
16:46.06darkstoneis rmnet working as good as nand+magldr builds on non-magldr builds?
16:46.08Cotullahey
16:46.13darkstoneor does magldr have some fix?
16:46.13amanderdarkstone..
16:46.24Cotullahow are u?
16:46.33darkstoneim ok, how are you Cotulla?
16:46.39darkstonehi nikole
16:46.43nikoleo hi
16:46.50Cotullame too seems
16:46.56darkstonegood :)
16:47.02Cotullasuspended meego development because it's fucking buggy
16:47.06darkstonehaha
16:47.23Cotullawhat u mean about rment?
16:47.27darkstoneframebuffer problems?
16:47.53darkstoneCotulla: using haret.exe based build, we need to set mtu to 700 for stable rmnet
16:48.00darkstonein magldr, it seems this is not needed
16:48.17darkstonebut mtu 700 is slow :(
16:48.20Cotullausing haret u won't ever got stable rmnet...
16:48.24Cotullaupload always sucks
16:48.29darkstoneok
16:48.45Cotullappl still using haret? ;)
16:48.53darkstone:) i need to
16:48.56darkstoneneed windows mobile
16:49.00Cotullahehe
16:49.05CotullaI am developing SD based one
16:49.06Cotulla:P
16:49.36darkstonenice :)
16:49.52nikole3
16:49.58Cotullaare u cooking something now?
16:51.42darkstonenothing new.... yet
16:51.43darkstone:p
16:54.56Amanderhe's cookin a pie
16:55.31imilkapies suck
16:55.32imilka:P
16:55.44imilkacook sth else
16:55.54Amander<~Pie> well tell imilka he sucks
17:16.19Cotullaanybody with nexus here? AD2.2.1 or AD2.3 installed?
17:16.23Cotullastock, not custom
17:27.05*** join/#htc-linux nineX_ (~nunya@75-132-13-29.dhcp.stls.mo.charter.com)
17:28.15*** join/#htc-linux BbLugNut (~kvirc@173-136-167-159.pools.spcsdns.net)
17:32.10*** join/#htc-linux kvaster (~kvaster@vpn-e0.bas-net.by)
17:34.48*** join/#htc-linux GNUtoo|laptop (~gnutoo@host19-55-dynamic.180-80-r.retail.telecomitalia.it)
17:37.23*** join/#htc-linux Silicium86 (Kenn@0x555379dc.adsl.cybercity.dk)
17:38.01*** join/#htc-linux kvaster (~kvaster@vpn-e0.bas-net.by)
17:42.20*** join/#htc-linux Pr0z (Proz@bzq-84-109-109-248.red.bezeqint.net)
17:44.10*** join/#htc-linux Tinyboom (~nahh@194.84-48-106.nextgentel.com)
17:50.19*** join/#htc-linux Bry8Star_ (~Bry8Star@cpe-76-170-247-232.socal.res.rr.com)
17:50.23*** join/#htc-linux Bry8Star_ (~Bry8Star@unaffiliated/bry8star)
17:58.11tyweeni am trying to make my own cyanogenmod 7 based build for nand.. gps works but using wifi location always results in this error:
17:58.13tyweenD/WifiService(  184): acquireWifiLockLocked: WifiLock{NetworkLocation type=2 binder=android.os.BinderProxy@4069b4b8}
17:58.24tyweenwhat files are related to wifi location besides possibly the firmware?
17:58.39tyweenbtw wifi works fine for data transfer, just not location
18:30.28*** join/#htc-linux bob (52f5e151@gateway/web/freenode/ip.82.245.225.81)
18:31.12*** part/#htc-linux Guest10939 (52f5e151@gateway/web/freenode/ip.82.245.225.81)
18:35.57*** join/#htc-linux mastermerlin (~Adium@p4FEE5B90.dip.t-dialin.net)
18:37.25*** join/#htc-linux Jhinta (~Jhinta@s5592f326.adsl.wanadoo.nl)
18:49.27*** join/#htc-linux Markinus (~Miranda@212.255.18.217)
18:58.57*** join/#htc-linux kiozen (~kiozen@rgnb-5d865072.pool.mediaWays.net)
19:02.09dcordescout: maybe ask in #android-root ?
19:02.13dcordesCotulla:
19:02.39Cotullahello
19:02.50Cotullahow are u?
19:05.02*** join/#htc-linux tt (7de3a001@gateway/web/freenode/ip.125.227.160.1)
19:06.32*** part/#htc-linux tt (7de3a001@gateway/web/freenode/ip.125.227.160.1)
19:06.53*** join/#htc-linux MN_ (568624fa@gateway/web/freenode/ip.86.134.36.250)
19:12.52*** join/#htc-linux Liammm (~Liam@host81-148-227-162.range81-148.btcentralplus.com)
19:19.39*** join/#htc-linux LordDeath (~Lord|Lapt@cable-81-173-164-173.netcologne.de)
19:23.11*** part/#htc-linux kubi (~Adium@miranda/user/kubi)
19:26.21Cotulladcordes ping
19:27.54*** join/#htc-linux darkstar62 (~darkstar6@97-126-107-62.tukw.qwest.net)
19:29.30*** join/#htc-linux bascore (5a0148fa@gateway/web/freenode/ip.90.1.72.250)
19:40.10*** join/#htc-linux Microang (522deb64@gateway/web/freenode/ip.82.45.235.100)
19:40.56MicroangHey cotulla I was just wondering if you could have a look at this and tell me if it would be possible with magldr and or what needs to be done... thanks http://forum.xda-developers.com/showthread.php?t=917960
19:43.32CotullaI tell u yesterday that it's not very possible for now. only with development "special" rom :)
19:44.27crawlinghey Cotulla! hows the support for recovery in magldr? just wondering
19:44.36Cotullaworks.
19:44.49Cotullabut without recovery-reboot from android.
19:44.56Cotullawith menu item "AD Recovery"
19:45.47crawlingthe recovery files are stored in nand right ?
19:45.52Cotullayes
19:45.55crawlingcool
19:46.04CotullaI added support for raw-boot img like google one
19:46.39crawlingnice :) any eta for the release? i have time, dont have my phone atm ^^
19:46.57Microangsorry I wasn't here when you said... :( Would a special ROM be possible to develope by third party or would it have to be a cotulla special? Btw that Windows Mobile SD you talked about will that be for WP7 too?
19:47.03*** join/#htc-linux FsTluxe (~FsTluxe@82-168-181-104.ip.telfort.nl)
19:47.03dcordesCotulla: how about reading cmdline from file if file is present ?
19:47.46Cotullaraw-boot allow to specify cmd line (google native format)  output from mkbootimg.
19:47.54Cotullastartup.txt parser... not done yet
19:47.57Cotulla;)
19:48.01dcordesCotulla: awesome
19:48.14dcordesCotulla: so it will also be possible for SD boot ?
19:48.41CotullaI have some results with XLEO driver however... u may try if u want
19:48.47Cotullabut there much more problems appear
19:54.05Cotullait should work in ubuntu also in theory
19:55.12*** join/#htc-linux Samsunguy (~Samsunguy@cpe-76-186-50-40.tx.res.rr.com)
19:56.27dcordesCotulla: it would be nice to try
19:56.42Cotullabut evo kernel doesn't support host... it can be problem
19:57.01Cotullaother problems - DRI not supported in 2.6.32 kernel
19:57.19Cotullabut NEON and MDP accelerations are works
19:57.33Cotulladunno how much faster is it
19:58.57Cotullaas well caching problems
20:02.21dcordesCotulla: don't worry. I will patch the old usb stack into evo so I can use usbeth (ssh) as well as host
20:02.28dcordesit is my aim anyway. just pulled
20:03.00Cotullaanyway I suspend meego development. it's too buggy :(
20:03.06dcordeshmm I thought evo is newer
20:03.09dcordesVERSION = 2
20:03.09dcordesPATCHLEVEL = 6
20:03.09dcordesSUBLEVEL = 32
20:03.09dcordesEXTRAVERSION = .15
20:03.09dcordesNAME = Man-Eating Seals of Antiquity
20:06.24*** join/#htc-linux GalXyGiRL (Christine@adsl-75-2-216-108.dsl.irvnca.sbcglobal.net)
20:11.25*** join/#htc-linux greg- (greg-@port-940.pppoe.wtnet.de)
20:12.33dcordesMarkinus: how about moving to newer kernel :) ?
20:13.20Markinusdcordes: I did already a try with cm .35
20:13.30Markinusbut there seems to be a problem with mmu
20:13.43Markinusdcordes: device crashing on mmu init
20:13.48Cotulladcordes, what about developing? not f* with versions?
20:14.23gauner1986developing what?
20:14.24gauner1986:P
20:15.52Cotullasomething awful
20:15.59gauner1986hm
20:16.02gauner1986720p recording?
20:16.19Cotullamore awful. one look - and u stone.
20:18.35gauner1986yeah, meego. i know.. :P
20:18.42Cotullano
20:18.48Cotullameego abandoned
20:18.49Cotulla:)
20:18.51gauner1986lol
20:18.59gauner1986720p is the last feature missing
20:20.12Cotullahttp://forum.xda-developers.com/showpost.php?p=10832587&postcount=120
20:20.12Cotulla:P
20:20.28Cotulla720p?
20:22.18imilkawhat do u think about this btw?
20:22.19imilkahttp://forum.xda-developers.com/showpost.php?p=10732496&postcount=143
20:22.24imilkahe says there's two types of LCD
20:22.40imilkaand it lags on wakeup on one, and doesn't lag on another
20:22.43imilkalol
20:22.57Cotullait's somekind of truth
20:23.24CotullaAUO and SHARP
20:24.40imilkaso can sth be changed to remove this lag, or it's just hardware problem? :)
20:24.56Cotullasomething can be changed...
20:25.24dcordesCotulla: 20:57 < Cotulla> other problems - DRI not supported in 2.6.32 kernel
20:26.04gauner1986cotulla: yeah, recording.. eyecandy.. need :)
20:26.29Cotulladcordes, there DRI assume only AGP/PCI GPU
20:26.40Cotullacodeaurora have patch to add support
20:27.53dcordesCotulla: do you have a link to the patch ?
20:28.12Cotullawait
20:28.24dcordesthx
20:29.19Cotullahttp://www.mail-archive.com/linux-arm-msm@vger.kernel.org/msg00447.html
20:29.23Cotullathis probably
20:30.30dcordesMarkinus: what about qualcomm (codeaurora) kernel then ? ;)
20:30.55Markinusdcordes: CA kernel is bad
20:31.04Markinusdcordes: it's full chaos
20:31.22Markinusdcordes: I looked there to .35 too
20:31.28dcordesMarkinus: the code that is merged in mainline can't have more chaos than any of our branches !
20:31.31Markinusdcordes: bit they removed some 8250 code
20:31.42Markinusdcordes: so you have to merge by hand . .
20:32.18Cotulladcordes, evo tree was tested by HTC
20:32.20*** join/#htc-linux Jhinta (~Jhinta@s5592f326.adsl.wanadoo.nl)
20:32.24Cotullait's important
20:32.32Markinusit seems they heve there much for msmXXXX chips,
20:32.55Markinusyeah, I would wait till HTC release .35 code
20:34.21Jhintahi all , i like to know wat is needed to boot native ubuntu on a dhd , every boot command i give is not working
20:34.30Jhintaphone desire hd btw
20:35.12*** join/#htc-linux theredundant (~thereduda@27-32-116-207.static.tpgi.com.au)
20:44.21*** join/#htc-linux kiozen (~kiozen@rgnb-5d865072.pool.mediaWays.net)
20:44.26*** join/#htc-linux Bry8Star (~Bry8Star@cpe-76-170-247-232.socal.res.rr.com)
20:44.31*** join/#htc-linux Bry8Star (~Bry8Star@unaffiliated/bry8star)
20:49.02dcordesJhinta: native ubuntu ? dhd ? what boot command ?
20:51.00FsTluxezahbies,   is t already known why the i2c erro occures..  is it a hardware of of software thing? on the leo
20:53.37*** join/#htc-linux stickman89 (~stickman8@5e064b67.bb.sky.com)
20:53.40*** join/#htc-linux t3g (~t3g@p3E9E78E6.dip.t-dialin.net)
20:53.54stickman89hello people :D
20:54.13Cotullawe not people, we dirty geeks :D
20:54.52dcordesFsTluxe: what i2c error ?
20:54.54stickman89haha alright cotulla :D I'll join ya then
20:55.41stickman89minus the dirtyness!
20:55.53FsTluxedcordes, YES    <3>[16052.471527] msm_i2c msm_i2c.0: error, status c8 (5C)
20:57.31dcordesMarkinus: do you think it will be trivial to add basic leo support (mm, fb..) in codeaurora ?
20:57.57dcordesi.e. what's in vanilla kernel already
20:58.14Markinusdcordes: I have it here
20:58.16Markinusin .32
20:58.43Markinusdcordes: but I did not all stuff, because it'S the linux shit, that every tree is deifferent
20:59.00stickman89decompiling a launcher atm, modifying it's contents to imitate the MIUI launcher for us guys on ARM6.
21:02.17*** join/#htc-linux ManWithAPlan (~ManWithAP@cpe-66-74-69-200.socal.res.rr.com)
21:02.39stickman89you can tell Im bored lol
21:03.31Cotulladcordes, never saw anything trivial in the linux....
21:05.14dcordesMarkinus: I think it should be regarded relatively to mainline ..
21:05.40dcordesMarkinus: i.e. everything HTC, google, friends (=> we) use is different from mainline
21:05.52Markinusyeah, and I hate it
21:06.06MarkinusI will look what I have for CA
21:06.12Markinusthen I get give it you
21:06.20Markinus*can
21:06.49dcordesthat would be nice. I'm wondering specifically about the latest state that is merged with mainline
21:10.18*** part/#htc-linux CIA-99 (~CIA@208.69.182.149)
21:11.03Cotullaya it's why I like CE: binary interfaces not changed by years :P
21:11.17dcordespukes
21:11.52Cotullahaha\
21:12.04dcordeslike gauner1986's granny don't change her socks for years ?
21:12.14Cotullano, u not right ;)
21:12.20Cotulladeveloeprs can develop something
21:12.29Cotullanot mess with incompatible interfaces
21:12.45CotullaI don't know that u prefer: fix i2c or port 32->35
21:12.49Cotullabut I prefer fix i2c
21:12.50Cotulla:)
21:12.56dcordesthen we can also close universities
21:13.02gauner1986dcordes: actually she sells socks.. and they're nice and warm :P
21:13.06dcordesand remove computer science
21:13.14Cotullano, it's not related
21:13.36Cotullanobody tell u that inside CE implementation same for years. but _external_ interfaces are same.
21:14.27Cotullaso if I use function MyFooFuncion() I am sure that it will present in next release and I will only recompile code.
21:14.48CotullaIn linux I will search for same function in new version of kernel/library/etc
21:15.09Cotullaand it can be called FooMyFunction()
21:16.33ali1234release the code and let someone else fix it
21:16.42ali1234or don't use linux
21:16.46ali1234or put up with it
21:17.21ali1234in fact the linux system call interface is backwards compatible pretty much all the way back to 2.0
21:17.33Cotullaheh. "release the code and let someone else to broke it"
21:17.41Cotullait means 90% this
21:18.30*** join/#htc-linux g3rm (~germo@89-72-100-169.dynamic.chello.pl)
21:18.30ali1234hmm so why does any version of the kernel since we upstreamed the patches work out of the box, yet msm where you never upstream anything is still a complete mess?
21:18.45ali1234*out of the box on omap
21:19.23CotullaI mean kernel drivers at first point
21:19.36ali1234so do i
21:19.50Cotullaas well
21:19.57Cotullano logic in whole drivers sturcture
21:20.09Cotullano logic in code flow
21:20.14ali1234if you have any omap730 or omap850 phone you can boot a vanilla kernel
21:20.20ali1234since about 2.6.32
21:20.28ali1234because we upstreamed the patches to make it work
21:20.55Cotullaand?
21:21.03ali1234and you can't say the same about msm
21:21.13Cotullain CE most drivers use "stream" interface.
21:21.17ali1234your stuff always breaks because nobody upstream even knows or cares about it
21:21.25Cotullaso actually each driver is independent component of system
21:21.31Cotullanot like in linux
21:21.38ali1234so what?
21:21.51ali1234it is made this way by design to punish you for not upstreaming
21:22.27Cotullaor why there 1-10 implementation for one thing in msm trees?
21:23.05ali1234because you guys don't cooperate with each other or upstream nearly enough
21:23.43Cotullaand upstream... if API same for new versions or have minor changes, who need upstream?
21:23.50ali1234you're reinventing the wheel over and over on each new model that comes out
21:24.25ali1234the vendors share in this blame too, to be fair
21:24.38Cotullabecause no strict rules :)
21:25.02*** join/#htc-linux Rob2222 (~Miranda@p4FFF1577.dip.t-dialin.net)
21:26.04Cotullait's like public militia, without strict control, they can do anything
21:26.10Cotulla*can't
21:26.11*** join/#htc-linux Bry8Star (~Bry8Star@cpe-76-170-247-232.socal.res.rr.com)
21:26.16*** join/#htc-linux Bry8Star (~Bry8Star@unaffiliated/bry8star)
21:35.30ArtikCotulla: hey dude =) sorry to bug you, but people just keep wondering: have you abandoned magician project once and for all?
21:37.14Cotullano...
21:37.39Cotullaactually I am in parallel trying to finish alphine project and then port all new to magician
21:37.53Cotullabut I got more problems there that I though
21:38.25*** join/#htc-linux smoku (~spectrum@xkh0g2.infr.xiaoka.com)
21:38.38Artikoh, cool =) the problems - not so cool, but you get what I mean =)
21:38.59CotullaI developed magician project about 2 years...
21:39.13Cotulla(before inital release)
21:44.20Artikany chance you could re-release something with a camera (no matter, old or new) based on the last stable release - like R1 or O5, to keep people interested and rise morale? =P
21:44.56*** join/#htc-linux Alex[sp3dev] (~alexander@ip-95-220-42-20.bb.netbynet.ru)
21:45.05Cotullacamera it's thing which fucked me down :(
21:45.29SamsunguyNo homo
21:46.53Artikyou mean, you hate it so much, it was the reason for you to start working on the project and because of that you object to this idea?
21:47.05Alex[sp3dev]what's the camera sensor in magician?
21:47.11Cotullaarrrggg
21:47.17Cotulla9640 & 9650
21:47.20Cotulla<PROTECTED>
21:47.26FsTluxeCotulla,  I love you haha :P sorry to say..
21:47.39Alex[sp3dev]copy-paste it from linux. and then release all the code under gpl ;))
21:47.40stickman89concerned....
21:47.51CotullaI checked linux code, it was bad
21:47.52Cotulla:P
21:47.58Alex[sp3dev]but it works
21:48.14CotullaI mean camera is very complex thing. it's not possible to get good quality without special equipment and 1000 testers, like HTC.
21:48.14torgrimtGNUtoo|laptop: ping ;)
21:48.26CotullaI have image from camera
21:48.32GNUtoo|laptoptorgrimt, hi
21:48.43torgrimthi. sorry was afk for an epic sleepingsession ;)
21:48.45Cotullabut it's enough to move it to dark part of wall
21:48.54Cotullato see noise
21:49.01Alex[sp3dev]Cotulla: wtf are you saying that every time? it's better to have it working *poorly* than not working at all. or are you afraid of users?
21:49.05GNUtoo|laptoptorgrimt, any issues/questions?
21:49.20CotullaAlex, my camera also works
21:49.21torgrimtGNUtoo|laptop: yes, it wont boot. it just shows alot of lines on the screen. then reboot
21:49.26Cotullabut important how it's working
21:49.28torgrimtGNUtoo|laptop: with ./fastboot boot zImage-2.6.32+r22+gitr013075354e0b533991650ec756605ad4731e6a0c-r22-htcdream.fastboot
21:49.43Cotullatest case - dark place
21:49.44Alex[sp3dev]Cotulla: but then again. you do have wm2003 binaries
21:49.55CotullaI can't use them
21:49.55GNUtoo|laptoptorgrimt, ok
21:50.01Alex[sp3dev]but you can disassemble them
21:50.04GNUtoo|laptoptoastcfh, that is because it doesn't find the rootfs
21:50.05Cotullaand my idea was to rewrite all
21:50.11GNUtoo|laptophow did you format your microsd card
21:50.15GNUtoo|laptop?
21:50.18Cotullayeah, I am actually doing it :)
21:50.22torgrimt1 ext3 partition
21:50.27GNUtoo|laptopis it linux+ext3?
21:50.29torgrimtand extracted the tarball as root onto it
21:50.34torgrimtit is linux+ext3 yes
21:50.35GNUtoo|laptopok
21:50.36Alex[sp3dev]you're lucky it is connected via regular i2c
21:50.39GNUtoo|laptophmmm
21:50.49Cotullahehe
21:50.49GNUtoo|laptopwhat do you see when you put the card in a computer
21:50.52GNUtoo|laptopwhat ls shows
21:50.52Alex[sp3dev]on loox they've connected it to gpio pins and emulated i2c in software
21:50.55GNUtoo|laptopwhat mount shows
21:50.55GNUtoo|laptop?
21:51.03torgrimtGNUtoo|laptop: shows normal filesystem ;)
21:51.06ArtikI thought the noise was a hardware problem...
21:51.08GNUtoo|laptopbe sure that it's linux too with fdisk
21:51.10GNUtoo|laptophmmm
21:51.14torgrimti am sure it is
21:51.17GNUtoo|laptoptorgrimt, ok
21:51.19Cotullaalso some things are not so funny
21:51.24Cotullalike HTC camera
21:51.24GNUtoo|laptoptorgrimt, are you able to compile a kernel?
21:51.29torgrimtGNUtoo|laptop: yes
21:51.33GNUtoo|laptopbecause basically here's the issue
21:51.33Cotullait need YUV buffers
21:51.38GNUtoo|laptopyou need framebuffer console
21:51.48GNUtoo|laptopbut framebuffer console can't be enabled in "production"
21:51.56CotullaI can implement it in same way, but I will lost a lot of memory.
21:51.56GNUtoo|laptopbecause it creates some issues
21:52.01GNUtoo|laptopI don't remember which ones
21:52.17Cotullaso 64 mb devices will have -6mb of memory
21:52.24Alex[sp3dev]Cotulla: the general case with programming is a speed/memory tradeoff
21:52.38GNUtoo|laptoptoastcfh, so cross-compile a kernel with framebuffer console and use leviathan's openmoko howto for getting the right arguments for framebuffer console
21:52.38torgrimtGNUtoo|laptop: sure i can try that. do you have a .config for the kernel used?
21:52.43GNUtoo|laptopyes
21:52.51Cotullabut I think I will allocate YUV buffers for HTC camera and implement dynamic allocation for 6mb
21:52.54torgrimti think he has a link for his .config
21:53.02Cotullaso if no memory - no camera :)
21:53.26GNUtoo|laptophttp://cgit.openembedded.org/cgit.cgi/openembedded/tree/recipes/linux/linux-leviathan/defconfig
21:53.36torgrimtGNUtoo|laptop: the screen shows just vertical lines when booting now. i can make a video if you want to see
21:53.39Alex[sp3dev]Cotulla: btw, do you know anything about win embedded handheld? is it compatible with ce 5.2 kernels?
21:54.03Cotullano yet, no news about it at all. only few new strings in resources.
21:54.04GNUtoo|laptoptorgrimt, try framebuffer console
21:54.11GNUtoo|laptopand keep the video for the framebuffer console
21:54.20Cotullabut maybe it based on ce60
21:54.23GNUtoo|laptopare the lines black and white?
21:54.32torgrimtthink they where gray and white
21:54.40GNUtoo|laptopok then that's normal
21:54.47GNUtoo|laptopit's the empty framebuffer memory
21:55.00GNUtoo|laptopwhat rootfs did you untar?
21:55.08torgrimtthe full file
21:55.12GNUtoo|laptopSHR's rootfs from shr-project?
21:55.16GNUtoo|laptopor the old leviathan one?
21:55.29torgrimtfrom shr-project, sec ill find the filename
21:55.35GNUtoo|laptopok that's fine
21:55.39torgrimtfull-htcdream.tar.gz
21:55.42Cotullabtw Alex, I abandon meego :P bcz it's fucking buggy for now...
21:55.52torgrimti guess that includes the models aswell
21:55.55Alex[sp3dev]Cotulla: no wonder. it's not even alpha
21:55.59Cotullaya
21:56.00torgrimts/models/modules
21:56.07GNUtoo|laptoptorgrimt, yes of course
21:56.08CotullaI search bug about 1 hour
21:56.13GNUtoo|laptopbut there aren't a lot of modules
21:56.14GNUtoo|laptopjust wifi
21:56.15Cotullaand then found that it's meego bug
21:56.23Cotullaepic fail :(
21:56.27torgrimtshould boot just fine without wifi
21:57.06GNUtoo|laptopyes
21:57.15GNUtoo|laptopit's a rootfs problem I think
21:57.52torgrimtsec ill fire it up with recovery and mount usb
21:58.08GNUtoo|laptoptorgrimt, wait a sec
21:58.14GNUtoo|laptopyou mean you formated trough usb?
21:58.20torgrimtyes
21:58.21ArtikCotulla: well, thanks for the insight.
21:58.32Cotullau think I need releae WM653 rom on G9?
21:58.39torgrimtwith the clockworkmod recovery console.
21:58.43GNUtoo|laptoptorgrimt, that's the problem
21:58.45Alex[sp3dev]no because wm653 sucks
21:58.49GNUtoo|laptoptoastcfh, I'll explain
21:58.50Cotulla:D
21:58.57Alex[sp3dev]those png graphics are slow and waste memory
21:58.58GNUtoo|laptopbasically you have that kind of patition on your microsd:
21:59.08GNUtoo|laptop/dev/mmcblk0 -> /dev/mmcblk0p1
21:59.11Cotulla:D
21:59.16GNUtoo|laptopwhen you export trough usb
21:59.23GNUtoo|laptopyou export /dev/mmcblk0p1
21:59.30GNUtoo|laptopand not /dev/mmcblk0
21:59.35GNUtoo|laptopwhich should have been exported
21:59.37GNUtoo|laptopnow....
21:59.44torgrimthmm oke.
21:59.51torgrimtdidnt know that ;)
21:59.55GNUtoo|laptopcan you mount your microsd card on your laptop not trough the phone?
22:00.00GNUtoo|laptopelse format on the phone
22:00.34ArtikCotulla: on the other hand, I can imagine crowds of people saying, how they always wanted 653 (although, do they really *need* it?)
22:00.36torgrimtguess i can do that. dont remeber if my laptop have an sdcardreader that is supported in linux ;(
22:00.45torgrimthmm,. maybe my old eeepc can do that
22:00.49torgrimtsec, ill try ;)
22:01.16CotullaArtik, dunno. but it won't have camera :)
22:01.38Cotullain plans also pure CE52 ROM release. just for fun.
22:01.39Artikyeah, I got that. That's kinda what makes it pointless
22:02.00Alex[sp3dev]Cotulla: with phone and dialer?
22:02.06Cotullano, maximum gprs
22:02.07Artikplus, as soon as you release 653, ppl will start asking for android)
22:02.13GNUtoo|laptoptorgrimt, else you could do it from the phone but that's a lot more complicated because not all the tools are there
22:02.14Cotullaandroid isn't possible
22:02.17Cotullatoo old hw
22:02.29Cotulla64 ram not enough 100%
22:02.45Alex[sp3dev]Cotulla: well, you can start android.. but it will be very slow and may run oom when you launch any app
22:02.49Cotullau can look at youtube how android runs on pxa270
22:02.56Artik128 should be somewhat enough for 1.6 - seen chinese tablets...
22:02.57torgrimtGNUtoo|laptop: well, ill try the laptop now. ill report back
22:03.02GNUtoo|laptopok
22:03.04Cotullawho need 1.6 now
22:03.11Artikgood point
22:03.14Cotullascreen output will be VERY slow
22:03.18Alex[sp3dev]Cotulla: that g900 video is bullshit. android is not slow on pxa270. especially qvga. but 64mb ram is a no-go
22:03.19Cotullalook at youtube video
22:03.44CotullaAlex, 2.0+ use GL render for ALL operations
22:03.55Cotullaand software GL sloow
22:04.28*** part/#htc-linux smoku (~spectrum@xkh0g2.infr.xiaoka.com)
22:04.43Cotullashow me android on looks :P
22:04.45Cotulla*loox
22:04.53Alex[sp3dev]anyway. i don't think those old pdas are usable for anything other than research and hacking today. if someone needs wm6.5.3 or android, they can get the former used for about $50 and the latter for about $150
22:05.15Cotullaya
22:05.25Alex[sp3dev]Cotulla: i'll try to. although anything (including GTK in X) except Qt4 and Qt2 (opie) is painfully slow there
22:06.00Cotullaso words "Android need less resources than WM" is bullshit :P
22:06.11Alex[sp3dev]Cotulla: who the fuck told that bullshit?
22:06.20CotullaI read it several times
22:06.22Cotullain the internet
22:06.40Alex[sp3dev]no way. anything that has to do with java cannot be fast or lightweight or good
22:06.44Cotullaever WP7 seems need less resources
22:06.46*** part/#htc-linux tailormoon (bestirc@vpn-212-87-172-170.didan.com.ua)
22:07.06Alex[sp3dev]btw, have you tried .net micro yet?
22:07.54Cotullanot yet
22:07.58Cotullabut it looks funny
22:08.04CotullaMS use GCC to compile it
22:08.14Cotullaor RVCT
22:08.24Alex[sp3dev]what if we write bootloader in it and use it to troll both windows and linux users?
22:08.35Cotullahm possible
22:08.41Cotullathere also simple forms support
22:08.43Cotulla:P
22:08.56Alex[sp3dev]but it would be too heavyweight. i think no less than 400kb
22:09.02Cotullaya
22:09.07Cotullabut who cares about size now?
22:09.16Alex[sp3dev]i try to
22:09.30CotullaI am seriously will move MAGLDR to CE52 base.  and try it.
22:09.40Cotulla1 mb compressed - and u got most stuffs inside
22:09.51Alex[sp3dev]and you know. it sucks that every year the cpu and ram doubles and the software does not work faster
22:09.53Cotullalike fat and etc
22:10.16Cotulla2 mb - and u got GWES
22:10.33Cotullabut I don't need gwes
22:10.49Alex[sp3dev]real cotullas don't use gwes
22:10.52Artikhttp://www.youtube.com/watch?v=lYzRSNuUsIw&feature=related seems to work a bit smoother, than titanium on magician downclocked to 200mhz. Not *that* bad...
22:11.24Cotullagwes need too many resources, as well many dependences and long load time
22:11.40Alex[sp3dev]no way to ce. .net micro ;)
22:12.21Cotullaokay, develop on micro, I will on CE :)
22:12.43Alex[sp3dev]i dunno. i just want to write the bootloader from scratch for experience first
22:12.58Cotullaso start from legacy bootloader on codeaurora
22:13.04Cotullait's good base
22:13.13Alex[sp3dev]i will see. after the exams.
22:13.16Cotullaheh
22:13.18Cotullamy done :D
22:13.27Alex[sp3dev]lucky you
22:13.30Cotullayaya
22:13.43Alex[sp3dev]our university follows the bologne process.. we have exams every two months
22:14.09Jhintaany one kneow why i keep getting this ? arch/arm/mach-msm/idle-v7.S:126: Error: selected processor does not support ARM mode `fmxr fpexc,r2'
22:14.35Alex[sp3dev]old compiler?
22:14.57CotullaI got this also sometime ago. but I am true-coder, so I replace this instruction by DCD
22:14.58Jhinta2010q1
22:15.34Cotullahm is it android on video?
22:15.34Alex[sp3dev]Cotulla: you're a true troll
22:15.42Cotullahttp://www.youtube.com/watch?v=lYzRSNuUsIw&feature=related
22:16.08ArtikCotulla: sure looks like one
22:16.53Cotullaanyway user experience will be awful I think.
22:18.44ArtikI'm personally quite content with 6.5. Took sometime to make CHome usable, but otherwise... tried downgrading to O3 last week, couldn't endure it more than 15 minutes - without the chord keys and stuff
22:19.05Cotullaoh
22:19.37Artikchord keys rule)
22:19.53Cotullahehe
22:20.01Cotullaare u using 208?
22:20.03Cotullaor 416?
22:20.11Artik208 most of the time
22:20.24Artik100 is enough for mp3s
22:20.37Artik512 can almost run Playstation emu
22:20.42Cotullahaha
22:20.45Cotulla520
22:20.48Cotulla;)
22:20.51Artikah, yes
22:22.00ArtikI assume enter+camera was reserved to squeeze in both camera and task manager in the future?
22:22.19Cotulladon't know. it maybe better move them.
22:22.34Cotullabecause bad press - and u waiting until camera launched
22:23.10*** join/#htc-linux gauner1986 (~Adium@p508C648F.dip.t-dialin.net)
22:23.30Artikmaybe it's better for camera to be on chord then
22:24.45*** join/#htc-linux GNUtoo|n900 (~GNUtoo@host19-55-dynamic.180-80-r.retail.telecomitalia.it)
22:25.00Cotullaanyway camera will work only if memory enough
22:26.00CotullaGNUtoo|n900 are u GNUtoo|laptop?
22:26.02Cotulla:P
22:26.13GNUtoo|laptopCotulla, yes
22:26.22ArtikI guess, if there's a working driver, clearing some extra Mbs for software is not that problematic
22:26.30GNUtoo|laptopI've many phones
22:26.43Alex[sp3dev]i bet cotulla has more
22:26.45GNUtoo|laptopsome free,some paid
22:26.45Cotulla;)
22:27.08ArtikI used to do my set up in such a way that there's always 16+Mbs free for skype in case of emergency
22:28.14Cotullaoriginal configuration have 6 mb of reserved memory for camera\
22:28.21Cotullait's bad for WM65
22:28.41Artikreserved in RAM?
22:28.52dcordesCotulla: about to do some ubuntu booting. maybe I can put Xleo ?
22:28.52Cotullayes
22:29.03Cotulladriver?
22:29.14Artikmany people still used coolcamera instead
22:29.14dcordesyeah
22:29.28Cotullau sure u wanna do it? it's buggy :)
22:29.31dcordesCotulla: would be a pleasure to test it !
22:29.36Cotullaokay
22:29.40dcordesas long as dsp won'T explode
22:30.26Alex[sp3dev]no it will implode and turn into a black hole
22:32.27ArtikI currently have 57Mbs RAM free on 6.5
22:32.52Cotulladon't post such things when I drink :P
22:33.41ArtikI'll imitate some "active usage" now, let's see, what'll be left
22:33.52Cotullawait
22:33.57Cotullais it with slider?
22:34.03Artikno
22:34.15Artikthe strict one
22:34.42Cotullaoh u have 128 ram?
22:34.54Artik128
22:35.15ArtikI thougth it was obvious from 6.5)
22:35.34Artiksince O5 appears to be somewhere in between
22:35.54gauner1986128.. sweet
22:36.29Cotullau may had slider version
22:37.12ArtikI don't think 57 woul've been possible on 64Mb in any case o_0
22:37.39Alex[sp3dev]if you had NOR and were xipping..
22:38.07CotullaWM61 had 57 isn't it?
22:38.17CotullaWM61 slider's one
22:38.34*** join/#htc-linux GalXyGiRL (Christine@adsl-75-2-216-108.dsl.irvnca.sbcglobal.net)
22:39.14Artiksorry, no idea
22:41.05dcordesGNUtoo|laptop: wtf is wrong with xf86-video-msm rotation ?
22:41.35GNUtoo|laptopdcordes, it was absent from the driver when I looked at it(very long time ago)
22:41.50JhintaQ - with a build of a new kernel with vt one sould i be able to just boot it with a view command or is this simpel minded?
22:42.32dcordesGNUtoo|laptop: ok still seems to be the case then
22:43.18GNUtoo|laptopdcordes, xf86-video-fbdev has static rotation(change xorg.conf and restart xorg)
22:43.38GNUtoo|laptopdcordes, btw I got alsa working on nexusone but it's not great at all(very....buffer underrun)
22:43.42*** join/#htc-linux CIA-105 (~CIA@208.69.182.149)
22:43.56Artikok, I've loaded it up with quite a lot of stuff, more than I usually use at once, but anyway... coreplayer with a 320kbps mp3 going, pocketwit, fim, solitaire, pigeon, notes, opera mini with 3 tabs - still 13.5Mbs left
22:44.30*** join/#htc-linux AF974 (c2983126@gateway/web/freenode/ip.194.152.49.38)
22:44.34Artikah, and activesync over bt
22:44.41GNUtoo|laptophere's nexusone preliminary evaluation:
22:44.41Cotullabt...
22:44.45Cotulla<PROTECTED>
22:44.53GNUtoo|laptopGPS: NMEA and works with floss code in android
22:45.01GNUtoo|laptopalsa: big issues
22:45.08GNUtoo|laptopwifi: bcm4329: wext
22:45.22GNUtoo|laptopcamera: didn't look enough into it(the v4l device node didn't apear)
22:45.49GNUtoo|laptopmodem: AT commands that are more standard: works fine with free ril
22:45.54ArtikCotulla: I share internet over wifi on this laptop, so AS won't work over cable with RNDIS
22:46.37CotullaI fucked with BT a lot... with on of on off :D
22:47.26dcordesGNUtoo|laptop: nice
22:47.40Artikxiaojin's wireless manager somehow fixes the on/off bug
22:47.44GNUtoo|laptopdcordes, not sure....alsa has a full driver, but lots of issues
22:47.55GNUtoo|laptops/has/is
22:47.56CotullaI fixed it in last versions, right?
22:48.05dcordesMarkinus: do you think it'S possible to make Cotulla's evo branch 'official' like tg01 so we can easily pull it ?
22:48.10Artikah, wait, that's not it
22:48.16dcordesMarkinus: without getting new .git or is it possible already ?
22:48.16Artikyou fixed bt
22:48.32Artikwhat's NOT working, is flight mode from generic menu
22:48.39dcordesGNUtoo|laptop: did you publish it via ml ?
22:48.55dcordesGNUtoo|laptop: the nexus1 alsa success ?
22:48.55ArtikI think, you can't switch the phone module back on in some cases
22:48.57GNUtoo|laptopno, only trough gitorious in leviathan-incomming project
22:49.02GNUtoo|laptopbb on n900
22:49.02Markinusdcordes: he has a clone, no a branch
22:49.10dcordesGNUtoo|laptop: ok
22:49.10Markinusdcordes: his own repo
22:49.17dcordesok then I will fetch it
22:49.48Markinusdcordes: we could do a branch from it, wouln't be a problem . .
22:50.01dcordesReceiving objects:   0% (227/34517), 108.00 KiB | 16 KiB/s
22:50.07dcordeshell yeah
22:50.44gauner1986linuxtogo?
22:50.45gauner1986;)
22:50.51Artikthe BT, on the other hand, works great
22:51.21Artiklots of fun transmitting sound on laptop's speakers, etc
22:51.39GNUtoo|n900dcordes,maybe adapting the qdsp6 to it would remove buffer umderruns....
22:51.50dcordesCotulla: maybe if you put it as branch it's easier to merge with main ?
22:52.05dcordesGNUtoo|n900: ask Cotulla for help :D
22:52.05Alex[sp3dev]dcordes: you can add his repo as a remote branch
22:52.29CotullaI don't think it must be merged with main... it's "immediate" changes.
22:52.31GNUtoo|n900my laptop is powered off
22:52.44GNUtoo|n900but i remember that
22:53.03Artikgtg
22:53.23Cotullabb
22:53.25*** join/#htc-linux Pedro (bc51259a@gateway/web/freenode/ip.188.81.37.154)
22:53.26*** join/#htc-linux gna (5e653e01@gateway/web/freenode/ip.94.101.62.1)
22:53.27Alex[sp3dev]anyhoo, i wonder if we'll ever see the day when msm will be mainlined and developers won't have to fuck with 3 different trees (mainline, CA and android)
22:53.29GNUtoo|n900there was =1
22:53.30Pedrohi
22:53.36dcordesArtik: cya
22:53.36GNUtoo|n900in ubuntu driver
22:53.44Pedrohi
22:53.47dcordesAlex[sp3dev]: nvm cloning already
22:53.53GNUtoo|n900for the ac something
22:53.57ArtikCotulla: if you need more testers, I think I'm going to be free enough after february. Especially if I do buy SGS
22:53.58GNUtoo|n900maybe the size
22:54.05dcordesAlex[sp3dev]:ya that'd be nice
22:54.08GNUtoo|n900in the buffer send stuff
22:54.16CotullaGNUtoo do u have GNUtoo|desktop?
22:54.20GNUtoo|n900let me look in gitorious
22:54.24Pedrowhat best xandroid for my htc touch pro 2 sprint ???
22:54.26Pedrowhat best xandroid for my htc touch pro 2 sprint ???
22:54.35GNUtoo|n900desktop is powered off
22:54.52Cotullawhere ur last alsa stuffs located?
22:55.00Alex[sp3dev]dcordes: you can actually add a remote branche from the git on your hard drive. then you can do git pull on cotulla's repo copy and git merge remote/cotulla_repo in the directory of your repo
22:56.41GNUtoo|n900http://gitorious.org/htc-msm-2-6-32/leviathan-incoming/commit/a604b47031fd68cbd426709c130aa2f03ead0531
22:56.49GNUtoo|n900ab used = 1
22:57.15GNUtoo|n900ab actual size = xfer
22:57.49GNUtoo|n900i bet that,if restored...could change something
22:58.12GNUtoo|n900to restore it qdsp6 changes are needed
22:58.39GNUtoo|n900what I have works....badly....but works and is a starting point
23:00.27GNUtoo|n900also the console keyboard is usable...but...
23:00.42GNUtoo|n900a better keyboard could be better
23:03.24torgrimtGNUtoo|n900: seems like all my readers in laptops have bugs in their drivers and wont work properly.
23:03.35torgrimtGNUtoo|n900: guess ill have to buy a new one or something another day
23:04.09GNUtoo|n900or use your phone to format the card
23:04.30torgrimti broke android ;) so if its doable from clockwork, then it might be possible
23:04.54GNUtoo|n900yes it could be done...but it could be hard
23:05.09GNUtoo|n900depending on how much tools are there
23:05.16dcordesAlex[sp3dev]: ok
23:05.21dcordesgn
23:05.24GNUtoo|n900fastboot a recovery
23:05.43dcordesCotulla: will let you know if I got it working thx again
23:05.47GNUtoo|n900and try to format the card in linux and ext3
23:05.52Cotullaokay\
23:06.18GNUtoo|n900i'll go aoon
23:06.35FsTluxeBB professors..
23:06.54Alex[sp3dev]he called us professors. what an insult
23:07.01Cotullawho
23:07.04Cotullaand he lefs
23:07.06Cotullalefts
23:07.16Cotullahe bad troll]\
23:07.29GNUtoo|n900professor is like teacher?
23:07.40GNUtoo|n900it seem like a compliment
23:07.49Cotulla_/-\_/-\_/-\_/-\_
23:07.57Alex[sp3dev]what's that? a sine?
23:08.08GNUtoo|n900clock...
23:08.11Cotullasaw
23:08.16Cotulla:D
23:08.29stickman89I lol'd
23:08.39GNUtoo|n900maybe a gpio state?
23:08.44Cotullahm maybe :D
23:08.46torgrimtGNUtoo|n900: clockwork can do "format sdcard"
23:09.01GNUtoo|n900ok but format in ext3
23:09.20Cotulla______/-\_/-\_/-\_/-\__
23:09.20Cotulla|...........................|
23:09.20Cotulla\__________________/
23:09.30*** join/#htc-linux mitsutaka (~mitsutaka@p1227-ipbf3907marunouchi.tokyo.ocn.ne.jp)
23:09.34Alex[sp3dev]that's i2c
23:09.34torgrimtit said, cant mount /dev/block/mcblk0 or mcblck0p1 ;)
23:09.48GNUtoo|n900hmmm
23:09.54stickman89lol cotulla is that the titanic
23:10.10stickman89I see why is sunk
23:10.15torgrimtwhen i put clockwork in share usb card, it displays as this
23:10.18torgrimtDisk /dev/sdf: 1015 MB, 1015808000 bytes
23:10.22torgrimt<PROTECTED>
23:10.22torgrimt/dev/sdf1   *           1        1016      991585+  83  Linux
23:10.27torgrimtseems to be correct
23:10.34Cotullaya I am coding under My Heart Will Go On now :D
23:10.53GNUtoo|n900remember what I said about usb?
23:11.02torgrimtyes i do
23:11.08GNUtoo|n900i'll go soon
23:11.10torgrimtbut it seems correct, that was what i meant
23:11.24torgrimtoki, ill try some hacking for a while. then ill just buy a new cardreader tomorrow
23:11.27GNUtoo|n900but you could try to format /dev/sdf
23:11.44GNUtoo|n900with mkfs.ext3
23:11.45stickman89hahah cotulla make sure she falls of the boat soon though!
23:11.52torgrimtmkfs without the partition ?
23:11.54stickman89sooner even
23:12.05GNUtoo|n900and try to mount it...from the phone after
23:12.11GNUtoo|n900yes
23:12.15torgrimtoki
23:15.47GNUtoo|n900torgrimt else try to format from command line on the phone trough adb
23:16.11GNUtoo|n900and extract the image on microsd
23:16.22GNUtoo|n900and boot on SHR
23:19.30GNUtoo|n900i'll go bye
23:24.42*** join/#htc-linux localhost (~Chris@cpe-76-188-107-188.neo.res.rr.com)
23:25.16*** join/#htc-linux ocm (~ocm@189.152.182.143)
23:36.57*** join/#htc-linux Claudis (5cedcd69@gateway/web/freenode/ip.92.237.205.105)
23:37.01Claudishi
23:37.09*** join/#htc-linux Samsungu_ (~Samsunguy@cpe-76-186-50-40.tx.res.rr.com)
23:38.01Claudisanyone here?
23:39.03*** join/#htc-linux Samsungu_ (~Samsunguy@cpe-76-186-50-40.tx.res.rr.com)
23:44.59*** part/#htc-linux Cotulla (~opera@nat004-252-205-109.tvoe.tv)
23:46.40*** join/#htc-linux g3rm_mobi (~AndChat@109.243.46.6)
23:54.14stickman89yup
23:58.14*** part/#htc-linux t3g (~t3g@p3E9E78E6.dip.t-dialin.net)
23:58.32*** join/#htc-linux AgentBlair (~AgentBlai@adsl-67-124-200-190.dsl.sndg02.pacbell.net)

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