IRC log for #htc-linux on 20120420

00:00.30jonpry3.3 has some topaz support
00:01.18CptAJ[vzla]monodie is probably the crucial similarity between the whitestone and topaz
00:01.42jonprythats just a pmem problem no?
00:03.00CptAJ[vzla]yeah
00:04.12jonpryif you postup your board file i can probably port it to 3.3 in less than an hour
00:04.22d3tul3lol
00:05.07d3tul3you probably need to copy board-htctopaz-led from emwe
00:05.07jonprydid you push that tssc patch?
00:05.33jonpryis that microp-ng?
00:06.09d3tul3yeah it's the thing that uses -ng
00:06.27jonpryso 35?
00:06.27d3tul3i only have the tssc thing locally (together with the alignment trap disable) https://www.gitorious.org/~detule/linux-msm-rhod/detules-linux-msm-rhod/commit/9af07396054e16080d9aabfebb3980fa580f83ea
00:06.53d3tul3i mean you can try using our board-htcrhodium-led but sounds like his device is closer to topaz
00:08.08jonpryi dunno if that even needs to be done for a first pass. but we did figure out the microp irq at some point
00:09.06d3tul3even the led screen is in there
00:10.38jonpryi'm going to cherry-pick the tssc
00:11.06*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-nyxvkeavqkroqwqs)
00:11.06d3tul3i guess disabling the alignment trap shouldn't do much with the old toolchain
00:11.19CptAJ[vzla]jonpry, all my changes are in that ugly patch I sent. check it out
00:11.39jonprythat patch is incomplete
00:11.55d3tul3whoa?
00:12.13d3tul3oh the one he sent
00:12.24jonpryit shows +3 lines for board file
00:12.34d3tul3jonpry, i also needed https://gitorious.org/~detule/linux-msm-rhod/detules-linux-msm-rhod/commit/15405d41f8c103cc647592e404eb3b071e258773 in order to compile with codesourcery 2011.09
00:12.45CptAJ[vzla]its a patch for the whitestone branch
00:12.57CptAJ[vzla]the initial board files are already up in the branch
00:13.09jonpryyour killing me here
00:13.14CptAJ[vzla]I only fixed the memory and GPIO-based keys
00:14.15CptAJ[vzla]want me to pastebin or zip the files up for you?
00:14.29jonpryplease
00:14.34*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-etvonlvfariatqit)
00:15.04*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-jbcymxdoolrhdzcf)
00:15.34*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-sgrealzaekhnybgn)
00:15.46d3tul3think the alignment trap will break the kernels built with the old toolchian?
00:16.36jonpryno. i think the new toolchain is the only one that generated unaligned access code
00:17.32jonpryis this -werror patch safe?
00:17.34*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-thonwtrtrgflktxw)
00:17.37d3tul3it is
00:18.01d3tul3afaik werror just means treat warnings as errors
00:18.58jonpryall that goodness in 3.3 and 3.2 now
00:19.35jonpryno more ancient compilers. just ones that generate bad code
00:19.52d3tul3ha
00:22.05CptAJ[vzla]jonpry, http://dl.dropbox.com/u/38620067/whitestone_source_files.zip
00:22.28jonprylol that stable tag think on lkml is still going. with linus now talking about the fabric of reality
00:23.28*** join/#htc-linux ccube (ccube@nx.ccube.de)
00:23.59CptAJ[vzla]that pmem reduces topaz's memory btw. The end of the first block is at 102mb for whit and 104 for topaz
00:24.48*** join/#htc-linux milaq|afk (~milaq@v2201204121607874.yourvserver.net)
00:25.09CptAJ[vzla]*goes back to wrestling with smd*
00:25.48jonprybtw i had these same smd wakelock crashes back in the early days of 39. i don't remember what it was but it might be in the logs
00:27.04*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-fjgsowtxwxtamqfo)
00:27.34*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-yaxmvvpjpikyzode)
00:27.58jonprywhat is the whitestone mach type?
00:28.21CptAJ[vzla]2514
00:30.33d3tul3CptAJ[vzla], no need to wrestle too much just replace that if/else block to ch_set_state(ch, SMD_SS_OPENING); for starters
00:30.33d3tul3
00:31.04*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-qzqtdvregvxafcrx)
00:32.29CptAJ[vzla]I'm still trying to understand whats happening there. I'm getting that smd_open assumes that the current state is CLOSED. Then from that it can only move to opening and then to open.
00:32.55CptAJ[vzla]So when it actually is closing instead of closed, it flips something and then moves to opening
00:33.21CptAJ[vzla]why would that affect me though? Isn't the state I'm waiting for OPEN?
00:33.34*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-szrkeelgpmofetti)
00:34.19d3tul3yes
00:34.23d3tul3but in smd_state_change
00:34.33d3tul3the notification is sent only if new_state != old_state
00:35.28d3tul3sorry in smd_irq_hanlder
00:36.59d3tul3we receive ack from the server that the state is OPEN but since we have already forced the state to OPEN (without waiting for ack) it never enters smd_state_change
00:37.43d3tul3and never sends ch->notify
00:38.50CptAJ[vzla]doesn't smd_kick notify anyway?
00:39.41CptAJ[vzla](sorry for being slow on this XD)
00:41.29*** join/#htc-linux ccube (ccube@nx.ccube.de)
00:45.32d3tul3i can't say if it ever enters the codepatch in smd_kick
00:46.51*** join/#htc-linux mitsutaka (~mitsutaka@221.219.116.16)
00:58.43*** join/#htc-linux khorben_ (~dont@port-83-236-217-161.static.qsc.de)
00:58.57d3tul3likely not since i doubt at that point recv->state is OPEN
01:00.08jonpryurg, where do i get board_mcp_monodie()
01:03.44CptAJ[vzla]lemme look
01:03.50jonpryjust need that and it should be done
01:03.58d3tul3http://gitorious.org/linux-on-qualcomm-s-msm/linux-msm/blobs/htc-msm-2.6.27-whitestone/arch/arm/mach-msm/devices.c
01:04.05CptAJ[vzla]cant you just machine_is_htcwhitestone()?
01:05.04jonprywell i didn't write this pmem of yours
01:05.15jonprybut it seems to support both monodie and dualdie
01:05.45jonpryhowever your boardfile never calls the atag parser for it, so not sure how that would be working
01:06.41jonpryoic
01:06.42CptAJ[vzla]I think the conditionals are just checking for the whitestone machine type instead of parsing the board SKUID
01:06.56CptAJ[vzla]topaz uses that
01:07.36jonprycooking with gas
01:08.04*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-qkydfoaubgjjrvgq)
01:08.53jonpryhow should we do this? i'll push it and you grab it from autobuild?
01:10.31d3tul3jonpry, that __tagtable takes care of business?
01:10.32CptAJ[vzla]sure. where are you pushing to?
01:10.53jonprytagtable?
01:11.14d3tul3in devices.c __tagtable(ATAG_MONODIE, parse_tag_monodie);
01:11.41jonpryhttps://gitorious.org/linux-msm-rhod is the repo. http://autobuild.wirelesstcp.net/ is the build. hasn't run yet though. whitestone will be in commit 215b4b4
01:12.00CptAJ[vzla]I'll give it a whirl
01:13.45jonpryit looks like they detect monodie in haret and pass it in an atag
01:14.35*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-lmqkqxwsphktldvk)
01:20.06*** join/#htc-linux skynet (SkyNet-200@gateway/shell/trekweb.org/x-dbwsbmpwprzlmbhr)
01:20.34*** join/#htc-linux Guest52595 (SkyNet-200@gateway/shell/trekweb.org/x-supsckfkomddiwvf)
01:23.34*** join/#htc-linux skyneu (SkyNet-200@gateway/shell/trekweb.org/x-qloofiboiqhddfmy)
01:23.42*** join/#htc-linux skynet-2000 (SkyNet-200@unaffiliated/skynet2000)
01:23.42*** join/#htc-linux skynet-2000 (SkyNet-200@gateway/shell/trekweb.org/x-qloofiboiqhddfmy)
01:24.29jonprylooks like the autobuild has finished
01:25.32*** join/#htc-linux ALoGeNo (~alogeno@unaffiliated/alogeno)
01:32.05*** join/#htc-linux rpierce99 (~rpierce99@96-42-107-19.dhcp.stcd.mn.charter.com)
01:32.51CptAJ[vzla]no dice
01:33.07CptAJ[vzla]doesn't do the vibrate twice thing
01:36.40jonpryi'll look at it again tomorrow
01:37.47jonpryyou using a 35+ capable haret?
01:38.25jonpryand startup.txt
01:47.47d3tul3jonpry, mach-msm/Makefile
01:48.39jonpryoh yeah something is not right
01:49.38jonpryok b5f5970 ftw
01:50.50d3tul3you work fast
01:52.03jonprysometimes :p
01:52.55rpierce9936h in I've used 44% of my battery, it looks like wifi off yields even better battery life
01:53.20*** join/#htc-linux ali1234 (~ajbuxton@s15821883.onlinehome-server.info)
01:53.27jonpryurg. wish i could get that
01:54.22d3tul3the 300 is a beast
01:57.51*** join/#htc-linux Bry8Star (~Bry8Star@gateway/tor-sasl/bry8star)
02:02.47*** join/#htc-linux Bry8Star{EB (Bry8Star-@2607:f128:42:fb::2)
02:06.13*** join/#htc-linux mitsutaka (~mitsutaka@219.143.36.82)
02:13.09*** join/#htc-linux mitsutaka (~mitsutaka@219.143.36.82)
03:17.08CptAJ[vzla]jonpry, two-vibrate but no boot. No panel
03:17.17CptAJ[vzla]just frozen winmo screen
03:17.49CptAJ[vzla]maybe its haret? I'm using the one packed with frx
03:18.10d3tul3you need a new one
03:18.38d3tul3http://forum.xda-developers.com/showpost.php?p=14519408&postcount=1
03:18.50d3tul3make sure you add the offset to startup.txt
03:21.48CptAJ[vzla]same result
03:26.23d3tul3post a haretconsole for the man
03:28.47d3tul3ups we may have broken something in our kernels with the toolchain commits - just got a report from a rhod user that something is off
03:29.46ahigerdGlad I didn't update :D
03:33.31CptAJ[vzla]that haret isnt working with my haretconsole nor haretscripting =(
03:35.14d3tul3~ramconsole
03:35.14aptrumour has it, ramconsole is pwf dm 0x8e0000 0x20000
03:36.18d3tul3if you create a new folder with haret.exe inside and startup.txt with only that line it should dump it to a file
03:42.44jonpryi think ramconsole is broken for whitestone
03:43.33d3tul3jonpry, you saw that post on xda?
03:43.39jonpryno
03:43.45jonprywhat happened?
03:44.28d3tul3http://forum.xda-developers.com/showpost.php?p=25075812&postcount=204
03:45.04jonpryouch
03:45.08d3tul3i'll try compiling with the old toolchain tomorrow see if perhaps the alignment trap is needed
03:45.54jonprycould be
03:54.18jonpryjust pushed a new whitestone with ramconsole and hopefully working usb
04:25.48*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
04:46.00*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
04:48.11CptAJ[vzla]g16bad07 went back to not even getting to the two vibrates. trying to get ramconsole...
05:00.19CptAJ[vzla]fuck, they just tried to carjack my girlfriend
05:00.58CptAJ[vzla]this country is going to shit. I should get an AK
05:02.21*** join/#htc-linux a (7664bc30@gateway/web/freenode/ip.118.100.188.48)
05:02.47*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
05:04.51CptAJ[vzla]she outran them though so its cool. she's a badass XD
05:05.28CptAJ[vzla]http://paste2.org/p/1986685 anyway, here's ramconsole for the g16bad07 build
05:17.06*** join/#htc-linux CptAJ[vzla] (AJ@190.74.22.95)
05:22.18*** join/#htc-linux arrrghhh (~arrrghhh@unaffiliated/arrrghhh)
05:27.15*** join/#htc-linux zeusk (77eb360e@gateway/web/freenode/ip.119.235.54.14)
06:12.31*** join/#htc-linux CptAJ (AJ@190.74.22.95)
06:13.11*** join/#htc-linux kiozen (~kiozen@p578a42db.dip0.t-ipconnect.de)
06:54.01*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
06:59.32*** join/#htc-linux LordDeath (~LordDeath@cable-81-173-165-254.netcologne.de)
07:09.06*** join/#htc-linux khorben__ (~dont@mahce.defora.org)
07:57.57*** join/#htc-linux gauner1986 (~Miranda@ip-109-91-241-106.unitymediagroup.de)
08:14.31*** join/#htc-linux MacDrunk (~marper@201.165.163.85)
08:16.29*** part/#htc-linux MacDrunk (~marper@201.165.163.85)
08:36.13*** join/#htc-linux MacDrunk (~marper@201.165.163.85)
09:46.38*** join/#htc-linux Bry8Star (~Bry8Star@gateway/tor-sasl/bry8star)
09:51.50*** join/#htc-linux helicopter88 (~helicopte@host4-112-dynamic.46-79-r.retail.telecomitalia.it)
10:17.48*** join/#htc-linux Vetta- (~Vetta-@stgt-4d02fc5d.pool.mediaWays.net)
11:13.34*** join/#htc-linux whitekidney (~wk@141.0.136.22)
11:18.07*** join/#htc-linux mitsutaka (~mitsutaka@221.219.116.16)
11:22.17*** join/#htc-linux rajkosto (~rajkosto@de.iandoh.info)
11:26.21*** join/#htc-linux ALoGeNo (~alogeno@unaffiliated/alogeno)
11:31.14*** join/#htc-linux zeusk (77eb360e@gateway/web/freenode/ip.119.235.54.14)
11:31.39*** join/#htc-linux marc1706 (~marc@phpbb/modifications/marc1706)
11:41.44*** join/#htc-linux Rajko (~rajkosto@cable-94-189-238-58.dynamic.sbb.rs)
11:44.10*** join/#htc-linux rajkosto (~rajkosto@cable-94-189-238-58.dynamic.sbb.rs)
11:45.04*** join/#htc-linux bitrot (~rajkosto@de.iandoh.info)
11:45.41*** join/#htc-linux Alex[sp3dev] (~alexander@178.176.109.183)
11:48.12zeuskAlex, power key works on rhod/kovsky ?
11:48.22zeusk(in lk)
12:02.52*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
12:05.31*** join/#htc-linux ahigerd (~ahigerd@173.218.156.102)
12:05.31*** join/#htc-linux ahigerd (~ahigerd@libqxt/developer/ahigerd)
12:17.43*** join/#htc-linux paulk-desktop (~paulk@lib33-1-82-233-88-171.fbx.proxad.net)
12:35.04*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
12:52.40*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
12:59.44*** join/#htc-linux ALoGeNo (~alogeno@unaffiliated/alogeno)
13:00.40*** join/#htc-linux mgross029 (~mgross@cpe-107-10-11-218.neo.res.rr.com)
13:06.35*** join/#htc-linux ahigerd (~ahigerd@173.218.156.102)
13:06.35*** join/#htc-linux ahigerd (~ahigerd@libqxt/developer/ahigerd)
13:20.15*** join/#htc-linux Cotulla (~myfakemai@nat100-255-205-109.tvoe.tv)
14:01.33*** join/#htc-linux apt (~apt@rikers.org)
14:01.33*** topic/#htc-linux is Welcome to the HTC Linux project | Community portal & WiKi http://htc-linux.org | For IRC logs, HaRET & kernel mailing lists etc. see http://htc-linux.org/wiki/index.php?title=Contact | The htc-linux.org project is not affiliated with the HTC Corporation | This channel is for development purposes - Join #htc-linux-chat for offtopic
14:08.20d3tul3Alex[sp3dev], that x1 patch -> no objections? i can't test it but i guess helicopter88 has been using it with gbx
14:08.46helicopter88I've ran it in the past,and worked well
14:15.03*** join/#htc-linux surge (surge@pool-98-118-183-214.bflony.fios.verizon.net)
14:22.36*** join/#htc-linux zeusk (77eb360e@gateway/web/freenode/ip.119.235.54.14)
14:29.31Alex[sp3dev]d3tul3: no objections. sorry i'm not working on x1 at the moment. busy with real life. and sgs2 sometimes
14:31.50d3tul3alright i think that's the last patch in the pipeline for gbx0c or whatever arrrghhh plans on naming that beast
14:32.04arrrghhhheh
14:32.13arrrghhhI'll call it ICS just to confuse people.
14:32.29arrrghhhics0e
14:33.01*** join/#htc-linux balans21 (~user@82-170-217-205.ip.telfort.nl)
14:33.35zeusklol
14:36.50ahigerdWhat does "ICS" stand for that package, arrrghhh? :P
14:37.05ahigerdguesses "I Can't Say"
14:39.31arrrghhhheh
14:39.37arrrghhhi like that
14:44.29jonpryBESTEST BILD EVAR?
14:44.35*** join/#htc-linux whitekidney (~wk@141.0.136.22)
14:47.25d3tul3jonpry, i guess wifi doesn't like no sw alignment trap
14:47.47*** join/#htc-linux Rajko (~rajkosto@cable-94-189-238-58.dynamic.sbb.rs)
14:47.52Alex[sp3dev]OEM Y U PREINSTALL CRAPWARE
14:47.58jonprynot yet anyways
14:48.16d3tul3yeah seems fine with the 2011-09
14:48.31jonprystrange
14:48.42jonprypeople and there old toolchains
14:49.10d3tul3gitorious is being difficult this morning
14:49.14jonprywhere is 2012-q1?
15:01.16arrrghhhdetule, perhaps more people are using your kernels than you originally thought
15:01.33arrrghhhsurprised so many people reacted when 3.3.1 was no bueno lol
15:01.40d3tul3perhaps enough for a 5v5 ball game
15:01.45arrrghhhhahaha
15:02.16d3tul3plus we are close to adding the one whitestone user in the world
15:02.38d3tul3close being used loosely here
15:04.12arrrghhhlol
15:07.23ahigerdd3tul3: 60a2 the one you just pushed?
15:10.50d3tul3yes
15:38.39*** join/#htc-linux apt (~apt@rikers.org)
15:38.39*** topic/#htc-linux is Welcome to the HTC Linux project | Community portal & WiKi http://htc-linux.org | For IRC logs, HaRET & kernel mailing lists etc. see http://htc-linux.org/wiki/index.php?title=Contact | The htc-linux.org project is not affiliated with the HTC Corporation | This channel is for development purposes - Join #htc-linux-chat for offtopic
16:06.50*** join/#htc-linux raymonddull (d03628b8@gateway/web/freenode/ip.208.54.40.184)
16:17.52*** join/#htc-linux ALoGeNo (~alogeno@unaffiliated/alogeno)
16:18.55*** join/#htc-linux kiozen (~kiozen@ppp-93-104-94-104.dynamic.mnet-online.de)
16:41.06*** join/#htc-linux rajkosto (~rajkosto@de.iandoh.info)
16:50.16*** join/#htc-linux ALoGeNo (~alogeno@unaffiliated/alogeno)
16:51.35*** join/#htc-linux mitsutak_ (~mitsutaka@123.116.126.255)
16:57.29*** join/#htc-linux zeusk_ (77eb360e@gateway/web/freenode/ip.119.235.54.14)
16:58.05CptAJhey, there's TWO whitestone users in the world, I'll have you know
16:58.29CptAJthe other one is just shy and doesn't log on here XD
16:58.40zeusk_that's quite a lot of users..
16:58.44zeusk_lol
16:58.53zeusk_must be hard supporting them
16:59.39CptAJThere was quite a bit of interest in the ppcgeeks forum but I posted my findings and no one noticed =(
17:00.01CptAJThere's still some movement in the EnergyROM threads for it
17:01.08CptAJIncidentally, I haven't heard from Juan (the other user) in a week. There's been some flooding in his part of the country. Hope he isn't dead
17:03.18zeusk_hope his whitestone is fine as well
17:03.45zeusk_otherwise it is a bad news for you CptAJ
17:04.17Alex[sp3dev]btw, guys. what is the first result when you type "fine as well" into google images search?
17:04.26*** join/#htc-linux helicopter88 (~helicopte@host4-112-dynamic.46-79-r.retail.telecomitalia.it)
17:08.54Cotullalol Alexx
17:08.56Cotullawho is he
17:09.12CotullaOMG
17:09.13CotullaWTF
17:09.35Alex[sp3dev]whaaat
17:09.36Cotullaand iOS screen as usual
17:09.50Cotullalol
17:10.08CotullaI readed article today in the underground
17:10.09arrrghhhAlex[sp3dev], http://www.walpoleantiques.com/images/medium/775c.jpg?
17:10.13Cotullaand thought such funny word
17:10.16Cotullalikelihood
17:10.17Cotulla:D
17:10.19arrrghhhheh
17:10.21arrrghhhthat is a funny word
17:10.25Cotullayep
17:10.28arrrghhhalso, just 'read'
17:10.35arrrghhhreaded es no bueno
17:10.50Alex[sp3dev]arrrghhh: yes, but i don't know what that object is ;)
17:11.04arrrghhhi don't either
17:11.06Cotullaass on statement?
17:11.10arrrghhhlooks like an animal's rear end
17:11.15Cotullait's clear
17:15.21arrrghhhAlex[sp3dev], lol
17:15.26*** join/#htc-linux |Jeroen| (~jeroen@d5153E8CC.access.telenet.be)
17:15.29arrrghhhit's a "polished Coco de Mer"
17:15.49arrrghhhonly 4,000 british pounds
17:15.54arrrghhhlike is something like 6k USD
17:15.58arrrghhhlol
17:16.02arrrghhhdat ass could be yours
17:16.23*** join/#htc-linux zeusk (77eb360e@gateway/web/freenode/ip.119.235.54.14)
17:16.51arrrghhhaw, it's some palm plant.  how disappointing.
17:17.20Alex[sp3dev]Male Coco de Mer inflorescence
17:17.24Alex[sp3dev]http://en.wikipedia.org/wiki/File:CocoMale.jpg
17:17.31zeuskand my net keeps timing out..
17:18.17CptAJman, that's one x-rated tree
17:19.03Cotullalol
17:19.13CptAJI bet "being funny to humans" is a beneficial evolutionary trait
17:19.14*** join/#htc-linux ALoGeNo (~alogeno@unaffiliated/alogeno)
17:20.26arrrghhhhah
17:21.07*** join/#htc-linux d3tul3 (~detule@unaffiliated/d3tul3)
17:21.59d3tul3CptAJ, you might even get a double vibe with the autobuild now
17:23.07CptAJdownloading
17:26.00zeuskmy first time looking at leaked qualcomm docs... wtf
17:28.47CptAJd3tul3, http://paste2.org/p/1987217 that's my startup with these. It's ok, right? (just being thorough)
17:30.01d3tul3sure i have no idea what no_console_suspend is
17:30.15d3tul3and pm.sleep_mode=2 means no power collapse but that's ok
17:30.42CptAJthats there from my 27 debugging
17:31.12CptAJkeeps the console talking when suspended so I can see through adb
17:31.27CptAJI think... I don't remember if it worked or not XD
17:31.41d3tul3using the new haret right?
17:31.45CptAJyeah
17:32.04d3tul3(btw that guy is backward compatible with .27)
17:33.19CptAJtwo vibes confirmed
17:33.28CptAJfrozen winmo screen though
17:34.40d3tul3cool pull the ramconsole to keep jonpry busy during his downtime
17:37.51CptAJdid you guys move ramconsole?
17:38.01CptAJlog came out borked
17:38.13d3tul3nope should be the same as the kernel you last used last night
17:38.32d3tul3perhaps winmo overwrote it?
17:39.19CptAJI think it did a lap around it
17:39.23CptAJoverwrote itself
17:39.27CptAJhttp://paste2.org/p/1987232
17:39.49CptAJI'll give it another try and reset faster this time
17:43.38d3tul3probably come out the same
17:44.11CptAJhttp://paste2.org/p/1987237 yup
17:45.54d3tul3we need to add the machine_is_whitestone clauses in smd for you -> i can add that after lunch
17:54.05jonpryouch
17:57.16*** join/#htc-linux LordDeath (~LordDeath@cable-81-173-165-254.netcologne.de)
18:03.24*** join/#htc-linux zeusk (77eb360e@gateway/web/freenode/ip.119.235.54.14)
18:08.37CptAJnothing about the whitestone is ever easy =(
18:16.19zeusknothing related to qualcomm is ever easy
18:22.53*** part/#htc-linux Cotulla (~myfakemai@nat100-255-205-109.tvoe.tv)
18:23.10*** join/#htc-linux Cotulla (~myfakemai@nat100-255-205-109.tvoe.tv)
18:23.11*** part/#htc-linux Cotulla (~myfakemai@nat100-255-205-109.tvoe.tv)
18:24.40*** join/#htc-linux rajkosto (~rajkosto@de.iandoh.info)
18:55.52*** join/#htc-linux ahigerd (~ahigerd@173.218.156.102)
18:55.52*** join/#htc-linux ahigerd (~ahigerd@libqxt/developer/ahigerd)
19:07.57*** join/#htc-linux kiozen (~kiozen@ppp-93-104-94-104.dynamic.mnet-online.de)
19:10.26*** join/#htc-linux [acl] (~abel@96.246.167.90)
19:10.33d3tul3oh damn
19:12.27ahigerd?
19:20.00d3tul3CptAJ, smd whitestone support is in 3.3 -> though mind you this is the same broke ass smd from .27
19:24.41[acl]haha.. broke ass
19:24.59d3tul3(c) jonpry
19:25.08[acl]aka "the pry"
19:25.11Alex[sp3dev][acl]: your majesty what made you enter this deserted land?
19:25.23[acl]my boss finally came back
19:25.27jonpryhey [acl]
19:25.28[acl]i can sleep and eat again
19:25.45[acl]and poop too
19:26.02[acl]surprised yall are still here.. Figured Pry would be selling his pads by now..
19:26.20jonprynah got distracted
19:27.15jonprywe are the last of rhod users
19:27.53[acl]damn
19:27.57[acl]i wanted the pry pad
19:28.16d3tul3the touchpad kinda is the prypad
19:28.41[acl]so hard to get my hands on a touchpad
19:28.49jonpryi will get back on it
19:28.50[acl]plus i figured pry would give me the "best friend" pricing
19:29.41d3tul3i guess he really meant it
19:30.03[acl]lol
19:30.33*** join/#htc-linux rob_w (~bob@ppp-88-217-64-89.dynamic.mnet-online.de)
19:30.34*** join/#htc-linux rob_w (~bob@unaffiliated/rob-w/x-1112029)
19:33.41[acl]can't belive so much time has passed. Dang it was just like yest when we started working on stuff. Sad how time flies
19:44.43*** join/#htc-linux jonpry (~jon@adsl-98-85-69-254.mco.bellsouth.net)
20:10.02arrrghhh[acl], we're old men now :P
20:10.09[acl]arrrghhh: i know
20:10.14[acl]see a bunch of young bucks here
20:10.28[acl]this must make phh feel like a grandfather ..
20:10.39[acl]even tho is he younger than me
20:10.40arrrghhhhahaha
20:10.40phhindeed
20:10.45arrrghhhwassup grandpa
20:11.01phhworking for a school robotic project
20:11.04arrrghhhnice
20:11.07CptAJd3tul3, mmc is broken. Did you setup the sd card status gpio to 38?
20:11.15CptAJwe're starting to boot now though
20:11.44[acl]phh: really? i did some robotics work back in the days. using some old school motorola 6811 crap.. jebus now im gonna cry thinking about how old i am
20:12.19phh[acl]: yeah well, now it's a stm32f4, cortex-m4 @ 168MHz, ""a bit"" overkill :p
20:12.43ahigerdThinking that I've been writing code for 25 years makes me feel old
20:12.59phhi'm 22.
20:13.05CptAJphh, the code for AI still sucks though
20:13.13[acl]ahigerd: damn you are old :-p
20:13.19[acl]dont even know who u are tho
20:13.23arrrghhhlol
20:13.35d3tul3i've been writing code for 6 months
20:13.46arrrghhhlies
20:13.51d3tul3and by writing i mean kanging
20:14.00[acl]d3tul3: this is why you are the new breed of devs ..
20:14.06arrrghhhlol
20:14.09Alex[sp3dev]i've been writing code for 4 hours today
20:14.11[acl]stronger, faster.. more advanced
20:14.15[acl]lol
20:14.20ahigerd[acl]: In my defense I started writing code when I was 5.
20:14.33ahigerdBRB
20:14.51CptAJI wrote my first hello world at 7th grade
20:14.51[acl]"ahi" ati handheld interface ? what else could it stand for
20:15.17Alex[sp3dev]shakes CptAJ's hand
20:15.24CptAJbut it has always been a bit of an on and off hobby. I'm actually a lawyer >_>
20:15.34*** join/#htc-linux raymonddull (~raymonddu@c-69-245-114-102.hsd1.mi.comcast.net)
20:15.49[acl]CptAJ: damn.. so we better not look at your code then..
20:15.54[acl]:-p
20:15.57Alex[sp3dev]CptAJ: you mean you're that kind of guy which makes cool it projects fail because of patents?
20:16.17CptAJ[acl],  obfuscation takes on a whole new meaning with me
20:16.44CptAJAlex[sp3dev], yeah, I'm here to sue you guys to the grave tbh
20:17.12[acl]lol
20:17.38CptAJbut nah, I'm not a patent lawyer. We don't really give a flying fistfuck about intellectual property in my country
20:17.47[acl]CptAJ: so if we get in trouble for reversing windows.. you will bail us out right ?
20:17.55CptAJthey even sell bootleg bluerays at newstands here
20:18.04[acl]as long as someone bails me out
20:18.11[acl]but if im going down, im taking alex down with me :-p
20:18.16raymonddulllol
20:18.22CptAJwell, you could run this way and I'd let you crash on the couch XD
20:18.24[acl]possibly JB as well
20:18.28raymonddullwell if you were going down it would've happened already
20:18.34raymonddullso I think you're safe
20:18.49[acl]im sure we are safe..some of our commit comments had disassembled winmo
20:18.52[acl]lol
20:19.00[acl]no one gives a fuck apparently
20:19.28d3tul3dissass winmo is bad?
20:19.37d3tul3i think i posted some on the mailing list
20:19.51[acl]in the US, yeah you can get in trouble
20:20.02CptAJdepends on the country you're on and the eula you accepted >_>
20:20.04d3tul3ugh sorry MS
20:20.07Alex[sp3dev]in Russia, you can disassemble software you have obtained legally
20:20.36[acl]explains cotulla's work ...lol
20:20.50CptAJin venezuela, a judge wouldn't even understand the charges
20:20.56arrrghhhin Soviet Russia, software disassembles you
20:21.04d3tul3CptAJ, mmc is in probably take the autobuild a few mins 89f89e7 is what you are looking for
20:21.20[acl]lol
20:21.27[acl]arrrghhh: lol bro thats a classic
20:21.51arrrghhh:)
20:21.59Alex[sp3dev][acl]: have you seen our picture of the day
20:22.09[acl]nope
20:22.10Alex[sp3dev]http://www.walpoleantiques.com/images/medium/775c.jpg
20:22.17arrrghhhahahahaha
20:22.21arrrghhhnow guess wtf it is
20:22.30[acl]looks like a new logo for LK
20:22.38[acl]:-p
20:25.12Alex[sp3dev]hmm. is it hard to boot fedora via PXE?
20:25.59raymonddullits been forever since I tried, but last I looked, yes
20:26.32Alex[sp3dev]i have booted ubuntu via pxe in the past. i even installed it onto my classmate's laptop this way
20:26.41Alex[sp3dev]but i hate messing with configs and setting up dhcp
20:26.52raymonddullarrrghhh, http://www.demotivationalinc.com/files/photo/32/in-soviet-russia-presents-open-you1-demotivational-poster-1.jpg
20:27.35Alex[sp3dev]when it comes to presents i remember http://xkcd.com/835/
20:27.37arrrghhhsite blocked
20:27.38arrrghhhdamnit
20:27.49[acl]LOL
20:27.53[acl]ohh man classic
20:28.06raymonddullits "in soviet russia, presents open you", and there's big boxes on the couch and little boxes cutting open kids
20:28.10arrrghhhah that's better
20:28.15arrrghhhi have ways around the blocks ;)
20:28.19raymonddulllol
20:29.00raymonddullhmm, windows xp setup says 39 minutes till install is done, I need to ship the laptop and post office closes in 32 minutes. challenge accepted
20:29.29Alex[sp3dev]solution - install ubuntu/
20:29.47raymonddullproblem-sold as running windows xp pro
20:30.07raymonddullthey're gonna like me when this thing gets there
20:30.50raymonddullI sold it as having a 30gb hard drive, 1.5ghz cpu, radeon 7500, it actually has an 80gb hard drive, 1.7ghz cpu, radeon 9000, I sold it before getting it, and the type number on the picture was wrong. lol
20:31.27arrrghhhdamn
20:31.28Alex[sp3dev]hmm. who's buying that?
20:32.13Alex[sp3dev]i actually have a similiar laptop laying around (my former roommate left it when leaving). but it has no hdd and no ram ;)
20:32.33raymonddullsome guy on ebay
20:32.41raymonddullits a thinkpad t42
20:33.00Alex[sp3dev]which would automatically make it fappable?
20:33.03raymonddullI paid $35, sold for $68, all i did was spend 5 minutes with a screwdriver and a heat gun
20:33.20raymonddulland yes, thinkpad automatically makes it fappable
20:33.21raymonddulllol
20:33.38arrrghhhlol
20:33.44CptAJd3tul3, and booted
20:34.04raymonddullwanna see my best flip?
20:34.13CptAJwhere was the repo for that?
20:34.33raymonddullhttp://www.ebay.com/itm/230770425133?ssPageName=STRK:MEWNX:IT&_trksid=p3984.m1439.l2649   <before me touching it |   after me touching it > http://www.ebay.com/itm/270959113638?ssPageName=STRK:MESOX:IT&_trksid=p3984.m1559.l2649
20:34.40raymonddullliterally all I did was plug it in and install mac os
20:34.46raymonddullno hardware fix required at all
20:35.13arrrghhhlol
20:35.26arrrghhhi was going to ask what did it take to fix.  that first ad seems to think it's impossible, won't power on.
20:35.31d3tul3CptAJ, https://gitorious.org/linux-msm-rhod/linux-msm-rhod we've been updating the htc-msm-3.3 branch with whitestone stuff
20:36.09raymonddullarrrghhh, yeah literally all I did was plug it in
20:36.16arrrghhhwow.
20:36.18jonpryit booted as in panel?
20:36.28arrrghhhlike my buddy, got a car for like $200 because it didn't run.  replaced the battery, fixed.
20:36.30Alex[sp3dev]well, i was at a laptop shop the other day. a man came with a laptop and said it won't power on. then the service man pushed the power button and it turned on. the first guy asks "what did i have to do" and the other one replies "think"
20:36.46arrrghhhohshit
20:36.57arrrghhhdid he get fired?  trolololol
20:37.22Alex[sp3dev]do all smart people get fired?
20:37.41CptAJthats not smart though
20:37.58arrrghhhyea i'm a dick and as much as i'd like to say that to some of my customers...
20:38.02CptAJyou either lost a customer or had him leave without learning anything, which means he'll come back to annoy you
20:38.05arrrghhhi can't cuz i kinda still need a job.
20:38.08d3tul3CptAJ, that thing all the way up and going?
20:38.17CptAJyeah, booted completely
20:38.24CptAJcrashed like usual XD
20:38.30d3tul3you need the new smd
20:39.13[acl]aite gents.. i gotsta go..
20:39.22arrrghhhcya
20:39.24arrrghhhoops
20:39.32Alex[sp3dev]null pointer dereference
20:41.33d3tul3you should be able to cherry pick the smd stuff from the 3.3-smd_update branch .... though when i was rebasing that branch i mucked something up a little bit and some smd stuff ended up in hyc's "bcm4329 trivial tethering bug"
20:41.57d3tul3figuring out how to do it cleanly will be good for your git-fu
20:42.18CptAJI'll give it a shot
20:46.46d3tul3CptAJ, if you apply this patch http://pastebin.com/qf0rYe0P to htc-msm-3.3 then all patches from 7c3699a onward should apply cleanly
20:49.30CptAJyou're a beautiful person, thanks!
20:49.46CptAJI'll start on it after I take the sister in law to the dentist -_-
20:49.48CptAJbbl
20:49.55CptAJin the mean time: I want this http://vimeo.com/40477489
21:01.55d3tul3np, jonpry deserves the credit for the initiative
21:46.45CptAJjonpry, is a saint as well
22:07.59*** join/#htc-linux whitekidney (~wk@141.0.136.22)
22:10.19*** join/#htc-linux rpierce99 (~rpierce99@96-42-107-19.dhcp.stcd.mn.charter.com)
22:32.40jonpryi've been called a lot of things
22:33.06phhwait
22:33.08phhjonpry: is called a saint
22:33.11phhand i'm just a grandpa ?
22:34.45jonprywell you don't do ports anymore
22:34.51jonprytoo old i guess :p
22:38.55CptAJnot only a saint. he is also a gentleman and a scholar
22:39.52Alex[sp3dev]most importantly, he's an engineer. that's more than the sum of all other qualities
22:41.16jonpryi had no idea kernel work was so well appreciated
23:11.14*** join/#htc-linux polyrhythmic (~polyrhyth@c-71-197-239-27.hsd1.wa.comcast.net)
23:11.14*** join/#htc-linux regualtor (~duffman@unaffiliated/regulator)
23:11.14*** join/#htc-linux phh (~quassel@137.194.15.151)
23:11.29*** join/#htc-linux furtardo (~mks@nat/yahoo/session)
23:11.47*** join/#htc-linux furtardo (~mks@nat/yahoo/x-hxzitfbssfwsycgf)
23:37.40*** join/#htc-linux d3tul3 (~detule@unaffiliated/d3tul3)

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