IRC log for #htc-linux on 20100919

00:01.00jonpryits crap
00:01.22jonpryneed to find mount options for yaffs
00:01.38jonpryi have a couple of ideas on why it does work though
00:01.51jonpryyou cat'd the mtd and found data in it after the write?
00:02.31WoZZeR_yeah
00:02.38jonprynext question is that data still there after reboot?
00:02.51jonpryi'm sure it is
00:02.56WoZZeR_I'm pretty sure it is
00:03.02WoZZeR_let me test
00:03.14jonpryi'm thinking the nand write block size is wrong
00:05.47WoZZeR_getting an error with mounting jaffs
00:05.54WoZZeR_says no sych device
00:05.56WoZZeR_such*
00:06.12WoZZeR_gotta compile it in
00:06.13WoZZeR_I guess
00:06.46WoZZeR_# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
00:06.50WoZZeR_should I try that?
00:08.00WoZZeR_hmmm, mtd seems to be empty after reboot
00:08.00WoZZeR_don't know how that's possible though
00:09.18*** join/#htc-linux josh13x12 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
00:10.35*** join/#htc-linux hyperfire21 (~nun@c-98-223-15-190.hsd1.il.comcast.net)
00:12.51jonprywozzer: what if you dd some garbage into the mtd. we know that works cause it destroyed your phone
00:15.38WoZZeR_double checking empty on reboot now
00:16.22ali1234maybe the driver just doesn't work
00:16.23*** join/#htc-linux ImHos (pIRCuser35@86.57.242.39)
00:16.27ali1234is it empty from 0?
00:16.57WoZZeR_wtf, no data now
00:17.09ali1234probably the cache pages got dropped :)
00:17.44jonpryit sort of works. managed to trash wozzers phone using it
00:17.52WoZZeR_how can /dev/mtd1 have data when it writes to it, but not on reboot
00:18.00WoZZeR_isn't it a phys read?
00:18.02ali1234because the write function doesn't work
00:18.10ali1234but the written data goes into the cache
00:18.14WoZZeR_can it cache 100mb of data?
00:18.15ali1234it will stay there even if you sync
00:18.25ali1234how much ram does your phone have?
00:18.30WoZZeR_true
00:18.32WoZZeR_if it's all in ram
00:18.33ali1234every bit of unused ram will be used for disk cache
00:19.29WoZZeR_should I try tracing write?
00:19.39ali1234i dunno
00:19.50jonpryi dunno. dd to a block device wouldn't seem like something that would get cached to me
00:19.59ali1234maybe you have a different nand chip, sometimes they change the write command
00:20.14WoZZeR_I'll try dd
00:20.19ali1234jonpry: it does
00:20.31jonpryno way
00:20.47stinebddd definitely doesn't because it's not working at the fs level
00:20.48jonpryblock devices aren't necessarily cacheable
00:21.05WoZZeR_what should I do for dd
00:21.07stinebdif the device itself had a cache, sure, but not for nand
00:21.33WoZZeR_dd if=/proc/mtd of=/dev/mtd/mtd2 bs=8092
00:21.34WoZZeR_?
00:21.45WoZZeR_just to get something into mtd2
00:21.55jonprysure
00:21.56stinebdurandom?
00:22.19WoZZeR_dd if=/dev/urandom of=/dev/mtd/mtd2 bs=8092
00:22.19WoZZeR_?
00:22.31stinebdis it all zero right now?
00:22.39ali1234try dd iflag=direct
00:22.53ali1234or possibly oflag=direct :)
00:24.25WoZZeR_trying now
00:24.27ali1234linux cache works at block level, not filesystem level
00:24.57WoZZeR_so if this works, how do we fix yaffs?
00:25.00ali1234the data might still end up in the cache btw, even with direct
00:25.18ali1234if you fix the mtd driver yaffs will "just work"
00:25.27jonprydriver is not totally broken. it writes flash like nobodies business
00:25.52ali1234well considering it doesn't even report the partition sizes correctly...
00:25.59stinebdminor details
00:26.06*** join/#htc-linux HardDisk_WP (~marco@velirat.de)
00:26.06*** join/#htc-linux HardDisk_WP (~marco@wikipedia/harddisk)
00:26.17jonprythats just a matter of platform not having atags
00:26.44ali1234nope, it isn't parsing the kernel command line properly...
00:27.06WoZZeR_didn't like that dd line
00:27.07jonpryin what way are the sizes wrong?
00:27.18ali1234they are all reported as 0x20000
00:27.25jonprythat is erase size
00:27.30ali1234hmm
00:27.47ali1234that's right :)
00:28.15ali1234which reminds me... is the driver actually erasing before writing?
00:28.38ali1234erased flash usually = 0xff, you can only write 0s
00:29.57ali1234also shouldn't you be dding onto /dev/mtdblock2?
00:30.25WoZZeR_do I have if and of backwards?
00:30.28WoZZeR_dd if=/dev/urandom of=/dev/mtd/mtd1 bs=8092
00:30.35jonprywe have the flash_erase util. i have not verified that it works though
00:30.46jonprywozzer: you have to specify a size or it will run forever
00:30.55jonprylike count=64
00:31.27WoZZeR_can't open /dev/urandom
00:31.35stinebdi think it would stop eventually on an i/o error
00:31.37jonpry/dev/random
00:31.47stinebdcan't use /dev/random for that
00:31.49ali1234you should all read this: http://www.righthandtech.com/embedded-linux-managing-memory.php#MTD_Character_Device
00:31.52stinebdentropy will get starved
00:32.02jonpryis that a problem?
00:32.36ali1234yeah, it will take ages :)
00:33.16jonpryis urandom a module?
00:34.13stinebdah the flash erase. that would be what bricked the other phone
00:34.19stinebdie. skipping that
00:34.37WoZZeR_we did flash erase
00:34.45jonprywozzer has been using it on the partitioned nand without incident
00:34.57stinebdi dont remember you doing that
00:35.11ali1234more faqs http://www.linux-mtd.infradead.org/faq/general.html
00:35.12jonpryi think it works. like assume there is no dd cache. then we erased, wrote a new spl. read the spl and verified it
00:35.34jonprywhich wouldn't happen without a good erase
00:36.05jonpryi think the problem is we have 4k sector flash
00:38.34jonpryi haven't been able to find a datasheet on our flash. and it refuses most of the identification commands.
00:38.35jonpryhttps://www.codeaurora.org/gitweb/quic/chrome/?p=kernel.git;a=blob;f=drivers/mtd/devices/msm_nand.c;h=2e53f5d1673ab78b2f7326af9ebf183b1c015ce2;hb=2e53f5d1673ab78b2f7326af9ebf183b1c015ce2
00:39.09jonpryat line 373 there is a table of flash devices and parameters. i guess they gave up on reading them too
00:39.26jonprynotice the only 512mb samsung is 4k sector
00:43.49WoZZeR_dd if=/init of=/dev/mtd/mtd1 bs=8092 count=64
00:44.12stinebdgood enough
00:44.18WoZZeR_invalid arg
00:44.28stinebdnot good enough
00:44.34jonprylol
00:44.36stinebd8192
00:44.39WoZZeR_ahhh
00:47.37WoZZeR_still didn't like writing to it
00:47.53stinebdthey never like it at first. keep slapping her around
00:49.54WoZZeR_do I dd to block or char?
00:50.23*** join/#htc-linux josh13x22 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
00:50.53stinebdchar
00:51.02WoZZeR_hmmm
00:51.05stinebdat least that's what broke things last time
00:54.21uriahheepWoZZeR_: did you figure out what the problem was?
00:54.26WoZZeR_nope
00:57.31uriahheepwow, now i get tar: short read
00:57.36uriahheepfailed to extract
00:57.42*** join/#htc-linux xawen (~Admin@pool-96-244-250-218.bltmmd.fios.verizon.net)
01:08.39*** join/#htc-linux friehmaen (freeman@xers.de)
01:08.53*** join/#htc-linux zycho_ (~zycho@g227133066.adsl.alicedsl.de)
01:11.23uriahheepWoZZeR_: according to you, what might be going wrong based on dmesg and bootlog.txt here? http://ompldr.org/vNWt3aQ/pasta
01:15.53stinebdmmm pasta
01:16.02uriahheepheheh
01:17.09*** join/#htc-linux gauner1986 (~gauner198@p508C6E53.dip.t-dialin.net)
01:17.20*** join/#htc-linux mastermerlin1 (~Adium@p4FEE57A3.dip.t-dialin.net)
01:26.43jonprywozzer_: no writes and reads?
01:28.50jonpryit occured to me that you probably have to erase before dd writing or it will fail because of crc
01:35.05*** join/#htc-linux axion (6277ca90@gateway/web/freenode/ip.98.119.202.144)
01:38.28WoZZeR_jonpry: I can try erasing it first
01:45.09WoZZeR_dd didn't seem to work
01:45.15WoZZeR_mtd1 still empty
01:45.42WoZZeR_mtdparts=msm_nand:0x20000000@0x0(nand)ro,0x01500000@0x04000000(root),0x066C0000@0x05540000(system),0x06f60000@0x0Bc00000(userdata)
01:45.46WoZZeR_think the ro matters?
01:46.01*** join/#htc-linux [TONTON] (~TONTON@AAubervilliers-552-1-117-2.w86-218.abo.wanadoo.fr)
01:46.56stinebdheh uhh
01:47.19WoZZeR_kaiser and polaris have it
01:47.27WoZZeR_mtdparts=msm_nand:0x10000000@0x0(nand)ro,0x00040000@0x029a0000(root),0x066C0000@0x029e0000(system),0x06f60000@0x090a0000(userdata)
01:47.29WoZZeR_that's from kaiser
01:47.47stinebdright it makes sense
01:48.04stinebdbut you should also have device nodes for those 3 partitions right?
01:48.11WoZZeR_yeah
01:48.21WoZZeR_and they seem to be writable, just not saving to nand
01:48.32stinebdi'd say the ro doesn't matter then
01:48.37WoZZeR_that's what I thought
01:48.39WoZZeR_just making sure
01:49.01WoZZeR_dd if=/init of=/dev/mtd/mtd1 bs=8192 count=64 didn't save after reboot
01:49.13WoZZeR_data was there right after the write though
01:49.16stinebdalthough
01:49.27stinebdwell no that still shouldn't matter
01:50.12WoZZeR_all of this may have been the issue with why the other rhod bricked
01:50.43stinebddoes sync do anything to help?
01:50.44*** join/#htc-linux defendthecommons (~defendthe@76.14.64.151)
01:50.49WoZZeR_nope
01:50.49stinebdthe command
01:51.14stinebdwell have fun figuring that out
01:51.56stinebdseems like you've gone through most of the obvious pitfalls already
01:52.50stinebdit wouldn't be locked would it?
01:53.00WoZZeR_I don't think so
01:53.45WoZZeR_unless the winmo drivers have to unlock it
01:57.37*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
01:57.51uriahheepWoZZeR_: seems like my mounting problem is related to the nbh that i built
01:57.58WoZZeR_how so?
01:58.49uriahheepWoZZeR_: well, when booting with the official vogue kernel it boots fine
01:59.42WoZZeR_can you send me both?
01:59.44WoZZeR_so I can compare
02:01.11uriahheepsure
02:04.33uriahheepWoZZeR_: http://it029000.massey.ac.nz/vogue/files/voguimg-240x320-2.6.32-froyo-09-09-10_21.nbh / http://ompldr.org/vNWt3eQ
02:07.14*** join/#htc-linux C_h_r_i_s_ (~ja@dslb-084-057-067-111.pools.arcor-ip.net)
02:09.47uriahheepWoZZeR_: brb, gonna try something
02:16.20*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
02:16.31uriahheepWoZZeR_: so, what's the verdict re:comparison of nbh files?
02:16.39WoZZeR_still looking through it
02:16.56WoZZeR_might be a fat image location error
02:17.05WoZZeR_vogue doesn't have it
02:17.51uriahheepdoesn't have what?
02:18.04WoZZeR_or may be a partition error
02:21.59*** join/#htc-linux brnshroom (burnshroom@c-76-30-154-22.hsd1.tx.comcast.net)
02:28.35*** join/#htc-linux mokmok (~mokmok@119.234.0.28)
02:28.39uriahheepWoZZeR_: are those mostly the only differences you see?
02:28.43WoZZeR_yeah
02:28.49WoZZeR_trying something now
02:28.52uriahheepk
02:33.31WoZZeR_crap, didn't work
02:34.05uriahheepwhat did you try?
02:34.27WoZZeR_replacing the partition image
02:34.33WoZZeR_but it looks like it should have worked
02:34.35WoZZeR_hmm
02:34.53uriahheepwhich partition image/
02:34.54uriahheep?
02:34.58uriahheepis that part if the initrd?
02:35.01WoZZeR_no
02:35.40uriahheepok
02:40.07*** join/#htc-linux MacDrunk (~marper@201.164.159.190)
02:41.34uriahheepWoZZeR_: should this be something i can repeat using your tinboot once you get it working?
02:41.42*** join/#htc-linux jeffgarret (~jeffgarre@user-12l2tmk.cable.mindspring.com)
02:41.53WoZZeR_should be
02:43.10uriahheepk
02:43.16uriahheepany progress?
02:44.29*** join/#htc-linux josh13x12 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
02:44.33WoZZeR_not sure yet
02:44.43WoZZeR_if this boots, I have a lot of back stepping to do
02:51.03*** join/#htc-linux josh13x37 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
02:53.54*** join/#htc-linux josh13x12 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
03:03.51*** join/#htc-linux theredundant (~thereduda@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
03:17.10WoZZeR_jonpry: would having the area I'm trying to write to that is identified as a FAT partition matter?
03:17.27*** join/#htc-linux theredundant (~thereduda@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
03:22.07*** join/#htc-linux jimmydu3 (ad5df6c3@gateway/web/freenode/ip.173.93.246.195)
03:22.59*** join/#htc-linux hastarin (~hastarin@220-253-159-83.VIC.netspace.net.au)
03:28.32hastarinAnyone working on linux_on_wince_htc I noticed there is a hack in msm_fb.c that can probably be reverted.  The comment mentioned vsync and I remember seeing vsync was enabled again.  I've reverted it and can't see any issue from doing so, though not sure where to look.
03:32.59*** join/#htc-linux [acl] (~abel@cpe-69-203-141-229.si.res.rr.com)
03:34.07[acl]WoZZeR_: sup dood
03:34.21WoZZeR_yo
03:34.42[acl]any good progress?
03:34.55[acl]i dont have much time :-) gf is here  .. need to be quick
03:34.59WoZZeR_learned a bit more about partition tables
03:35.00WoZZeR_lol
03:35.05[acl]nand ?
03:35.09WoZZeR_yeah
03:35.13WoZZeR_no writes
03:35.24WoZZeR_trying something new
03:36.21[acl]ahhh ic
03:36.42jimmydu3it goes without saying your work on android has been amazing.  I had a treo pro but have moved on to another phone, but I'd love to donate the treo pro to you or whomever could use it to get it ported for android.  a few of the keyboard keys aren't working right now, but everything else works.  it's very similar to the raphael and I got it to boot using the android raphael builds, but b/c the screen resolution is different (320x
03:37.18WoZZeR_[acl]: got all your latest updates, have not had a chance to see if it fixed anything
03:37.49[acl]WoZZeR_: let the pigs handle that
03:37.56[acl]once u release.. they will eat it up
03:39.13WoZZeR_crap, not booting now
03:39.58WoZZeR_I hate nand memory...
03:39.58[acl]WoZZeR_: next fix ill have is hopefully that batt meter. I havent had a chance to included it from camros fix, but that should be next
03:40.07WoZZeR_nice!
03:43.09[acl]ok she bitchin
03:43.10[acl]gotta go
03:43.12[acl]lata
03:43.29*** join/#htc-linux WisTilt2 (~wisgreg@wireless248.wirelesstcp.net)
03:43.40*** join/#htc-linux swc|666 (~neopwn@65.101.151.78)
03:43.40*** join/#htc-linux swc|666 (~neopwn@unaffiliated/swc666/x-4934821)
03:43.54*** join/#htc-linux hastarin (~hastarin@220-253-159-83.VIC.netspace.net.au)
03:46.23*** part/#htc-linux jeffgarret (~jeffgarre@user-12l2tmk.cable.mindspring.com)
03:53.42WoZZeR_uriahheep: I noticed you missed one of my steps, checking right now to see if it matters
03:53.49*** join/#htc-linux hastarin (~hastarin@220-253-159-83.VIC.netspace.net.au)
03:55.15WoZZeR_jonpry: I have data after reboot!
04:01.52uriahheepWoZZeR_: which step was that?
04:02.05WoZZeR_use a nbh for vogue
04:02.10WoZZeR_you used my os.nb.payload
04:02.14uriahheepoh
04:02.27uriahheepthat must be why, right?
04:02.44uriahheep:P
04:02.50WoZZeR_how comfortable are you hex editing?
04:02.54jonprywozzer: what did you do?
04:03.07WoZZeR_reduced the fat32 partition to 128K
04:03.18jonprywtf
04:03.54WoZZeR_it must lock the partition or something
04:04.09jonprywhy is there a fat32 on nand?
04:04.15WoZZeR_for internal storage
04:04.20WoZZeR_it's the user space
04:04.43jonpryi still don't understand
04:04.54jonpryshouldn't that be a yaffs
04:05.16jonpryext2 doesn't even know about erasing flash
04:06.00WoZZeR_it's for winmo
04:07.12WoZZeR_if I have stuff mounted to /data and /system, and I switch root, will they stay at /data and /system?
04:07.54*** join/#htc-linux bzo (~chatzilla@c-76-126-175-200.hsd1.ca.comcast.net)
04:09.18jonprythey should
04:09.23WoZZeR_they didn't seem to
04:11.06jonpryyou might need to mount --bind it to rfs
04:11.29WoZZeR_./bin/mount /system /rfs/data
04:11.31WoZZeR_like that?
04:11.34WoZZeR_whoops
04:11.40WoZZeR_./bin/mount --bind /system /rfs/data
04:13.16bzohi jonpry, WoZZeR_
04:13.19WoZZeR_hi
04:14.07bzohow's the new job going - aside from cutting into your hacking time :)
04:14.14WoZZeR_it's going well so far
04:14.26WoZZeR_just hard to work all day, then come home and not want to think
04:14.40WoZZeR_or want to think*
04:15.12bzoyeah, sometimes you just want to sit on the couch, drink a beer and veg
04:16.04bzohacking on this stuff is so weirdly addictive sometimes though
04:16.19jonprywozzer: i think you meant /bin/mount --bind /data /rfs/data
04:16.37*** join/#htc-linux Kasjopaja23 (~Tina@p57BC0109.dip0.t-ipconnect.de)
04:16.51WoZZeR_haha, had them backwards... lol
04:17.21bzojonpry: so the 3d allocation stuff is slightly less hard coded than I thought
04:17.48bzoI was able to get the 2mb smi + 13mb ebi wince config working fine
04:19.27*** join/#htc-linux axion (4c5e3f58@gateway/web/freenode/ip.76.94.63.88)
04:20.00*** join/#htc-linux hyperfire21 (~nun@c-98-223-15-190.hsd1.il.comcast.net)
04:25.06WoZZeR_what do I do if I'm getting permission denied errors during android boot?
04:25.31jonprybzo: on which phone?
04:25.36WoZZeR_tp2
04:25.40ALoGeNohey i have mer running in the htc uni, but touch screen dont wanna work :/
04:25.42WoZZeR_nand install testing
04:25.49bzorhod400
04:25.53WoZZeR_oh, nevermind
04:25.59WoZZeR_grr, nand install sucks
04:26.01bzoerr no, diam500
04:26.16jonprywozzer_: so it works? i
04:26.23ALoGeNothe next steap after run mer is run maemo, anyone knows about tslib and so?
04:26.28jonprybzo: hmm. 3d is working on diam500?
04:26.36WoZZeR_testing it with a sd card installed
04:26.41WoZZeR_no, it doesn't work yet
04:26.48bzoyeah, 3d has been working on the diam/raph for a long time
04:27.05bzoreally, the rhod is the last device not working I think
04:27.10ALoGeNotmzt, i need your knowleng (or whaterver)  >_<
04:27.15jonpryyeah it sounded like 2/13 had been hacked pretty well
04:27.55ALoGeNots_open failed (device=/dev/event0)
04:28.09bzowell, someone had reported earlier that 2/13 didn't work, and assumed that the 7/8 was hard coded, but my own tests find that 2/13 is fine
04:28.25jonprybzo: getting the adsp tables from adsprtos is apparently going to be really freaking hard
04:28.48jonprybzo: i think the hacked gralloc is being distributed in system now
04:29.17*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
04:29.24bzothing I don't understand is why there is a hard coded limit for gpu memory allocatable in gralloc though
04:29.33bzofor some things, it gives you pmem
04:29.37bzoand it dynamically queries the size
04:29.47bzobut for gpu mem, it has a hard coded #define
04:30.40jonprypmem is just for getting contiguous blocks of phys space for a contiguous virt space
04:31.06jonpryirc which is deprecated now
04:31.21bzoyeah, point being that it seems to allocate the general pmem section rationally
04:31.39jonpryrationally in the sense that it doesn't do anything
04:31.47bzohowever, for the ebi/gpu1 memory, it has that hard coded #define
04:32.06bzoit has 2 allocators, one for the general pmem allocations, and one for the gpu1 mem
04:33.05jonpryi don't know where this define is
04:33.12bzoI dunno, if there is some "understanding" that gralloc is allowed to use that part of gpu1, and the rest is used elsewhere
04:33.14bzogralloc.c
04:33.37bzo#define ALLOCATORREGION_RESERVED_SIZE           (1200<<10)
04:33.50bzo(which is the hacked value to enable 3d on blackstone)
04:34.02jonpryi don't seem to have that file
04:34.15bzooh, that's userland, not kernel
04:34.20bzohttp://gitorious.org/xdandroid-eclair/xdandroid-hardware_msm7k/blobs/froyo/libgralloc/gralloc.cpp
04:35.03bzofew lines down, you see that the constructor for the gpu allocator passes in that #define as the size
04:35.12uriahheepWoZZeR_: is the payload initially just the partition table?
04:35.34WoZZeR_the first 4K of the payload is the partition table
04:35.41uriahheepok
04:35.54uriahheepthat's the only thing i'm missing right?
04:36.05WoZZeR_sort of
04:36.28WoZZeR_you need to edit mtd parts after that
04:36.29WoZZeR_and stuff
04:38.02uriahheepWoZZeR_: is this where hex editing comes into play?
04:38.08WoZZeR_yeah
04:41.06WoZZeR_can I mount /dev/block/mtdblock1 to / without changing root?
04:41.13WoZZeR_./bin/mount -t yaffs2 /dev/block/mtdblock1 /
04:42.56jonprysort of
04:43.16jonpryin general you would want to chroot for that. what are you trying to accomplish?
04:43.32WoZZeR_I'm trying get around the permission issue with android
04:43.43jonprywhat is the permission issue?
04:43.45WoZZeR_I get a list of stuff in /system/ that has permission denied
04:43.50WoZZeR_it just says permission denied
04:44.51jonpryperhaps the files are created with bad uid's or something
04:45.29jonpryyou can always chmod 777 -R /system
04:45.56jonprybrings new meaning to open android
04:46.18WoZZeR_lol
04:46.36WoZZeR_cannot execve
04:47.23*** join/#htc-linux invisiblegod (invisibleg@bl11-115-141.dsl.telepac.pt)
04:49.42*** join/#htc-linux Dj-Gutz (~madboy@87.69.228.213)
04:51.21jonprysome guy gets that because yaffs kernel code is too old
04:51.36jonprypatched with cvs. i'm sure ours is much older
04:57.11WoZZeR_any idea what the patch did?
04:58.50jonpryi'm guessing it made chmod 777 -R work
05:00.31WoZZeR_this is annoying, to get so far only to be stopped by android itself
05:02.54jonprymaybe it doesn't work because of the bind
05:03.17WoZZeR_try just straight mounting to /rfs/system?
05:04.53jonpryi don't think that will work
05:05.11jonpryif push comes to shove, you can put an ext2 in yaffs under loopback
05:07.54*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
05:09.06WoZZeR_any reason I shouldn't use just 1 mega partition?
05:10.17WoZZeR_don't know if that will help though
05:10.41jonpryfor loopback?
05:10.46WoZZeR_no
05:11.15jonpryjust because the android scripts try to do it with multiple
05:11.40jonpryloopback is the only way to fly :-)
05:11.44bzoahh, think I figured out rationale behind the 1200<10 buffer size
05:12.02WoZZeR_./bin/mount -t ext2 -o remount,rw,relatime / /
05:12.04WoZZeR_init does run that
05:12.26bzo1200<10 = 480x320 * RGBA_8888 * 2
05:13.02bzoso perhaps, gralloc only deals with allocating the framebuffer part of the gpu mem
05:13.42*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
05:14.05jonprywozzer_: which init?
05:14.10WoZZeR_the android init
05:14.18WoZZeR_rootfs init
05:14.19WoZZeR_rather
05:14.26WoZZeR_but I'm not using an actual rootfs.img file
05:14.28jonpryand you've mounted /rfs from an mtd?
05:14.32WoZZeR_yeah
05:14.40WoZZeR_./bin/mount -t yaffs2 /dev/block/mtdblock1 /rfs
05:15.07jonpryyou could try running ./bin/mount -t ext2 -o remount,rw,relatime /rfs /rfs
05:15.13jonpryto see what happens
05:15.23jonpryit might just says /rfs already mounted read write
05:16.07jonprybzo: it looks like gralloc is just deciding what to do with the pmem
05:16.41jonpryafaict that number is used to mmap in the framebuffer though
05:16.58jonprynot actually used for hw3d section
05:18.14bzoI'm seeing that it mmaps an ALLOCATORREGION_RESERVED_SIZE section of HW3D_EBI pmem
05:18.52bzoa few commits ago, it mmaped the entire region, but now it is only that subsection
05:19.14jonpry<PROTECTED>
05:19.14jonpry271
05:19.14jonpry<PROTECTED>
05:19.14jonpry272
05:19.14jonpry<PROTECTED>
05:19.38bzo#define FB_ARENA                                HW3D_EBI
05:21.44bzopmem.c actually allocates a dedicated framebuffer pmem section, but I don't think it is actually used
05:22.12bzoseems like a section of HW3D_EBI/gpu1 pmem is used instead
05:22.31*** join/#htc-linux jamenlang (~jamenlang@68-170-60-12.mammothnetworks.com)
05:23.06bzohmm, maybe the framebuffer pmem is used by the regular framebuffer
05:23.15jamenlanghey myn, you still releasing ROMs for the vogue?
05:23.22bzothat mmap above only applies to 3d
05:26.05jonprybzo: seems like the hardware bit blit would need both pmems
05:26.52bzoyeah I think both are needed
05:27.06bzodo we even have hardware bit blit?
05:29.29jonpryi dunno. that is like function #1 in DDI.dll though
05:29.46jonprycould be implemented in software i suppose
05:29.59uriahheepWoZZeR_: other than the partition table, what does your original os.nb.payload consist of?
05:30.11WoZZeR_uldr, xip and imgfs
05:30.16WoZZeR_and my extra small fat
05:30.47bzoI'm sure wince has hardware bitblit, but I was under the impression that our stuff was running with all software 2D
05:31.16uriahheepWoZZeR_: i mean the one located in tools/
05:31.34WoZZeR_same thing, except big fatfs
05:31.52jonpryit is because 2d accel is provided via hw3d. presumably because it can do cool things like hardware bit blit
05:47.09hyperfire21did u guys get .32 or .35 kernel to boot?
05:48.01jonpryneither
05:48.26hyperfire21damn..
05:48.43jonpryneed a newer kernel?
05:49.11hyperfire21did u say thats whats needed now?
05:50.05jonprynot really. just we are kind of stuck
05:50.19*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
05:50.31hyperfire21what are u working on now?
05:50.54jonprygetting .35 kernel to work
05:51.10hyperfire21well good luck jonpry
05:51.19jonprythanks
05:52.06hyperfire21wozzer need me to test anything?
05:53.01WoZZeR_no, not really
05:53.15WoZZeR_just getting pissed off at nand right now
05:53.20*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
05:53.21hyperfire21ok let me know whenever
05:53.42uriahheepWoZZeR_: i think i'm going to call it a night :P
05:53.51WoZZeR_gonna give it another few go's, then I'm done for the night
05:53.57uriahheepcool
05:54.02WoZZeR_uriahheep: when I can explain it better, I'll let you know
05:54.05uriahheepperhaps tomorrow we'll both have better luck
05:54.12uriahheepheh alright, cool, thanks
05:54.14WoZZeR_np
05:55.12uriahheepgnight
05:55.26WoZZeR_night
06:07.29jonprywozzer: did you try loopback?
06:09.28WoZZeR_I tried the ext2 you posted
06:10.20WoZZeR_trying 1 last thing, then I'm done for the night
06:10.27WoZZeR_2am seems late to me now :(
06:14.46jonpryi posted an ext2?
06:14.52*** join/#htc-linux thejeos (~androirc@89.129.20.198)
06:16.44WoZZeR_  (jonpry) you could try running ./bin/mount -t ext2 -o remount,rw,relatime /rfs /rfs
06:17.18jonprythere that
06:17.27WoZZeR_no go
06:18.06jonprybut what i'm saying is this. to install: flash_erase mtd0, mount -t yaffs2 mtd0 /nand
06:18.24jonprymke2fs /nand/ext2.img -size some bytes
06:18.39jonprymount /nand/ext2.img /ext2 -o lopp
06:18.58jonprythen install to /ext2
06:19.04WoZZeR_hmmmm
06:19.12WoZZeR_I don't think it's a write error though
06:19.17WoZZeR_everything is installing fine
06:19.24jonpryits a permission error
06:19.29jonpryext2 is not broke
06:19.55jonpryits just like loopback on the sd card
06:20.05jonprybut loopback on the nand :-)
06:20.57WoZZeR_hmmm
06:21.11jonpryfor that matter. as long as your rootfs.img and system.img etc are small enough
06:21.23WoZZeR_I'
06:21.25jonpryyou can just copy them to the yaffs partition
06:21.30WoZZeR_I'm not using that method right now
06:21.42WoZZeR_I was trying androidinstall.tgz since it seemed easier
06:22.32jonpryi'm not sure you are understanding
06:22.55jonprysee its a file system in another file system
06:23.17jonprylike on sd card they use these ext2 .img files because fat doesn't support unix permissions/ownership
06:23.38WoZZeR_do I have to do that during the install?
06:23.46WoZZeR_or can I change it when it's already installed?
06:24.02jonpryi don't know how the install works
06:24.07*** join/#htc-linux netson (~netson@110.138.129.88)
06:24.19jonpryyou need to get it installed to the loopback drives so to speak though
06:24.24jonprynot the regular yaffs
06:25.41jonprywhat did this do? ./bin/mount -t ext2 -o remount,rw,relatime /rfs /rfs
06:25.52WoZZeR_it didn't change anything
06:25.57jonprycool
06:25.58WoZZeR_no error
06:26.04jonpryno error?
06:26.08WoZZeR_nope
06:26.22jonpryand /rfs still had good stuff in it?
06:27.11WoZZeR_I can test it again
06:27.47jonprythe better test would be to remove that crap from init and see if it works
06:28.15WoZZeR_remove what crap?
06:28.47WoZZeR_http://pastebin.com/8samQ93V
06:28.55WoZZeR_that's what I'm running right now
06:29.30*** join/#htc-linux Ashar (deadly@unaffiliated/ashar)
06:32.33*** join/#htc-linux kiozen (~kiozen@rgnb-5d879583.pool.mediaWays.net)
06:41.31*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
06:51.52*** join/#htc-linux dekar_ (~dekar@drms-4d0150e2.pool.mediaWays.net)
06:58.57*** join/#htc-linux Andreyxxl[HD2EU] (Andreyxxl@89.32.146.153)
06:59.50*** join/#htc-linux EMP|FireStorm (~r4nd0m@adsl-69-154-240-27.dsl.snantx.swbell.net)
07:03.07*** join/#htc-linux hastarin (~yaaic@120.152.104.6)
07:03.14*** join/#htc-linux GlemSom (~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk)
07:03.42*** join/#htc-linux hastarin (~yaaic@120.152.104.6)
07:13.03*** join/#htc-linux Cotulla (~opera@nat004-252-205-109.tvoe.tv)
07:18.15*** join/#htc-linux johnb81 (~john@78.169.139.215)
07:19.28*** join/#htc-linux Baeen (~Bane@ppp118-208-223-5.lns20.hba1.internode.on.net)
07:20.24mdeejayhow remove this watermark? http://i10.fastpic.ru/big/2010/0919/68/8ccaace6d4369f3291ac7581373d2368.jpg
07:31.27*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
07:32.23*** join/#htc-linux jonolo (~jonolo@87.75.138.222)
07:33.51*** join/#htc-linux balans (~BRPOLDB@82-170-217-205.ip.telfort.nl)
07:39.20*** join/#htc-linux figtab (47e38c5a@gateway/web/freenode/ip.71.227.140.90)
07:41.40*** part/#htc-linux figtab (47e38c5a@gateway/web/freenode/ip.71.227.140.90)
07:52.00*** join/#htc-linux ahjuang (4ce5e71e@gateway/web/freenode/ip.76.229.231.30)
07:52.03ahjuanghi guys
07:52.05ahjuangjust wondering
07:52.16ahjuangwhich version of android is the most stable one for touchpro2? :D
07:56.26*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
07:56.43*** join/#htc-linux camro (~camro@89-104-29-101.customer.bnet.at)
08:05.12*** join/#htc-linux jdp (jdp@theorize.org)
08:14.23*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
08:16.01*** join/#htc-linux jdp (jdp@theorize.org)
08:19.26*** join/#htc-linux GNUtoo|laptop (~gnutoo@host55-144-dynamic.54-79-r.retail.telecomitalia.it)
08:26.02*** join/#htc-linux leobaillard (~leobailla@leobaillard.org)
08:35.40*** join/#htc-linux fakker (~noobhands@cpc4-hitc6-2-0-cust82.9-2.cable.virginmedia.com)
08:36.45ALoGeNotmzt,  ? morning?
08:37.54*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
08:50.29*** join/#htc-linux Markinus (~Miranda@212.255.25.167)
08:51.33MarkinusHi
08:51.46Cotullahey
08:52.06CotullaI finished nand driver
08:52.10MarkinusCotulla: I tested yesterday the power on/off for LS, but didn'T dounf the right solution
08:52.11Cotullanow seems all working
08:52.11Markinusahh, cool
08:52.35Cotullawhat's wrong with LS?
08:52.53MarkinusSometimes it isn't online and get permanently 0
08:53.04Cotullawhich regs are u touching?
08:53.13MarkinusI thiunk there is a method to enable/disable the sensor but i didn'T find it
08:53.43Cotullaafaik there also some kind of enabled output
08:54.02MarkinusCotulla: I tried if there is a enable method over gpo
08:54.58Cotullahm sometimes it's when?
08:55.14Markinusbut nothing, I missing the i2c dump capabilitiy with haret on Leo, it works very good on other devices
08:55.40Cotullacan u say how to detect thsi bad condition? I may look to it...
08:55.48Cotullatest case
08:56.11MarkinusCotulla: hmm, till now I saw it random only, but I will look to find it
08:56.57Cotullahm,what u think about how part tables should be stored
08:56.58Cotulla?
08:58.08Markinuspart tables? Which parts?
08:58.36Markinusahh partitions?
08:58.52*** join/#htc-linux Proms (~pIRCuser6@188.113.31.30)
08:59.00Cotullayes... for example we may have
08:59.01Markinushmmm
08:59.11Cotullarootfs system and data
08:59.20CotullazImage and initrd inside rootfs
08:59.38*** join/#htc-linux jonolo (~jonolo@host-87-75-138-222.dslgb.com)
09:00.14Cotullait can be saved as config... but it doesn't good... because magldr need to erase block at each config change
09:00.33Cotullaother funny way - put config inside rootfs
09:00.38Cotullaafter flashing
09:01.29Markinuslet a small place on begin only for this table? directly bevor rootfs?
09:01.59Cotullahm
09:02.19Cotullabut if it read config from rootfs, rootfs must have fixed size...
09:02.24Cotullathis isn't good I think
09:03.27Markinusthe place could be only one block bevor rootfs
09:03.49Markinusit's like pc, the part table is on rthe beginning
09:04.04Cotullaother way - put all with MBR
09:04.22Cotullabut MBR is hard to build, isn't it?
09:04.29Markinushmm
09:04.37Cotulla(for regular android builds devs)
09:05.19Markinusbut this would be the cleanest solution . .
09:05.46Markinusbtw. can you give me the nand driver to include it in the kernel?
09:05.56Cotullayes, seems good. ever some parts can be WM and some Android :D
09:06.57Cotullaabout nand driver: it need more testing. we didn't check bad blocks yet. so it can be very unsafe to include it now.
09:07.26Markinusok, yes, it'S better
09:08.48Cotullabut how users can build MBR based image?
09:10.41Cotullaever with 2048 sector size
09:11.21Markinushmm
09:11.31Cotullaor wait... it can be flashed from parts
09:12.13*** join/#htc-linux rrew (~rrew@78-2-20-218.adsl.net.t-com.hr)
09:12.22*** join/#htc-linux LordDeath (~LordDeath@cable-81-173-165-181.netcologne.de)
09:16.06*** join/#htc-linux hastarin_ (~hastarin@220-253-159-83.VIC.netspace.net.au)
09:18.02*** join/#htc-linux Andreyxxl[HD2EU] (Andreyxxl@89.32.146.153)
09:18.53hastarin_Markinus if you're still about I noticed there is a hack in msm_fb.c that can probably be reverted. The comment mentioned vsync and I remember seeing vsync was enabled again. I've reverted it and can't see any issue from doing so, though not sure where to look.
09:22.09*** join/#htc-linux LeTama (~IceChat7@vau06-1-82-228-252-90.fbx.proxad.net)
09:22.48Markinushastarin_: you'Ve the newest evo based kernel?
09:22.59hastarin_Yes.
09:23.00Markinuswith logo modification s?
09:23.02LeTamahello guys
09:23.12hastarin_Well, no, I got it from git a few days ago.
09:24.31hastarin_I have one based on http://www.gitorious.com/linux-on-wince-htc/linux_on_wince_htc/commit/6ecee08bb822624f8ca547531811d0b5fee13555
09:25.53Markinushastarin_: ok, I will look to this modifications
09:26.35hastarin_Line 239.  It's within an #if defined(CONFIG_MACH_HTCLEO)
09:27.00hastarin_I've commented it out in the build I've made I'm using on my phone and haven't noticed any issues.
09:31.37Markinushastarin_:this is  a port of our full screen update hacks
09:31.40Markinuspart
09:32.27hastarin_Is it still needed now you have vsync enabled again though?  The comment suggested that might have been why it was required.
09:33.40*** join/#htc-linux EdangeL (~EdangeL@adsl-235.109.242.255.tellas.gr)
09:33.50Markinushastarin_: I will check the other parts too
09:34.36hastarinCool.  The code is beyond me, but I just noticed that comment so thought I'd mention it to someone that can follow it.  :)
09:38.39*** join/#htc-linux skodde (~skodde@unaffiliated/skodde)
09:40.48*** join/#htc-linux fcna (5d1c57c5@gateway/web/freenode/ip.93.28.87.197)
09:47.39CotullaMarkinus which timer used in evo kernel?
09:47.46MarkinusCotulla: dg
09:47.57Cotullaand is it ncie?
09:48.05MarkinusCotulla: no problems, works good
09:48.21Cotullaso is it time for power collapse?
09:48.37MarkinusCotulla: this would be grea
09:48.38Markinust
09:50.27*** join/#htc-linux zycho__ (~zycho@g227133066.adsl.alicedsl.de)
09:52.46*** join/#htc-linux manusfreedom__ (~manusfree@tra78-1-82-235-115-79.fbx.proxad.net)
09:53.28MarkinusCotulla:  i tested it, it's going sleep but never wack up
09:53.28MarkinusCotulla: do you know where's the problem?
09:53.38*** join/#htc-linux thedicemaster (thedicemas@e200071.upc-e.chello.nl)
09:53.44*** join/#htc-linux IFailStuff (~IFail@244.62.202.84.customer.cdi.no)
09:53.44*** join/#htc-linux IFailStuff (~IFail@unaffiliated/ifailstuff)
09:54.50Cotullayes
09:55.14Cotullau can't write to 00000000, so u can't put resume jump there
09:56.17Cotullacode need to be modified, so WM resume launch back kernel
09:57.50Markinusahhh
09:57.58Cotulla;)
09:58.15Cotullaok booting android with two parts - 64 and 256 mb :)
09:58.52*** join/#htc-linux MethoS- (~clemens@134.102.106.250)
10:01.47Cotullalol working
10:01.58*** join/#htc-linux figtab (47e38c5a@gateway/web/freenode/ip.71.227.140.90)
10:02.55*** join/#htc-linux Timber (~Tim@cable-86-56-42-159.cust.telecolumbus.net)
10:03.08LeTamawoot!
10:03.09figtabits exciting each time cotulla types. : ) seems like some new innovation  is to the hd2 each time. go cotulla!
10:03.20CotullaI got two mtdblock0 and mtdblock1 :)
10:03.27LeTamanice
10:03.32figtabthis is exciting
10:03.33Cotullaok now flash WM65 back :D
10:03.40figtabnooooo
10:03.49figtabi never want to see windows ever again
10:03.50figtablol
10:04.20*** part/#htc-linux thedicemaster (thedicemas@e200071.upc-e.chello.nl)
10:04.38Cotullayes :)
10:05.06Cotullaflashing... :P
10:05.09figtabi hate it how htc makes it so hard for us to unleash the power of our phones
10:05.22MarkinusCotulla: very nice :)
10:05.40CotullaI just want to finish USB mass storage, so it's easy to test it via haret
10:05.57Cotullabecause it's f* annoying to remove sd card put new zImage and again
10:06.04figtabcotulla: soon there will be an engadget article with your name all over it
10:06.28CotullaUSB mass storage will allow to copy zImage to sd card directly
10:06.37figtabnice
10:06.52figtabcotulla you are using yaffs2 correct?
10:07.04Cotullaused
10:07.12figtabok
10:08.43CotullaMarkinus, is it possible to place android user files to FAT?
10:08.59figtabrfs is a pos for android
10:09.17Markinushastarin_: I changed it
10:09.30MarkinusCotulla: good question . .hmm
10:09.32LeTamaCotulla, you can use loopback on a image file
10:09.35MarkinusCotulla: never tested
10:09.46LeTamathe same way we do currently
10:09.53CotullaLeTama, yes. but it's bad
10:10.01Cotullatwo translations at least
10:10.05hastarinCool thanks, I'll pull the update.
10:10.08LeTamaI know, but you need rights
10:10.16LeTamawon't work with fat only
10:10.59Markinushastarin: you need a logo file in your initrd
10:11.02Cotullabad
10:11.12hastarinYeah I'm working on that now.  Thanks.  :)
10:11.24Cotullathought about common data store for two os
10:11.42LeTamaCotulla: write ext2 driver for ce ? :)
10:11.50Cotullayaffs2 almost exist
10:11.58Cotullabut I am not sure if it's good
10:13.19LeTamaIn my opinion, too many troubles for small gain
10:13.29LeTamaOption 1, partition card
10:13.34LeTamaOption 2 use loop
10:14.39*** join/#htc-linux mdeejay (~mdeejay@188.168.168.101)
10:14.57Cotullaagree
10:15.00Cotullatoo small flash
10:15.12Cotullaor 100 WM + 100 Android + 120 DataWM + 120 DataAndroid :D
10:15.43*** join/#htc-linux JonW1980 (~Jon@wendzina.gotadsl.co.uk)
10:15.43LeTamawe could do very small wm without sense too
10:16.08LeTamagoing back to wm is mostly for specifics apps, don't need sense
10:17.16figtabwhat about a lite sense rom?
10:17.20*** join/#htc-linux castitas (55445b66@gateway/web/freenode/ip.85.68.91.102)
10:17.55Cotullahow big is it?
10:18.17hastarinI'm already using OzDroid.  It's quite light.  No idea how big it is though.
10:18.29EdLinyaffs2 may make sense for NAND, but for the SD card, those have FAT optimization in their ROMs used to access the device, which means you'll see very little gain by using it.
10:19.34EdLinin fact, most of the time, you'll see a performance loss, as the ROMs aren't smart enough to know you're not using FAT, and to stop interfering.
10:19.42Cotullasd - fat, nand -yaffs2
10:20.03figtabthat sounds good
10:20.05EdLinyou guys working on NAND?
10:20.06CotullaWM using FAT + FAL
10:20.33figtabnexus one uses yaffs2 for its internal nand correct?
10:20.47Cotullayes
10:21.35*** join/#htc-linux laurens (~laurens@82-136-218-66.ip.telfort.nl)
10:21.35castitasHello everybody (sorry for my english) I have a physical azerty keyboard on my touch pro2 but android(Android v2.2 Froyo) make it as a qwerty. How can I change it ? if a solution exists
10:21.39figtabi dont know why samsung didnt use yaffs2 on the galaxy s. instead opting to use RFS which has made the phone slower than a g1 sometimes due to the I/O lag
10:22.07figtabgo to settings
10:22.13EdLinfigtab: it's because when it comes to software, Samsung never has known what they're doing. ;-)
10:22.17figtablanguage and keyboard
10:22.21Cotullawhat is RFS?
10:22.21MarkinusCotulla: I think we should use or wince in nand or linux, not both at once, if you can use wince in nand and boot with the bootloader linux from sd it's great for people who want to user both.
10:22.41CotullaMarkinus, yeah
10:23.19figtabCotulla: http://www.samsung.com/global/business/semiconductor/products/fusionmemory/Products_RFS_Brochure.html <<< thats RFS.. its basically FAT made for NAND but samsung really screwed it up
10:23.41castitasOkay i'll try but i think there is only "japonese" option i don't know why..
10:23.49Cotullasamsung may installed own nand memory
10:23.57Cotullaso they developed optimized version for them
10:24.48figtabits not optimized at all. the galaxy s on quadrant only gets 900 due to their faliure to implement a nand filesystem correctly
10:26.37Cotullalol :D
10:26.45Cotullamaybe they thought so...
10:26.53figtabthe people at xda developed a work around for this which creates a virtual ext2 filesystem on top of the RFS partition and the quadrant scores jumped to 2300
10:27.47figtabsamsung should be sued for falsely advertising their product by saying its 2 times faster than any android phone when they dont even know how to program it
10:28.10Cotullamaybe
10:28.15Cotullasamsung is samsung :)
10:28.38*** join/#htc-linux mastermerlin (~Adium@p4FEE57A3.dip.t-dialin.net)
10:28.43figtabplus the gps is crap on it due to them not knowing how to fix the drivers. a lawsuit wud set them straight
10:29.09figtabanyways sorry for jabbering ill let u get back to work
10:29.16Cotullaok
10:29.17figtabgood luck cotulla
10:29.18figtab:)
10:29.21Cotullathnks
10:29.29figtabgot ur twitter on refresh
10:29.30figtablol
10:30.23Cotulla?
10:31.22JonW1980Will NAND give easier control over certain devices? Ie allow for proper calibration within the android environment?
10:33.12Cotullagsensor have calibration
10:33.28JonW1980compass?
10:33.43Cotulladunno about it...
10:33.52JonW1980ok :)
10:34.22hastarincompass is still 90 degrees out I think.
10:35.26JonW1980D'oh!
10:35.56JonW1980I'm sure even in WinMo, the compass was never particularly accurate for me.
10:35.59*** join/#htc-linux blackadderATM (Chris@64-9-158-6.fwd.datafoundry.com)
10:36.54*** join/#htc-linux Blizzzard (5e01ef6a@gateway/web/freenode/ip.94.1.239.106)
10:38.49*** join/#htc-linux |Jeroen| (~jeroen@d5152B6A8.access.telenet.be)
10:39.25*** join/#htc-linux surgeyz (~surge@pool-98-118-157-221.bflony.fios.verizon.net)
10:40.09*** join/#htc-linux jhh_ (b280d4bb@gateway/web/freenode/ip.178.128.212.187)
10:43.07JonW1980I wonder if it can be readjusted by 90degrees...
10:43.48hastarinYeah mine wasn't either.  Of course dropping my phone a few times may not have helped that.
10:44.50Cotullait doesn't show no north... it show to ur desire...
10:45.24hastarinAh, that explains why it keeps moving all over the place.  :p
10:45.44Cotulla:)))
10:46.15*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
10:46.32*** join/#htc-linux MN (b264b069@gateway/web/freenode/ip.178.100.176.105)
10:46.37MNhello
10:48.31MNhows it going
10:51.51JonW1980Hahahaha!! Funny :P
10:53.30*** join/#htc-linux CrAzY_CbR (d5e74651@gateway/web/freenode/ip.213.231.70.81)
10:53.33*** join/#htc-linux balans (~BRPOLDB@82-170-217-205.ip.telfort.nl)
10:54.05MNoh i see,nand driver is completed
10:55.37JonW1980Yep
10:58.43*** join/#htc-linux surgeyz (~surge@pool-98-118-157-221.bflony.fios.verizon.net)
10:59.45*** join/#htc-linux surgeyz (~surge@pool-98-118-157-221.bflony.fios.verizon.net)
11:02.27*** join/#htc-linux flagada (58a1e24e@gateway/web/freenode/ip.88.161.226.78)
11:04.48mdeejayhow remove this watermark?:)))  http://i10.fastpic.ru/big/2010/0919/68/8ccaace6d4369f3291ac7581373d2368.jpg
11:06.09JonW1980Is that from the Ace?
11:06.47mdeejayyes
11:07.34mdeejayAce rom on HD2 )
11:07.53JonW1980Ah yea I see what you're doing there ;)
11:07.58*** join/#htc-linux SVic (~SVic@5f4495b0.dynamic.mv.ru)
11:08.57hastarinI haven't seen anyone mention finding a solution.  Most of the chat I've seen about that is in #htc-linux-chat from yourself, darkstone and mattc.  :)
11:09.36*** join/#htc-linux Blackeyes (~android@62.201.142.7)
11:12.14*** join/#htc-linux skodde (~skodde@unaffiliated/skodde)
11:14.43JonW1980On a side note, is it any good mdeejay?
11:14.56*** join/#htc-linux kholk (~kholk@unaffiliated/kholk)
11:15.01kholkre all
11:16.39*** join/#htc-linux skodde (~skodde@unaffiliated/skodde)
11:18.49*** join/#htc-linux jonolo (~jonolo@87.75.138.222)
11:20.13*** join/#htc-linux LeofeVer (~tommy9097@175.138.74.223)
11:26.20*** join/#htc-linux roman26 (roman26@cpc3-belc1-0-0-cust237.2-1.cable.virginmedia.com)
11:29.11*** join/#htc-linux xDDDDDD (~xDDDDDD@lns-bzn-33-82-252-32-231.adsl.proxad.net)
11:34.34*** join/#htc-linux invisiblegod (invisibleg@bl11-115-141.dsl.telepac.pt)
11:38.32*** join/#htc-linux ElBartoME (~a@ip-109-90-64-144.unitymediagroup.de)
11:43.44MNseems dead lol
11:46.10*** join/#htc-linux iDavid (c5006a74@gateway/web/freenode/ip.197.0.106.116)
11:46.39*** join/#htc-linux roman26 (roman26@cpc3-belc1-0-0-cust237.2-1.cable.virginmedia.com)
11:50.09xDDDDDDindeed
12:01.00*** join/#htc-linux Phylus (~Phylus@66.36.198.114)
12:03.51*** join/#htc-linux MumZrr (~xDDDDDD@lns-bzn-33-82-252-32-231.adsl.proxad.net)
12:04.56*** join/#htc-linux kse (~virus@dslb-084-063-152-255.pools.arcor-ip.net)
12:05.13iDavidBecause everyone is patient ;)
12:06.18*** join/#htc-linux ImHos (pIRCuser35@178.124.144.226)
12:07.28fakkerwaves
12:09.30*** join/#htc-linux Phylus (~Phylus@66.36.198.114)
12:11.25*** join/#htc-linux Dj-Gutz (~madboy@87.69.228.213)
12:14.54*** join/#htc-linux Ashar (deadly@unaffiliated/ashar)
12:16.34MarkinusCotulla: it seems we have the a1026 . .did you know this?
12:17.15*** join/#htc-linux Rajko (~Rajko@cable-188-2-156-189.dynamic.sbb.rs)
12:17.38Rajkowe cooking with nand yet ?
12:17.46*** join/#htc-linux sebbe1991 (~aoeu@BrokenBrain.se)
12:18.30*** join/#htc-linux Phylus (~Phylus@66.36.198.114)
12:20.50*** join/#htc-linux froezen (~ircap@92.17.131.217)
12:21.22*** join/#htc-linux mastermerlin (~Adium@p4FEE57A3.dip.t-dialin.net)
12:25.04*** join/#htc-linux froezen (~ircap@92.17.131.217)
12:31.28*** join/#htc-linux gauner1986 (~gauner198@p508C6DA2.dip.t-dialin.net)
12:31.34gauner1986hi
12:31.58kholkgauner!
12:31.59kholk:D
12:32.07gauner1986kholk.. old house
12:32.08gauner1986:P
12:32.09kholk:P
12:32.15kholkall okay? :D
12:32.29kholkI've heard that Linux can go on NAND on HD2 :D
12:32.36hastarinHi gauner.  Running the fruits of your labor here, or yours and LeTama.  :)
12:32.37gauner1986yeah.. seems like it :)
12:32.44Rajkowhat's the status of wake up freezes on current git builds ?
12:32.47kholkheh! good! :D
12:32.51Rajkogauner1986 is an expert on this
12:32.55gauner1986Rajko: using old msmfb everything is fine
12:32.57hastarinNo wakeup issues on latest build. :D
12:33.04gauner1986on every build
12:33.14Rajkoyeah but letama said that was hack
12:33.17Rajkoand shouldnt be checked in
12:33.22Rajkoso its not on git
12:33.24kholkI'm goin' crazy with Motorola now :P
12:33.25gauner1986that was a test, yeah
12:33.35hastarinThere is a final fix in git now isn't there?
12:33.40gauner1986dunno
12:33.42gauner1986it has to be tested
12:33.55gauner1986it didnt work on my build initially
12:33.55hastarinAh, well it works for me.  :)
12:33.56Rajkothe fb now doesnt redraw whole screen if no fbconsole
12:34.01Rajkowas that the fix ?
12:34.07Rajkoi like fbconsole :(
12:34.18gauner1986fbconsole shows that you're a geek
12:34.20gauner1986:P
12:34.29gauner1986nothing more
12:34.47Rajkowell, the current android builds dont unmount properly on power off
12:34.55Rajkoso id like to see WHICH FILES IT TRUNCATED
12:34.58Rajkoon fsck
12:35.10gauner1986you could use ramconsole
12:35.17*** join/#htc-linux MumZrr (~xDDDDDD@lns-bzn-33-82-252-32-231.adsl.proxad.net)
12:35.44gauner1986or just adb shell dmesg
12:36.06Rajkothat only shows kernel prints
12:36.12gauner1986ah yeah
12:36.12Rajkonot like echos from the init scripts
12:36.14gauner1986no fsck there
12:36.34gauner1986then let fsck write a log to somewhere
12:36.34gauner1986:P
12:37.11gauner1986hastarin: which build are you using?
12:37.34hastarinHmm, I only have on FSCK file on my card.  And I've been fiddling a lot lately.
12:37.39*** join/#htc-linux josh13x12 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
12:37.42hastarinmattc 1.7 as a base
12:37.50gauner1986ah ok
12:37.55gauner1986markinus also said that was working
12:38.00gauner1986i didn't test it
12:38.01fakkerwaves
12:38.05gauner1986but on my build it didnt work
12:38.29*** join/#htc-linux DirkNL (~DirkNL@113-82-ftth.onsneteindhoven.nl)
12:39.02hastarinAh, well it's definitely solved the problem for me.  Apart from the known issues (sound glitches, compass, etc) I'm very happy with the current build.
12:39.53hastarinThis is what I'm running.  http://forum.xda-developers.com/showpost.php?p=8212290&postcount=156
12:41.41hastarinOh and darkstone's changes for writecombie and shadow writes for the hell of it.  I don't know enough to know exactly what they do but figured I'd compile a kernel with them and see how it goes.
12:46.30*** join/#htc-linux Rajko (~Rajko@cable-188-2-156-189.dynamic.sbb.rs)
12:46.55ElBartoME~seen michyprima
12:46.59aptmichyprima <~opera@host106-197-dynamic.55-79-r.retail.telecomitalia.it> was last seen on IRC in channel #htc-linux, 6d 17h 59m 10s ago, saying: 'who knows when an htc device with next gen QSD will be released, that's will be my next buy'.
12:48.01*** join/#htc-linux mdeejay_ (~mdeejay@188.168.168.101)
12:49.51*** join/#htc-linux xDDDDDD (~xDDDDDD@lns-bzn-33-82-252-32-231.adsl.proxad.net)
12:51.14Markinusgauner1986: I did some tests, and it seems I can communicate and probe the a1026 driver for 0x3e
12:52.47*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
12:56.29*** join/#htc-linux opter (~AndChat@114.220.117.36)
12:59.39ElBartoMEhey, anybody got the newest htc_ril wrapper?
13:03.06*** join/#htc-linux thejeos (oscarleong@89.129.20.198)
13:07.30*** join/#htc-linux Microang (522deb64@gateway/web/freenode/ip.82.45.235.100)
13:08.57*** join/#htc-linux iDavid_ (c5004d64@gateway/web/freenode/ip.197.0.77.100)
13:12.37*** join/#htc-linux Termana (~bradley@123-3-191-58.static.dsl.dodo.com.au)
13:13.06*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
13:15.59noellenchrisMarkinus: after running git evo kernel, I noticed the kernel will sleep, but not wake up on cm6 builds.  I thought it used to work when Cass & LeTema were tweaking it.  Also it actually uses less than 10mA in sleep
13:17.56noellenchrisGauner1986: your kernel works very good after it's running awhile, but I don't think it's also actually going to sleep as it never drops below 60mA...at least not yet.  Also this is probably why it always wakes and no SOD.  I'm not complaining just posting results
13:20.47flagadai run with 5 mah in standby me
13:21.23hastarinSame
13:22.31flagadawith last module and kernel evo on build of frg33 for me
13:23.27ElBartoMEnoellenchris: is bt working for you with the evo kernel and cm6?
13:24.12iDavid_its not working fo
13:24.20noellenchrisI've ran 4 diff kernels in 2 days....lol, I havent't even tried bt....
13:24.23flagadame also no work
13:24.48noellenchrisMarkinus did push update yesterday for bt on git
13:24.55iDavid_i have stereo headset
13:25.04ElBartoMEok, i'm trying to include the nexus bt driver into the evo kernel, but that's a real bitch >.<
13:25.08noellenchrisalso changed a vsync thing today, I haven't tested that kernel
13:25.15iDavid_and their not working on android
13:26.09noellenchrisI switched to gauner1986's kernel for now, it won't really sleep for me, but also no sod for me either..  I don't like pullling battery after 5min sleep
13:26.45hastarinBT works for me on EVO kernel from git + mattc 1.7 (Sense)
13:26.53ElBartoMEwell bt is working on sense builds
13:26.56ElBartoMEbut not on vanilla ones
13:27.34Microangread your battery cover and u'll understand all about sense making sense! ;)
13:27.41noellenchrislemme see what happens w/just turning it on...in past I had errors...also this is gauner1986 kernel
13:27.43ElBartoME:P
13:27.43Rajkothis mattc ? http://forum.xda-developers.com/showthread.php?t=736545
13:28.13*** join/#htc-linux fred2 (~yaaic@77.17.38.27.tmi.telenormobil.no)
13:28.25hastarinYeah, search for my sig in that thread if you want to know exactly what I'm running.
13:28.46noellenchrismy battery cover now says WITH COTULLA CODE INSIDE
13:29.14LeofeVernoellenchris : photos? LOL
13:29.17*** join/#htc-linux Captnoord (~Captnoord@e98118.upc-e.chello.nl)
13:29.35noellenchrishehe
13:29.38Cotullalol
13:29.45Microanglol
13:29.58iDavid_that doesnt help
13:30.11Microangwell I can't have android without sense, it makes me go back to winmo!
13:30.14Microang:D
13:30.26LeofeVerI think i will make a sticker and stick it on the back of my HD2 , " Powered by CotullaCode" ;)
13:30.30MarkinusCotulla: what do you think, it'S possible that we've a a1026?
13:31.10noellenchrisElBartoME: ok bt won't turn on for me on CM6 w/ Gauner1986 kernel...I will re push modules and try again..brb
13:34.47*** join/#htc-linux iDavid__ (c5004d64@gateway/web/freenode/ip.197.0.77.100)
13:39.06*** join/#htc-linux |Jeroen| (~jeroen@d5152B6A8.access.telenet.be)
13:39.27*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
13:40.29*** join/#htc-linux tids2k (~tids2k@27-32-30-32.static.tpgi.com.au)
13:47.15gauner1986re guys
13:47.53gauner1986Markinus: a1026? :D what's that?
13:49.08gauner1986ah okay
13:49.10*** join/#htc-linux Jack (4dfd16e9@gateway/web/freenode/ip.77.253.22.233)
13:49.15gauner1986it's the audio enhancer stuff
13:49.34JackI'll pay 1$ if somebody will tell me how to make WiFi works on tp2! ^^
13:49.51Guest79261I'll pay 1$ if somebody will tell me how to make WiFi works on tp2! ^^
13:50.01gauner1986that's not much :P
13:50.09Guest79261: c
13:50.30Guest79261but i think its simple : D
13:50.39iDavid__he ment 1millions of $
13:50.44gauner1986ah ok
13:50.48gauner1986then i'll get me a tp2
13:50.52gauner1986and help you
13:50.53gauner1986:P
13:51.26gauner1986noellencrhis: really? i got very good power results actually
13:51.37gauner1986noellenchris: better than winmo
13:51.39Guest79261I saw it can't be WEP, but it's not the problem
13:52.25Guest79261when i search then "unable for scanning" appears
13:53.38iDavid__that means wifi driverisnt developedvt
13:54.14Rajkowhere do i find .rle initrd
13:54.26iDavid__sorry for mistakes... using winmo's kb
13:54.32gauner1986rajko: i made one myself
13:54.36gauner1986with letama's rle
13:54.45Cotullahey
13:54.48gauner1986hey cotulla
13:54.55gauner1986if you want i can upload it
13:55.06Guest79261thanks iDavid, but any solution for this?
13:55.29CotullaI was away
13:55.36gauner1986lol
13:55.37gauner1986re
13:55.37noellenchrisgauner1986:  overall it runs great.  Just noticed it won't drop below 60mA or so in sleep.  I had same thing with michyprima's ,  but after awhile on LeTama's & Git kernel it would sleep, just sometimes it won't wake up.
13:55.44Rajkogauner1986, my kernel keeps hardlocking ifi make my own initrd
13:55.49Rajkoprobably doing it wrong
13:55.50Cotullawhat is a1026?
13:55.55gauner1986audio enhancer
13:56.02noellenchrisI wonder if yours sleeps on sense.....
13:56.08Rajkogauner1986, upload it, ill dissect it if i want to modify it i guess
13:56.41gauner1986ok
13:56.43CotullaI don't think so
13:56.53gauner1986cotulla: wiki says so at least
13:56.54gauner1986:)
13:57.11Rajkowhat does audio enhancer do
13:57.13Cotullawiki?
13:57.23Cotullawiki have a lot of errors :) it's wiki :P
13:57.37gauner1986enhance audio? :D
13:57.45gauner1986it's the equalizer stuff
13:57.54Cotullait's I2C, I didn't see anything related to it
13:58.36CotullaRajko, YAFFS2 working great now :)
13:58.46gauner1986cool
13:59.12iDavid__that means?
13:59.56phhgauner1986: most importantly it does noise reduction with 2° (3°?) mic
14:00.03gauner1986aaah
14:00.04gauner1986ok
14:00.11noellenchrisguaner1986: new EVO kernels are very loud now too..?
14:00.52gauner1986dunno
14:00.54gauner1986havent called yet
14:01.11iDavid__me neither
14:01.13noellenchriswifey says something wrong with my phone when she calls.  Maybe that's good, she won't call and bug me...lol
14:01.34*** join/#htc-linux mdeejay_ (~mdeejay@188.168.168.101)
14:01.41gauner1986yeah
14:01.46noellenchrisI need to call myself....(sounds like I have some issues...hehe)
14:01.46gauner1986you have to see the bright side in it
14:01.51iDavid__lool nice
14:02.16gauner1986rajko: http://htcleo.noobhands.net/gauner1986/initrd.gz
14:03.17gauner1986rajko: do it like this: http://android-dls.com/wiki/index.php?title=HOWTO:_Unpack%2C_Edit%2C_and_Re-Pack_Boot_Images#Unpacking.2C_Editing.2C_and_Re-Packing_the_images
14:03.24gauner1986works for me
14:04.48noellenchrislol, my mic is super sensitive...I can hear things outside....lol
14:04.56noellenchrisgood for spying
14:06.32gauner1986use it wise
14:06.41gauner1986don't fall for the dark side
14:07.12noellenchriseasy fix, I stick toothpick in mic.....but stabs my leg when in pocket....hmm
14:09.36*** join/#htc-linux skodde (~skodde@unaffiliated/skodde)
14:09.50Cotullaupload?
14:09.55Cotullawtf
14:09.58Cotullawrong window
14:12.47*** join/#htc-linux hastarin (~yaaic@220-253-159-83.VIC.netspace.net.au)
14:14.53gauner1986cotulla: sounds like we're pretty much ready with that bootloader?
14:16.27Major_Sarcasmwh00p!
14:16.58Cotulla?
14:17.21gauner1986cotulla: sounds like you're near to finishing!
14:17.21gauner1986:P
14:20.59*** join/#htc-linux roman26 (roman26@cpc3-belc1-0-0-cust237.2-1.cable.virginmedia.com)
14:22.57*** join/#htc-linux Blizzzard (5e01ef6a@gateway/web/freenode/ip.94.1.239.106)
14:23.03*** join/#htc-linux slayerns (8bb3cf37@gateway/web/freenode/ip.139.179.207.55)
14:23.18slayernswhat are you gonna call it? Leo NandDroid?
14:23.35slayernsor LeoNDroid
14:24.03theredundant?
14:24.09theredundant:O
14:24.13theredundantleandroid
14:24.20Blizzzardor the LEvo?
14:24.27theredundant^^
14:25.17*** join/#htc-linux Jack-E (~chatzilla@host86-130-60-114.range86-130.btcentralplus.com)
14:28.13gauner1986hm
14:28.19gauner1986desire hd is so tasty
14:28.26gauner1986mjamjam
14:29.03Jack-Eomnomnomnom
14:32.31gauner1986i already have a buyer for my leo :D
14:32.42Microangmmm, can't wait for desire HD build! :D
14:32.51gauner1986my girlfriend will get it
14:32.57gauner1986so i can still do experiments with it :)
14:33.03Microangnooo gauner1986 u don't wanna sell leo
14:33.06roman26gauner, why do you want to sell your hd2?
14:33.15gauner1986nah
14:33.18Microangleo has hardware buttons and wp7 soon :D
14:33.18gauner1986at the end of the year
14:33.21gauner1986or january perhaps
14:33.25Rajkoleo 4 lyf
14:33.30Microang:D ye
14:33.37theredundantleo till dual core android is out
14:33.42Microang:D
14:34.29Rajkogauner1986, the re-cpioing seems to mess them up
14:34.37Rajkoif i just hex edit the gunzipped, it works fine
14:34.43gauner1986strange
14:34.46gauner1986always worked for me
14:35.19Microanggauner1986: ur good with lib files right?
14:35.32gauner1986depends
14:36.15Microangmaybe u can help mdeejay get the camera libs working in the desire hd build, everything else is done already! :D
14:36.57Microangeven watermark
14:37.03gauner1986watermark isn't hard
14:37.18Microangwell it was for mattc and darkstone
14:37.24gauner1986well
14:37.27Microangare camera libs hard for u?
14:37.28gauner1986if mdeejay shares his work
14:37.30gauner1986i'll see
14:37.37Microanghe will ;)
14:37.42*** join/#htc-linux ToAsTcfh (~toastcfh@29-37.200-68.tampabay.res.rr.com)
14:38.19mdeejayofcourse
14:38.29Microang:)
14:39.12DuperManHTC HD2D Evol?
14:39.20MicroangIt's nice to be a htc-linux (leo) ambassador
14:39.22Microang:)
14:39.32gauner1986mdeejay: you have your files somewhere uploaded?
14:39.51darkstonealmost done here
14:39.54darkstonewatermark gone
14:39.57darkstoneaudio working
14:39.59darkstonegsensor working
14:40.00mdeejaywait a moment
14:40.03ToAsTcfh~seen phh
14:40.09aptphh is currently on #htc-linux (20h 54m 8s) #meego (20h 54m 8s) #openmoko-cdevel (20h 54m 8s). Has said a total of 1 messages. Is idling for 40m 13s, last said: 'gauner1986: most importantly it does noise reduction with 2° (3°?) mic'.
14:40.09darkstonegps working
14:40.13gauner1986darkstone: nice shit
14:40.13phhToAsTcfh: yup ?
14:40.18darkstoneneed to work on ppp
14:40.19ToAsTcfhwhat up man
14:40.23darkstonehavent checked that
14:40.26gauner1986darkstone: gimme, i'll do it
14:40.32phhToAsTcfh: got a AC100 :D
14:40.35darkstone:D
14:40.38ToAsTcfh:)
14:40.40darkstonei'll be done soon anyway
14:40.53gauner1986any further issues?
14:40.54ToAsTcfhnice
14:40.56darkstonecamera
14:40.59darkstonehm
14:41.01darkstonethats about it
14:41.02gauner1986except cam?
14:41.04gauner1986ok
14:41.04darkstonecamera doesnt load
14:41.52Rajkoanyone know why we're stuck with 16bit color on your leos ?
14:42.02phhToAsTcfh: but toshiba sucks at software.
14:42.08gauner1986hardware isn't capable of more rajko?
14:42.19Rajkoit certainly should be
14:42.37gauner1986cotulla gotta know
14:42.40gauner1986:)
14:42.49gauner1986as well as the mysterious 720p recording thing
14:42.51Rajkotft tn displays are 6 bit per color
14:42.52phhToAsTcfh: they almost implemented mkv, it only lacks the filtering part, the chip is capable of 1080p playback, they "forgot" to enable hardware decoding
14:42.57gauner1986the chip is able to do it
14:43.05gauner1986at 15fps or so
14:43.17ToAsTcfhphh: u try to get froyo on it yet?
14:43.18Rajkoonly maybe if they have a shitty SPI interface thats low clocked or something
14:43.20gauner1986but noone has worked it out yet
14:43.23Rajkoto the display
14:43.27ToAsTcfh2.1 right?
14:43.28phhToAsTcfh: no, debian
14:43.33ToAsTcfhoh
14:43.39phhyup 2.1
14:44.02*** join/#htc-linux fred2 (~yaaic@77.19.179.204.tmi.telenormobil.no)
14:44.03phhToAsTcfh: no bootloader or recovery mode found yet ...
14:44.26ToAsTcfhso is android lappies the next big thing? or possible flop
14:44.35phhToAsTcfh: it's say total flop
14:44.41phhi'd*
14:44.44phhi'd said*
14:44.44ToAsTcfh:/
14:44.44phhbaaaaaah
14:44.49phhyou got the idea
14:44.52ToAsTcfhyeah'
14:45.07MicroangYeah why is it that we're so close to having nand and everything and no one  has got us 720p? It must be possible! The desire can! :D
14:45.21ToAsTcfhits possible to install whatever on it though right?
14:45.36MicroangWhere does the problem lay?
14:45.43phhToAsTcfh: without bootloader access, it's complicated.
14:45.43ToAsTcfhor does it need root lol
14:45.46darkstoneMicroang: you make it sound so easy! :D
14:45.53Microang:D
14:45.53phhi'm installing a debian in a chroot
14:45.59ToAsTcfhdasmn
14:46.02ToAsTcfhdamn
14:46.06Microangdarktone: do u know what the problem is though?
14:46.21ToAsTcfhphh: thsats kinda strange for a pc huh?
14:46.29darkstoneMicroang: lets think about this
14:46.30phhToAsTcfh: that's not really a pc -_-'
14:46.40darkstoneif i knew, don't you think i would of done something about it?
14:46.45phhToAsTcfh: at least 3D works properly
14:46.52phhRT2 light flies
14:46.55darkstone:p
14:47.01Microanghmm true darkstone but someone must know :(
14:47.04*** join/#htc-linux Neo31 (~Neo31@41.226.95.94)
14:47.04*** join/#htc-linux Neo31 (~Neo31@unaffiliated/neo31)
14:47.17DuperManhtc engineers. they know.
14:47.20DuperManask them.:)
14:47.23Microangdarkstone: maybe desire hd app will make it work? :D
14:47.24gauner1986darkstone: gogogo.. i wanna do some experiments :P
14:47.25Microang:P
14:47.45Microanggauner1986: do u have any idea why 720p is not working?
14:47.51ToAsTcfhphh: is there an official market on it?
14:47.55Microangkernel, libs or app?
14:47.58phhToAsTcfh: yeah
14:48.01phhweird name
14:48.05darkstonego away man -_-
14:48.07phhc market
14:48.14Microang:D
14:48.14phhcamangi market
14:48.20*** join/#htc-linux laurens (~laurens@82-136-218-66.ip.telfort.nl)
14:48.21*** join/#htc-linux Andreyxxl[HD2EU] (Andreyxxl@89.32.146.153)
14:48.21ToAsTcfh:x
14:48.22gauner1986lol
14:48.26phhthere is pretty much nothing on it
14:48.43Microangwell it has to be one of those right?
14:48.53DuperManwell it can't be bad vibes
14:48.54ToAsTcfhah so its like the pc android we have now for all pcs
14:48.57DuperMan><
14:49.07phhToAsTcfh: but that's not a pc /o\
14:49.22ToAsTcfhok ine ill go see why its not a pc
14:49.35phhbecause pc ~=x86 ?
14:52.05ToAsTcfhnice its ARM with an nvidia gpu!!! dude i want a phone with that shit
14:53.30ToAsTcfhwhere is the kernel source for this bad boy
14:53.35phhToAsTcfh: it's called a zune :D
14:53.43phhno kernel source for AC100 atm
14:53.47ToAsTcfh:/
14:53.54ToAsTcfhthem bastards
14:54.08ToAsTcfhkinda crazy it needs root
14:54.10phhit has been released two weeks ago -_-'
14:54.23phhit's an android, android always need root.
14:54.58ToAsTcfhso u can not find the bootloader?
14:55.17phhno
14:55.40Microanggauner1986: good luck with the Desire HD camera anyway! :)
14:56.04ToAsTcfhu should try some of the latestest root methods for the evo. could get u at least root through google hickups
14:56.37phhToAsTcfh: uh ?
14:56.39phhI already have root /o\
14:56.45ToAsTcfhoh
14:56.45phhthanks to rage against the cage
14:56.47ToAsTcfhsweet
14:58.17Rajkothe camera on leo SUCKS
14:59.18*** part/#htc-linux hastarin (~yaaic@220-253-159-83.VIC.netspace.net.au)
14:59.18Microangno it doesn't! Compared to what?
14:59.24Rajkon95
14:59.37Microanglol, I think not!
14:59.42*** join/#htc-linux gauner1986- (~gauner198@p508C6DA2.dip.t-dialin.net)
14:59.49Rajkothe phone i had since 2006
14:59.51MicroangI've used both, just needs setting up on hd2
15:00.08Microangand make sure the lens is clean!
15:00.35RajkoIT IS
15:00.42Rajkosetting up ?
15:00.51*** join/#htc-linux hastarin (~hastarin@220-253-159-83.VIC.netspace.net.au)
15:00.58ToAsTcfhphh: kinda strange it has o bootloader. must be some crazy "up,down,up,down,left,right,left,right, return" shit to get into it
15:01.07Microangchanging settings, exposue, saturation, contrast, manual lighting
15:01.09phhLOL
15:01.11Microang:)
15:01.17Rajkohow about no
15:01.18phhToAsTcfh: that's no PSX.
15:01.47Microanggood enough for me :D, I came from the diamond so :P
15:02.06ToAsTcfhah the diam500 days :)
15:02.22phhToAsTcfh: we know one combinaison, home button + power on
15:02.30phhit formats /data
15:02.35ToAsTcfh:x
15:02.36*** part/#htc-linux Baeen (~Bane@ppp118-208-223-5.lns20.hba1.internode.on.net)
15:02.37Microangno diam100 with vid chat! Only thing I miss
15:02.37gauner1986-diamond.. the lagging phone
15:02.38gauner1986-:)
15:02.51Microanggauner1986 I made it fly before I got leo
15:03.04Microangwith sense 1.5
15:03.07Microang2.5
15:03.13*** join/#htc-linux AstainW00t (~AstainHel@unaffiliated/astainhellbring)
15:03.16gauner1986-when i first held it in my hand in the shop it was so sluggish
15:03.22ToAsTcfhphh: vol. down + power?! :P
15:03.27Microangye, stock was crap
15:03.44phhToAsTcfh: you want me to try every single button available basically ? :p
15:03.48phhthen every combination ? :p
15:03.49Microanggauner1986: if it only had more ram I might still use it!
15:04.01Microangandroid on it was great though
15:04.04gauner1986-how much does it have?
15:04.10phhgauner1986-: 128+64
15:04.14gauner1986-uhm...
15:04.17gauner1986-thats not much
15:04.21Microang192mb but only 100mb accessable! I was like wtf
15:04.43Rajkowhy does leo have 576MB but only 440 accesable
15:04.44Microangmy blue angel had 128mb and 96mb available and thats the kinda loss I expected
15:04.46phh100 ? hum they could go a bit higher
15:05.00phhRajko: 3D, radio, 2D, video accel (dec+enc), camera
15:05.19Rajkoyeah but what s the deal with then unlocking it using specific wm roms and stuff
15:05.39Microangphh: if nand android for diamond is ever done would u be able to increase the usable ram?
15:06.02phhMicroang: nand won't change a damn thing to available ram...
15:06.05MicroangRajko: cause tmous has it unlocked and euro not
15:06.16Microangphh: ok
15:06.38Rajkosee this is why i dont like no fbconsole
15:06.47Rajkowhen its making data.img it takes a while
15:06.51Rajkoand i dont know if it froze or not
15:07.02gauner1986-enable it for that case
15:07.03gauner1986-:P
15:08.58Microang:P ye
15:09.11Rajkogauner1986-, WHY LEDS BROKEN
15:09.12Rajkoon evo
15:09.15Rajkoleds worked fine on msm
15:09.27MicroangI'm not changing a damn thing in my build till I get DHD build!
15:09.29Microang:D
15:09.35gauner1986-rajko: it must be some side effect that triggers userspace to do some weird shit with leds
15:09.45gauner1986-rajko: it turns them off right after it turned them on
15:09.55Rajkothe orange one is on at boot
15:10.00gauner1986-yeah
15:10.04gauner1986-leds absically work
15:10.05Rajkoand turns off after a while or if i plug usb in
15:10.09gauner1986-but userspace breaks it
15:10.10Microanggauner1986 have u looked into that, d'u know what the problem is?
15:10.16Microangoh
15:10.22Rajkorunning the suggested mattc
15:10.27Microanglib prob?
15:10.39gauner1986-rajko: it happens of course only after liblights is initialized at the android splashscreen
15:11.09Rajkoanyone have the htc android sync app
15:11.15Microanggauner1986: would it not be possible to fix liblights from evo?
15:11.18Rajkolatest version, since it asks me for IMEI to get it at htc.com
15:11.33gauner1986-rajko: it's somewhere at xda...
15:11.34Microangrajko: give them ur imei! :D
15:11.44Rajkoits spanish hd2, not android phone
15:11.56Microanghello fellow spaniad
15:12.01Rajkoi'd need a desire imei
15:12.04Rajkoim not spanish, the phone is
15:12.08Microangoh
15:12.10Microang:)
15:14.40*** join/#htc-linux mdeejay (~mdeejay@188.168.168.101)
15:15.27ToAsTcfhphh, i called toshiba tech support lol. they werent trained in it and gave me a number to call lol
15:16.22ToAsTcfh310-631-2200
15:16.23phhToAsTcfh: uh ? you ask them for kernel source ?
15:16.44ToAsTcfhno i ask them how to boot into recovery and bootloader
15:17.00phhok
15:17.03phhthanks :p
15:17.10ToAsTcfhafter that i was going to ask for kernel source :P
15:17.44ToAsTcfhhey u never know. i couldve gottan lucky
15:18.43ToAsTcfhits kinda bs its not in the manual or something
15:19.30Rajkoit also seems that the phone number my phone has remembered as being itself
15:19.35Rajkois the first sim card i put in
15:19.41Rajkonot the current number of sim card
15:19.55Rajkothis is both in WM and android
15:21.01ToAsTcfhphh: i shell... "reboot bootloader" should be enough. kinda flaky
15:21.09phhno
15:21.11phhit just powers off
15:21.17ToAsTcfhhmm
15:21.23phhwe're not THAT stupid :p
15:21.35ToAsTcfhno im saying it should
15:21.53phhlike reboot should reboo
15:21.53phht
15:22.00ToAsTcfhdid u try to use another reboot
15:22.11phhbwarf no
15:22.27ToAsTcfhwe had that issue on the evo where reboot was borked and we had to use an older one
15:23.11ToAsTcfhlike htc borked it so we couldnt do reboot recovery and bootloader
15:23.26ToAsTcfhin 2.1
15:23.30ToAsTcfhand 2.2
15:23.50phhhum, has someone a 720p H264/mp4 video ?
15:24.20ToAsTcfhno :/
15:24.25ToAsTcfhlol
15:24.29phhgoogle doesn't help me either
15:24.59ToAsTcfhi can make one with my phone
15:26.06phhI've juste realized that my 1080p test was CABAC and the doc says it can't do that
15:26.11phhand my 720p might have problems because of mkv
15:26.23phh(and I couldn't convert mkv to mp4 yet /o\)
15:27.59Rajkophh, download some from youtube
15:28.03Rajkousing youtube downloader hd
15:28.16phhthat's available in urpmi ?
15:28.26phhoh nvm. this time conversion from mkv to mp4 works.
15:28.33Rajkodont convert
15:28.34Rajkojust remux
15:28.42phhi said mkv/mp4
15:28.44phhso that's a remux
15:29.07phhI'd said mkv(H264/AAC) mp4(blabla) else.
15:29.39phhwell no, i'd said transcode actually
15:29.43ToAsTcfhhttp://geekfor.me/toastcfh/reboot <~ see if that changes changes anything, reboot wise
15:30.03phhi'm in the middle of a debian installation, i'd rather not reboot atm :D
15:30.45ToAsTcfhtrue
15:30.57ToAsTcfhwell when u get time ;)
15:31.01phhyes
15:33.07*** join/#htc-linux AstainW00t (~AstainHel@unaffiliated/astainhellbring)
15:33.53*** join/#htc-linux Taffern (~pelle@116.3.202.84.customer.cdi.no)
15:35.31*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
15:38.52Cotulla~seen Markinus
15:39.01aptmarkinus <~Miranda@212.255.25.167> was last seen on IRC in channel #htc-linux, 2h 8m 31s ago, saying: 'Cotulla: what do you think, it'S possible that we've a a1026?'.
15:43.04*** join/#htc-linux MumZrr (~xDDDDDD@lns-bzn-57-82-249-52-77.adsl.proxad.net)
15:44.16*** join/#htc-linux jeffgarret (~jeffgarre@user-12l2tmk.cable.mindspring.com)
15:45.53*** join/#htc-linux AstainHellbring (~AstainHel@unaffiliated/astainhellbring)
15:48.08*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
15:52.02*** part/#htc-linux Cotulla (~opera@nat004-252-205-109.tvoe.tv)
15:52.11phhToAsTcfh: any answer from toshiba ?
15:53.30phhah. that special number is opened only on busy days ?
15:53.54ToAsTcfhyeah
15:54.51ToAsTcfhit says monday through friday
15:54.54phhof course.
15:55.07ToAsTcfhill call back tomorrow
15:55.20ToAsTcfhu done installing debian>?
15:56.28ToAsTcfhcan u see the recovery and bootloader partitions?
15:56.40ToAsTcfhin android
15:58.45ToAsTcfhphh: ^^^ ?
15:59.01phhdebian is still running
15:59.06phhSD card seems awefully slow
15:59.11phhand no recovery nor bootloader partition
16:00.16phhok debian installed
16:00.54*** join/#htc-linux jonolo (~jonolo@87.75.138.222)
16:01.46*** join/#htc-linux kse (~virus@dslb-084-063-152-255.pools.arcor-ip.net)
16:03.59*** join/#htc-linux ali1234 (~ajb@robotfuzz.co.uk)
16:05.18*** join/#htc-linux WoZZeR__ (no@d14-69-99-229.try.wideopenwest.com)
16:05.34*** join/#htc-linux Ashar (deadly@unaffiliated/ashar)
16:07.42*** join/#htc-linux josh13x12 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
16:12.43*** join/#htc-linux flagada (58a1e24e@gateway/web/freenode/ip.88.161.226.78)
16:17.10ToAsTcfh\o/
16:17.42phh?
16:23.05ToAsTcfhdebian install finished is all
16:23.21phhah ok
16:26.20*** join/#htc-linux lenix- (~irc@lenix.de)
16:26.22*** join/#htc-linux Neo31 (~Neo31@unaffiliated/neo31)
16:28.00*** join/#htc-linux invisiblegod (invisibleg@bl11-115-141.dsl.telepac.pt)
16:29.42*** join/#htc-linux Akustik84 (~volodin_d@95-24-177-213.broadband.corbina.ru)
16:29.57*** join/#htc-linux goxboxlive (~jrs@195.80-202-137.nextgentel.com)
16:30.17*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
16:30.18uriahheepls
16:30.23uriahheepooops
16:30.26uriahheepheh
16:30.26phhPassword:
16:30.29gauner1986-:D
16:30.34uriahheepreflex
16:31.16*** join/#htc-linux programmer8922 (~Evan@67.219.166.182)
16:31.29uriahheepso my phone supposedly has alsa now.
16:31.43uriahheepWoZZeR_: i ended up just needing to remove one file from the initrd and then it fit
16:31.54uriahheepapparently init.android is in /system now so i could get rid of it
16:31.59uriahheepaccording to dzo
16:32.06WoZZeR_oh, cool
16:32.54*** join/#htc-linux josh13x12 (~jk@99-190-187-250.lightspeed.lsvlky.sbcglobal.net)
16:33.29*** join/#htc-linux Andreyxxl[HD2EU] (Andreyxxl@89.32.146.153)
16:38.00*** join/#htc-linux endrix (~endrix@ip-144.net-81-220-236.rev.numericable.fr)
16:44.18endrixHello guys !!!
16:44.50endrixI have a question a question about a kernel crash!
16:45.13endrixI am trying to port the linux kernel to TG01!
16:45.27*** join/#htc-linux slayerns (8bb3cf37@gateway/web/freenode/ip.139.179.207.55)
16:45.29phhcool
16:45.34slayernsis it confirmed fake
16:45.34slayernshttp://www.youtube.com/watch?v=IY-uRRCARJw
16:45.43slayerns?
16:46.07endrixI got this message !
16:46.18endrix[   12.182188] ARM9 has CRASHED
16:46.18endrix[   12.185471] smem: DIAG 'MOD LM                   00000
16:46.22uriahheepah nuts... now for some reason 3g isn't working... -_-
16:46.27phhendrix: have fun.
16:46.32slayernshttp://v.youku.com/v_show/id_XMTk5NjExMjYw.html
16:46.38phhslayerns: no clue
16:46.51slayernsseems interestng
16:47.04darkstonegauner1986-: ping
16:47.16gauner1986-darkstone: pong
16:47.19darkstone:D
16:47.30darkstonemind sharing a diff patch for your kernel?
16:47.31slayernsjobs gonna drive mad if its true
16:47.59darkstonei want to see if it'll work on this htc desire hd build
16:48.05phhendrix: ARM9 has crashed is the worst error EVER.
16:48.42endrixphh: yeah but this all i've got for the moment, after the device rebbots
16:48.45gauner1986-darkstone: just testing
16:48.46gauner1986-:)
16:48.57darkstoneD:
16:49.20darkstonei'll rephrase, if your patch will work with my changes in the gfx department
16:49.38gauner1986-and that were?
16:49.45gauner1986-i'll make a diff, mom
16:49.50darkstone:B
16:50.05darkstonei'll share a build with you soon
16:52.27MicroangOh my god what sado's who the fuck would buy this? http://pocketnow.com/tech-news/report-facebook-developing-own-phone
16:53.10*** join/#htc-linux ToAsTcfh (~toastcfh@29-37.200-68.tampabay.res.rr.com)
16:53.21slayernswasnt that proposed as ms phone
16:53.22tmztphones is dead
16:53.30tmztgmail.com is phone
16:53.33tmztfacebook.com is phone
16:53.38tmztphone is browser
16:53.41tmztphone is app
16:53.47gauner1986-darkstone: working fine on the new sense
16:55.11*** join/#htc-linux nineX_ (~nunya@75-132-13-29.dhcp.stls.mo.charter.com)
16:55.16darkstone:D
16:56.32MicroangI think thats a kin with a fake screen but its just to show that it'll prob go the way of the kin!
16:56.51Microanggauner1986-: what's working?
16:57.17DuperManwhen the kin died, they couldn't even informed it's next of kin. since it died. bleh
16:57.47phhToAsTcfh: sshed into debian from connectbot :D
16:59.00*** join/#htc-linux rrew (~rrew@93-137-31-242.adsl.net.t-com.hr)
16:59.05ToAsTcfh:)
17:00.25*** join/#htc-linux wassup (47be192e@gateway/web/freenode/ip.71.190.25.46)
17:00.49uriahheepphh: heh you should install openssh in your phone's debian install :P
17:01.01phhuriahheep: how do you think I sshed into debian ... ?
17:01.02uriahheepthat's what i do, cause i wanted to use ssh's tun/tap
17:01.11uriahheepyou said you used connectbot
17:01.17uriahheepi mean putting debian on the phone ;)
17:01.22phhI meant to
17:01.31uriahheepok
17:01.32phhI connect to the chrooted debian by ssh through connectbot
17:01.38uriahheepohhh
17:01.39uriahheeplol
17:01.50uriahheepso you connected to localhost using connectbot?
17:01.57phhyes
17:01.59uriahheepnice :P
17:02.08uriahheepi'm not running sshd on my phone, i don't need it
17:02.09phhif anyone knows an other free terminal or ssh app, say it.
17:02.11phhconnectbot sucks
17:02.18uriahheepwell i guess it would be useful
17:02.28uriahheepso that i could have a better shell than the adb one
17:02.33phh:p
17:02.36uriahheepbut i don't have usb ether support on this phone
17:02.46phhconnectbot doesn't understand alt gr/shift/alt/ctrl buttons on my keyboard -_-'
17:02.56uriahheepyuck :S
17:03.02uriahheepphh: how about not chrooting?
17:03.05gauner1986-darkstone: http://htcleo.noobhands.net/gauner1986/gauner1986.diff
17:03.12phhuriahheep: / as debian ?
17:03.16uriahheepindeed
17:03.18uriahheepusing unionfs
17:03.18phhwithout bootloader access nor recovery, i'll wait :p
17:03.24phhwhat ?
17:03.29phhohhh
17:03.34phhyou're crazy -_-'
17:03.37uriahheephttp://www.saurik.com/id/10
17:03.40uriahheepno way
17:03.42uriahheepworks grat
17:03.44uriahheepgreat*
17:03.50uriahheepdone it on this phone ;D
17:03.58phhanyway, i don't even have the kernel sources
17:04.13ElBartoMEslayerns: it's fake.
17:04.20phhElBartoME: :(
17:04.22slayernssure?
17:05.03ElBartoMEquite sure, the background moves when you slide. afaik that is not the case on ios
17:05.15darkstonegauner1986-: thanks! :D
17:05.21uriahheepphh: you don't? but... you're the project owner for the kernel source... no?!
17:05.35phhuriahheep: i'm speaking of the AC100 -_-'
17:06.03Rajkooh god the gain
17:06.12slayernsgauner that is for what?
17:06.28slayernsnice fake :)
17:06.35uriahheepoic
17:06.45uriahheepphh: android on a netbook?
17:06.53phhuriahheep: yeah.
17:07.05phhuriahheep: *and* totally buggy
17:07.08uriahheeplol
17:07.10uriahheepexcellent.
17:07.26uriahheepis it x86?
17:07.34phhno, arm, cortex A9
17:07.43phhtheorically it can do 8days in sleep
17:07.49phhbut it wakes up in less than 10minutes.
17:08.09uriahheepnice
17:08.12phhtheorically it can read 1080p or 720P CABAC hardware, but it's set to software playback
17:08.25uriahheeplol
17:08.31phhtheorically it has an awesome 3D chipset, but there is no game available
17:08.32uriahheepwtf
17:08.45phh(ok, raging thunder 2 lite runs. but not raging thunder 2.)
17:08.48Rajkotheoretically it can move mountains, but that has been disabled via resitor
17:08.53uriahheepis this an official android port?
17:09.02uriahheepor a hobbyist one?
17:09.03phhuriahheep: lol ? that's no port
17:09.05phhthat's the official OS
17:09.07uriahheeplol
17:09.09uriahheepfak
17:09.17uriahheepridiculous
17:09.24uriahheepand they haven't opensourced it yet
17:09.45phhi've bigger problems than building the kernel ATM -_-'
17:10.01phhand I think we can run linux from android
17:10.09phhjust kill all the services, and start linux :p
17:11.24phhtheorically it has all needed keys to be used as a laptop, but no app is capable of using ctrl/alt :p
17:12.38uriahheepwell you could easily replace the init script with something else
17:12.42uriahheepthat would bypass android
17:13.34uriahheepbrb
17:14.22*** join/#htc-linux BHSPitMonkey (~stephen@unaffiliated/bhspitmonkey)
17:15.21*** join/#htc-linux Lachezar (~lachezar@83.228.10.162)
17:15.39LachezarHello people.
17:16.23LachezarA couple of weeks ago I was directed here for help with attempting to run android on a Korean EDA.
17:22.42*** join/#htc-linux Rajko (~Rajko@cable-188-2-156-45.dynamic.sbb.rs)
17:29.58*** join/#htc-linux mes (~mes@sentry.lazo.ca)
17:30.56*** join/#htc-linux HoraceX (411b288c@gateway/web/freenode/ip.65.27.40.140)
17:33.51*** join/#htc-linux Rajko (~Rajko@cable-188-2-156-45.dynamic.sbb.rs)
17:36.32*** join/#htc-linux jonpry (~jonpry@63.245.31.4)
17:43.53jonprywozzer_: my power got taken out last night by some kind of explosion
17:44.03WoZZeR_jonpry: whoa, really?
17:44.20jonprysounded like a bomb. i figure a transformer blew
17:44.41jonprythen power dropped to like 25 volts
17:45.30WoZZeR_transformer makes sense
17:45.33WoZZeR_overloaded or something?
17:46.03jonpryi can't see why. air conditioning would be mostly off at 3am
17:46.19jonprymaybe something fell on the line
17:53.48*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
17:54.01uriahheepWoZZeR_: do you know which initscript calls init.android?
17:54.11WoZZeR_init
17:54.21uriahheephmm... init is a binary though, right?
17:54.25WoZZeR_bi'
17:54.26WoZZeR_no
17:54.29WoZZeR_init is a sh script
17:56.17uriahheepok
17:56.29uriahheepif [ -e /system/init ]; then exec /system/init
17:56.29uriahheepelse exec /init.android
17:56.29uriahheepfi
17:56.32*** join/#htc-linux kiozen (~kiozen@rgnb-5d879583.pool.mediaWays.net)
17:56.57uriahheepWoZZeR_: should both of these files be identical?
18:02.47*** join/#htc-linux stunt1n (~fuck@c-76-114-36-123.hsd1.ca.comcast.net)
18:05.39*** join/#htc-linux fcna (5d1c57c5@gateway/web/freenode/ip.93.28.87.197)
18:05.51*** join/#htc-linux liamsmithuk (~liam@host86-152-231-220.range86-152.btcentralplus.com)
18:15.28*** join/#htc-linux jonolo (~jonolo@87.75.138.222)
18:15.52*** join/#htc-linux surgeyz (~surge@pool-98-118-157-221.bflony.fios.verizon.net)
18:20.41*** join/#htc-linux SVic (~SVic@5f4495b0.dynamic.mv.ru)
18:21.37*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
18:21.40uriahheepugh..
18:22.04uriahheepjonpry: is it possible that the alsa driver is interfering with the data connection?
18:22.17*** join/#htc-linux Eruz (~Eruz@89-24-7-85.i4g.tmcz.cz)
18:22.18*** join/#htc-linux jak (~IceChat7@pool-0624.adsl.interware.hu)
18:22.32Eruzhowdy folks
18:23.55gauner1986-darkstone: how is it doing?
18:26.00*** join/#htc-linux ToAsTcfh (~toastcfh@29-37.200-68.tampabay.res.rr.com)
18:31.03*** join/#htc-linux iDavid (c5006a74@gateway/web/freenode/ip.197.0.106.116)
18:31.34ToAsTcfhphh im looking good for .35 :)
18:31.40phh:)
18:32.00ToAsTcfhmddi is a bit borked but panel fires up
18:32.35ToAsTcfh.34 is 100% though
18:36.57*** join/#htc-linux joplayer (~joplayer@vaf26-6-78-248-0-5.fbx.proxad.net)
18:38.41*** join/#htc-linux asdf_ (4f6786a4@gateway/web/freenode/ip.79.103.134.164)
18:39.46*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
18:42.58noellenchrisElBartoME: any progress w/bt and evo kernel...I'm getting sod after full charge on all evo kernels now...hehe.  oh well ran 6 days with none...that's what I get...
18:45.18*** join/#htc-linux L_miller (~IceChat7@68-115-50-78.dhcp.eucl.wi.charter.com)
18:47.20WoZZeR_uriahheep: should both of what file be identical?
18:49.46uriahheepWoZZeR_: that code i pasted
18:49.52uriahheepWoZZeR_: init and init.android
18:50.04WoZZeR_that's right
18:50.15uriahheepit should be?
18:50.20uriahheepthey*
18:50.23WoZZeR_yeah
18:50.24uriahheepk
18:50.29uriahheepthey aren't
18:50.34WoZZeR_wait
18:50.37WoZZeR_no, different files
18:50.40uriahheepok
18:50.47WoZZeR_if it sees system/init, it uses that
18:50.52WoZZeR_if it's not there, it uses init.android
18:50.54uriahheepyeah...
18:51.31uriahheepi'm trying to find the reason why my data isn't working
18:51.39*** join/#htc-linux mes (~mes@S0106000c417884fe.cc.shawcable.net)
18:56.14*** join/#htc-linux Taffern (~pelle@116.3.202.84.customer.cdi.no)
18:58.20*** join/#htc-linux hyperfire21 (~nun@c-98-223-15-190.hsd1.il.comcast.net)
19:00.13darkstone<PROTECTED>
19:00.14darkstonegood :)
19:00.23darkstonebattery seems to be good in standby now
19:00.23gauner1986-fine
19:00.24gauner1986-:P
19:00.30darkstone10mA current
19:00.41darkstonearound 170mA idling at hom screen
19:01.03mastermerlin10mA is to less .. make it more :)
19:01.04darkstoneand up to 400mA on different activites
19:01.09gauner1986-i'm working at a good watermark removal currently
19:01.17gauner1986-that null at the background sucks
19:01.19darkstoneive already removed the watermark
19:01.23darkstonecompletely
19:01.28darkstonePM
19:01.33uriahheepWoZZeR_: if i hadn't recompressed the initrd properly, would it still boot into android?
19:02.02WoZZeR_I don't think so
19:02.56*** join/#htc-linux Cotulla (~opera@nat004-252-205-109.tvoe.tv)
19:03.02gauner1986-re cotulla
19:03.03gauner1986-:)
19:03.04Cotulla~seen gauner1986
19:03.11aptgauner1986 <~gauner198@p508C6DA2.dip.t-dialin.net> was last seen on IRC in channel #htc-linux, 4h 14m 49s ago, saying: 'lol'.
19:03.18*** join/#htc-linux theredundant (ohnoes@CPE-58-173-12-179.ecxf2.cht.bigpond.net.au)
19:03.42gauner1986-i'm here
19:03.42gauner1986-:P
19:03.44Cotullahaha
19:03.56Cotullauploading vid with tetris for u :P
19:04.00gauner1986-cool
19:04.01gauner1986-:D
19:04.05gauner1986-tetris
19:04.05Cotulla:D
19:04.06gauner1986-yay
19:04.24Cotullaanything new?
19:05.31Cotullahttp://cotulla.pp.ru/leo/Android/
19:05.33Cotullaok it there
19:05.35Cotulla:D
19:05.38gauner1986-hm.. not so far
19:05.47gauner1986-except we're playing with desire hd builds
19:05.49gauner1986-:P
19:05.57uriahheepWoZZeR_: would you happen to have an idea of where i could look to see what's wrong with the modem/data connection?
19:06.15WoZZeR_no idea
19:06.25gauner1986-ok downloading
19:06.30uriahheephmm... how about anyone else in this channel?
19:07.00joplayer<PROTECTED>
19:07.16Cotullahard to play
19:07.22Cotullabuttons at bottom
19:07.25gauner1986-lol.. that rules
19:07.37Cotullaand they are "not-tetris-friendly"
19:07.44gauner1986-you say
19:07.49gauner1986-they weren ot designed for tetris?
19:08.10*** join/#htc-linux fakker (~noobhands@cpc4-hitc6-2-0-cust82.9-2.cable.virginmedia.com)
19:08.15gauner1986-hey fakker
19:08.22fakker:D
19:08.28gauner1986-i'm just watching cotulla playing tetris
19:08.29gauner1986-:P
19:08.36*** join/#htc-linux jonolo (~jonolo@host-87-75-138-222.dslgb.com)
19:08.37fakkertetrinet?
19:08.39uriahheepWoZZeR_: what tool did you use to see what was in the nbh files i sent you? i wouldn't mind taking a look at dzo's nbh's initrd
19:08.42RajkoTETRIS IN THE BOOTLOADER
19:08.44RajkoFUCK YES'
19:08.46gauner1986-yeah
19:08.49WoZZeR_nbImage tool
19:08.52WoZZeR_and osnb
19:08.52gauner1986-that's what we wanted to see
19:08.54WoZZeR_osnbtool*
19:08.56uriahheepok
19:09.02uriahheepfrom your tinboot
19:09.07fakkernice
19:09.09WoZZeR_one is in it
19:09.14fakkerso whats the deal with hd2 now?
19:09.14WoZZeR_you may have to find nbimage tool
19:09.19fakkerive been busy lately ;/
19:09.21uriahheepok
19:09.33darkstonehaha
19:09.35darkstonethats amazing
19:09.48darkstone<3 tetris
19:10.09darkstonethough Cotulla is wrong, tetris can be beat :D
19:10.13gauner1986-nice way of restarting the ui darkstone
19:10.14gauner1986-:D
19:10.15Cotullahow? O_o
19:10.17fakkerТе́трис
19:10.25darkstonegauner1986-: xD
19:10.27Cotullalol almost right fakker
19:10.31fakker:(
19:10.36darkstonehttp://www.youtube.com/watch?v=kN8QOp8VsdI
19:10.36Cotullasecond char is bad
19:10.44fakkerwhat should it be?
19:10.53Cotullasimilar but
19:11.04Cotullaå? -> å
19:11.07CotullaÒåòðèñ
19:11.21fakker:D
19:11.37fakkeri cant even speak russian, only like the odd word
19:11.38Cotullaso users will have choose WM, Android or Tetris :D
19:11.43RajkoТетрис in my language
19:11.54gauner1986-nice
19:11.56fakkerlocation Rajko?
19:11.58darkstonehttp://www.youtube.com/watch?v=keeSEJG4XzU&feature=related
19:11.59darkstone:D
19:12.00Rajkoserbia
19:12.05darkstone32mins of tetris
19:12.05darkstonexD
19:12.18Cotullaow... I need music also
19:12.20fakkercool
19:12.23fakkerCotulla, i have the music
19:12.57Cotullasimple midi synthesizer and output to qdsp6
19:13.00fakkeroh
19:13.06fakkerhttp://www.youtube.com/watch?v=VQ0PXAW6zY8 blah
19:13.12gauner1986-:D
19:13.18Rajkofuck that
19:13.20gauner1986-that will make the bootloader big
19:13.20gauner1986-:P
19:13.21*** join/#htc-linux cart (532caaeb@gateway/web/freenode/ip.83.44.170.235)
19:13.22fakkeryeah
19:13.26Rajkothe tetris tune they had in pure pwnage is the best
19:13.33fakkerhaha pure pwnage
19:13.36gauner1986-lol
19:13.37gauner1986-yeah
19:13.43Rajkohttp://www.youtube.com/watch?v=UPaAL79vXl4
19:13.47gauner1986-the man that's jogging around as tetris brick
19:14.07CotullaWTF 32 mins of tetris!!!
19:15.14darkstone:D
19:16.32darkstonehttp://www.youtube.com/watch?v=4u0BY7msnEg&NR=1
19:16.32darkstonerofl
19:16.47CotullaWTF???
19:17.19Cotullahm good idea :D
19:17.23Cotullabut okay, gotta sleep now. bb.
19:17.25*** part/#htc-linux Cotulla (~opera@nat004-252-205-109.tvoe.tv)
19:17.26darkstonexD
19:19.22*** join/#htc-linux johnb81 (~johnb@78.169.185.195)
19:21.04*** join/#htc-linux Cass-hd2 (~Cass@87-194-153-242.bethere.co.uk)
19:25.17*** join/#htc-linux BHSPitMonkey (~stephen@unaffiliated/bhspitmonkey)
19:25.26iDavidNothing special for the end on Sunday ?
19:25.30iDavidof*
19:26.00*** join/#htc-linux kvaster_ (~kvaster@vpn-e0.bas-net.by)
19:32.16asdf_hey darkstone, did u manage to solve the camera problem on the desire HD rom?
19:34.04darkstonenope
19:35.24asdf_no worries, keep it up mate, thanx for everything so far
19:40.23*** join/#htc-linux Captnoord (~Captnoord@e98118.upc-e.chello.nl)
19:44.18*** join/#htc-linux Correlator (~Correlato@89-138-13-214.bb.netvision.net.il)
19:45.00*** join/#htc-linux Ham3r (~chatzilla@178.56.159.19)
19:45.47*** join/#htc-linux Ham3r (~chatzilla@178.56.159.19)
19:46.42*** join/#htc-linux Ham3r (~chatzilla@178.56.159.19)
19:50.21*** join/#htc-linux uriahheep (~uriahheep@206-248-135-44.dsl.teksavvy.com)
19:50.53uriahheepWoZZeR_: reverting to previous (first) version of initrd.lzma solved the problem
19:52.13*** join/#htc-linux gauner1986 (~gauner198@p508C6DA2.dip.t-dialin.net)
19:52.24Microangdarkstone: hoq'a the camera situation?
19:52.33Microanghow's
19:55.16darkstoneMicroang: unlocked 8mp mode
19:55.20darkstone720p recording working
19:55.25*** join/#htc-linux lenix (~irc@lenix.de)
19:55.34darkstonenow will that shut you up? :)
19:55.52noellenchrislol
19:56.05*** join/#htc-linux Markinus (~Markinus@212.255.25.167)
19:56.16noellenchrisyeahh! way to go darkstone...hehe
19:56.29darkstonei was being sarcastic lol
19:56.35darkstonebut yeah :p
19:57.06noellenchrisprobably feels good though...maybe next time you won't be kidding.....fingers crossed...
19:57.17Microang:P
19:57.33MicroangI wouldn't believe that for 1 sec till I saw proof! :D
19:57.47MicroangNo but seriously have u had any luck getting the camera working?
19:58.27darkstoneno
19:58.42darkstonelook, stop asking now
19:58.49noellenchrisur funny Microang...  but every dev needs a monkey on his back....lol
19:58.58darkstonelike i said in PM, if there something new or working then i'll let people know
19:59.02RajkoHOW DO I 720P
19:59.05*** join/#htc-linux Eruz (~Eruz@89-24-7-85.i4g.tmcz.cz)
19:59.11darkstoneyou asking me or someone else constantly is just annoying
19:59.19darkstoneand im tempted to add you to my ignore list :D
19:59.33Rajkoatleast he isnt MN
19:59.53*** join/#htc-linux jak (~IceChat7@apn-94-44-54-49.vodafone.hu)
20:00.59Microangsorry darkstone
20:01.12MicroangJust it's the best update to htc sense so far! :D
20:01.33MicroangI never bugged anyone that much before
20:02.24gauner1986720p
20:02.26gauner1986yay
20:03.00*** join/#htc-linux Atmosphere (~Adium@41-133-187-28.dsl.mweb.co.za)
20:03.45*** join/#htc-linux markkl (~markcoolk@52499AF3.cm-4-2c.dynamic.ziggo.nl)
20:04.33darkstone2160p camera :E
20:04.38Microanggauner1986: lol ur funny :P
20:04.44Microangbullshit
20:06.11noellenchrisCass-hd2: u around?
20:06.33Cass-hd2y
20:07.04*** join/#htc-linux MicroAnger (8bb3cf37@gateway/web/freenode/ip.139.179.207.55)
20:07.14MicroAngermicroang : stop shitting
20:07.15MicroAngerpls
20:07.51Microangdon't take the piss outta my name!
20:08.19iDavidCan you guys move to #htc-linux-chat and sort that problem out
20:08.29noellenchrisCass u still using cm6....is it your build ?
20:08.43Cass-hd2yes and yes
20:08.48noellenchrisI'm moving on from HTC Clay's I think
20:08.59noellenchrisu run nightlies?
20:09.06Cass-hd2no
20:09.27Atmospherei'm having issues with the rhodium… is this just a crap phone?
20:09.48noellenchrisI was gonna grab Pongsters build, but don't remember the files to add for ppp.  I guess I'll try bangsters..
20:10.02*** join/#htc-linux thejeos (~androirc@89.129.20.198)
20:10.21Cass-hd2id give y mine but not near pc
20:11.05noellenchrisnp, but thanks
20:11.47noellenchrisI'm getting killed with sod death after my marathon run of 6 days...don't know what happened...now all EVO kernels don't like my build
20:12.09Cass-hd2weird
20:13.34noellenchrisyes..:(
20:14.12*** part/#htc-linux Atmosphere (~Adium@41-133-187-28.dsl.mweb.co.za)
20:14.13noellenchrisother sd card almost ready....copying over needed items..  now just to add a new build and go for it.
20:14.34noellenchrissense lovers trying to talk me into running mattc's
20:14.46noellenchrisok...back to chat chan
20:16.33*** join/#htc-linux AndroUser (~androirc@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:16.40darkstonepersist.sys.shutdown.mode = hibernate
20:16.41darkstoneso
20:16.54darkstoneseems like the new htc desires DO use hibernate :p
20:20.18camrophh: still here ?
20:20.25noellenchrisneat idea...did u try it yet....hehe
20:21.00*** join/#htc-linux roman26 (roman26@cpc3-belc1-0-0-cust237.2-1.cable.virginmedia.com)
20:21.02noellenchrisprobably need mem map area for hibernate....
20:21.32noellenchrisstick an flash drive in the bottom of HD2 with a gig for hibernate....
20:22.10darkstonewell
20:22.18darkstonetheres not really a way for us to try it
20:22.18darkstone:D
20:23.02darkstoneok ppp working
20:23.04darkstoneyay
20:23.22noellenchrisgood to see..
20:23.27darkstonehm
20:23.44darkstoneok, so the only thing left is camera and um, the reader app
20:23.52darkstoneoh ringtones seems fudged too
20:23.53darkstone:/
20:24.02*** join/#htc-linux Markinus (~Miranda@212.255.25.167)
20:24.33noellenchrisdan hasn't been around much...I bet he could be of some help w/camera on HD......
20:24.35noellenchrisI think he is in love
20:25.05darkstonehehe
20:27.09noellenchrisdarkstone: question....if I want to add ppp to build w/out ppp, can I just copy over the etc/ppp folder and other ppp files in root to the new build folders..
20:27.27noellenchrissounds confusing,,,hope u understand me....hehe
20:27.32darkstoneum
20:27.52iDavidhttp://forum.xda-developers.com/showthread.php?p=8218435
20:27.52darkstoneyou would need to add system/etc/ppp folder from a ppp build to the non-ppp build
20:28.00iDavidDamn it check that thread out
20:28.11noellenchrisk...thanks
20:28.21darkstoneand /system/lib/htchtc_ril_wrapper.so from the ppp build and put that in the non-ppp build
20:28.41darkstonechmod -R 777 /system/etc/ppp
20:29.15darkstonethen edit init.rc to link to libhtc_ril_wrapper.so and not libhtc_ril.so
20:29.20darkstoneunder ril-daemon section
20:29.32darkstoneshould be good after that
20:30.14gauner1986hey markinus
20:30.39AndroUserhello
20:31.03Markinushi
20:33.59*** join/#htc-linux Diglake (~diglake@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:36.58noellenchristhx darkstone....I'm sure this won't work...rookie luck...hehe
20:37.12*** join/#htc-linux hyperfire21 (~nun@c-98-223-15-190.hsd1.il.comcast.net)
20:37.24darkstone:p
20:37.32*** join/#htc-linux Diglake (~diglake@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:37.36darkstonekeep experimenting and you will learn
20:37.46darkstonethats how im doing what im doing now i guess
20:38.10roman26tries and mistakes
20:38.14*** part/#htc-linux Diglake (~diglake@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:38.41*** part/#htc-linux AndroUser (~androirc@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:39.12*** part/#htc-linux jeffgarret (~jeffgarre@user-12l2tmk.cable.mindspring.com)
20:40.15darkstonehm
20:40.16darkstonenvm
20:40.18*** join/#htc-linux Diglake (~diglake@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:40.24darkstoneppp doesnt appear to work
20:41.53noellenchrisnow I'm worried...hehe..as I follow ur directions...lol
20:42.17darkstonenah those instructions should be ok
20:42.21darkstonefor normal builds
20:42.41darkstonebah
20:42.50darkstoneim just going to upload this
20:42.56darkstoneother people can mess with it
20:43.30noellenchrismicroang's tongue is hanging out.....right now....
20:43.33gauner1986ill do
20:43.35gauner1986:)
20:43.37darkstone:p
20:43.48darkstonei wont post it on forums, yet
20:43.51*** part/#htc-linux Diglake (~diglake@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:44.20noellenchrismicroang: fix that camera issue when darkstone uploads.....he wants eta asap
20:44.44*** join/#htc-linux Diglake (~diglake@GMMDCCXLVII.gprs.sl-laajakaista.fi)
20:45.49Microangnah my tongue ain't sticking out! I'm working. Seems hard though that camera :( oh well, back to work!
20:47.49jonpryToAsTcfh: what phone are you working on?
20:49.03*** join/#htc-linux iKitsune (47cfd669@gateway/web/freenode/ip.71.207.214.105)
20:49.29iKitsuneDoes anyone have any experience with the HTC Neon?
20:50.05iKitsuneI'm determined to get Android working on this damn thing, and I'm so close it's annoying me.
20:55.21darkstoneuploading
20:55.30*** join/#htc-linux surgeyz (~surge@pool-98-118-157-221.bflony.fios.verizon.net)
20:56.32*** join/#htc-linux jonolo (~jonolo@87.75.138.222)
20:57.28iKitsuneI can't find a combination of radio + kernel + RIL that consistently works
20:57.29noellenchriseverything good? ppp = sometimes  & camera etc. nogo
20:57.43ToAsTcfhjonpry, evo
20:58.09ToAsTcfh\o/ panel turned on in .35!!!
20:58.19darkstonepp not working
20:58.23darkstonecamera not working
20:58.28darkstonewifi hotspot not working
20:58.35darkstoneereader not working
20:58.39darkstoneringtones not working
20:58.46darkstoneeverything else is a-ok
20:59.18gauner1986wifi hotspot works on mine
20:59.24noellenchristhx,,, take a break....have fun watching everyone figure it out....lol
20:59.35darkstonegauner1986: it works
20:59.41darkstonebut no actual data works
20:59.46darkstonesince ppp doesnt work
20:59.47darkstone:D
20:59.48gauner1986ah ok
20:59.50gauner1986:P
21:00.00*** join/#htc-linux DuperDroid (~AndChat@p11811112.orange.net.il)
21:00.01darkstoneppp doesnt show in busybox ifconfig either
21:00.02darkstoneodd
21:01.01iKitsuneShould I try targeting an older build of Android (Donut vs Eclair or Froyo) or just give up on the Neon?
21:05.13*** join/#htc-linux Lewis_ (47de39f0@gateway/web/freenode/ip.71.222.57.240)
21:06.15Lewis_Hi, i just installed the new V2.2 on my touch pro 2 and i dont seem to get service
21:12.16*** join/#htc-linux arrrghhh_ (~arrrghhh@208.89.180.228)
21:13.02*** join/#htc-linux arrrghhh (~arrrghhh@c-71-237-40-111.hsd1.co.comcast.net)
21:13.39*** join/#htc-linux slayerns (8bb3cf37@gateway/web/freenode/ip.139.179.207.55)
21:13.55gauner1986Markinus: any news?
21:14.00slayernsdarkstone: are you seriously uploading the build or not? if not, i am going to sleep :)
21:14.33Markinusgauner1986: hmm, no, I think about what I could do :)
21:14.53gauner1986what about that audio enhancer thing?
21:15.01slayernsare you done with microp?
21:15.04gauner1986Markinus: fix compass calibration
21:15.12Markinusgauner1986: no, we haven't it
21:15.22gauner1986hm
21:15.24gauner1986pity
21:15.30gauner1986but compass needs a fix
21:15.32gauner1986and lightsensor
21:15.32gauner1986:P
21:15.49Markinusgauner1986: compass, yes, take a  look
21:16.00slayernshow about i2c
21:16.35*** join/#htc-linux dusko_m (~zsirc@93-87-198-163.dynamic.isp.telekom.rs)
21:17.01gauner1986markinus: cotulla said he couldnt find calibration data in nand.. so we probably would have to do it by offset fix..
21:17.28slayernsthe compass is calibrated by app afaik
21:17.32slayernsby drawing 8
21:17.32Rajkomaybe just try resetting its calubration to 0 ?
21:17.33slayerns?
21:17.36gauner1986no
21:17.48Rajkosince you can set offset and such by i2c
21:17.52Rajkowhy not just try setting it to 0
21:17.57Rajkomaybe WM has set it to some weird value
21:18.04gauner1986it is mounted wrong by 45 ° in the phone itself
21:18.15*** join/#htc-linux fred2 (~yaaic@77.19.179.204.tmi.telenormobil.no)
21:18.15Rajkoyou mean 90
21:18.21gauner1986ah yeah
21:18.22gauner198690
21:18.30Rajkojust find an X offset that works then, by i2c
21:18.41Rajkooffsetting it by 90 doesnt really work good
21:19.13slayernscommits suicide
21:23.40gauner1986darkstone: upload eta? :)
21:23.56gauner1986rajko: by i2c?
21:24.09Rajkoyeah the chip has i2c commands to set offsets
21:24.15gauner1986ah
21:24.22Rajkoand gain too, but that shouldnt be needed, as it reads that off its internal eeprom
21:27.49*** join/#htc-linux dusko_m (~dusko_m@93-87-198-163.dynamic.isp.telekom.rs)
21:31.55*** join/#htc-linux akoma1s (quasselcor@unaffiliated/akoma1s)
21:34.49darkstonehttp://www.multiupload.com/1GEN8PQPMU
21:34.52darkstonedone
21:39.41*** join/#htc-linux ImHos (pIRCuser35@93.84.126.51)
21:40.21gauner1986dling
21:40.25LeTamaMarkinus, you could take a look at audio maybe ?
21:40.34gauner1986ah hi letama
21:40.34gauner1986:)
21:40.40LeTamaI'm a bit out of idea there
21:40.48LeTamahey gauner1986
21:40.49gauner1986true
21:40.51gauner1986audio issues
21:40.54gauner1986they suck
21:41.13noellenchrisLeTama: hello, yes audio is loud and ok, mic is too sensitive
21:41.48MarkinusLeTama: hmm, yes, you're right
21:42.02gauner1986markinus: still no idea about liblights?
21:42.03LeTamathere is also issues with headsets
21:42.19gauner1986hm
21:42.22Markinusgauner1986: I looked only to the kernel side . .
21:42.23gauner1986desire hd build is fine so far
21:42.26gauner1986no audio lags
21:42.36gauner1986strange
21:42.55LeTamaI looked at headset, it's a bit weird
21:42.55gauner1986maybe because i dont have setcpu on it yet
21:43.43LeTamait works fine if headset is plugged at boot
21:43.51MarkinusLeTama: headset is strange, I didn't know why the mic gpio isn't comming
21:43.57LeTamait doesn't if not, mic not detected
21:44.27MarkinusLeTama: yes, no GPIO no mic
21:44.32LeTamayes
21:44.47LeTamabut if plugged before booting, plugging/unplugging works fine
21:44.56Markinusyes, here too
21:45.02*** join/#htc-linux DiaMonk (50e21e51@gateway/web/freenode/ip.80.226.30.81)
21:45.58LeTamacan't see why comparing with previous kernel that works fine
21:46.23MarkinusLeTama: it works in the old one? hmm
21:46.27LeTamayes
21:46.52LeTamathere is also problems with buttons, but these one are easy
21:47.27LeTamain get_remote_adc, microp_i2c_write should be microp_i2c_read
21:48.00LeTamaand button logic has to be changed for key up
21:48.47*** join/#htc-linux roman26 (roman26@cpc3-belc1-0-0-cust237.2-1.cable.virginmedia.com)
21:49.21MarkinusLeTama: ahh, yes, I overseen it, ups :)
21:49.32*** join/#htc-linux DuperDroid (~AndChat@p11811112.orange.net.il)
21:49.45gauner1986LeTama: whats up with buttons?
21:50.04LeTamaheadset button doesn't work as it is
21:50.08gauner1986ah
21:50.14gauner1986ok i dont use that headset
21:50.15gauner1986^^
21:50.20Markinusyeah, my failer, copy/paste
21:51.56*** join/#htc-linux [acl] (~abel@cpe-69-203-141-229.si.res.rr.com)
21:55.56[acl]who der
21:59.12arrrghhhyour mother
21:59.23gauner1986mine isn't
21:59.33arrrghhheh, probably for the better.
21:59.48arrrghhhwassup [acl]
22:00.22[acl]arrrghhh: sup ..
22:00.25gauner1986hm
22:00.30gauner1986pppd doesnt work in that build
22:00.59cass-gonejust fix it already :P
22:01.08gauner1986it yields no ppp support for ppp
22:01.09gauner1986even as root
22:01.15gauner1986permissions are all set
22:01.50gauner1986cass-gone: then help me
22:01.51gauner1986:P
22:02.03cass-gonewhats pppd's exit status from logcat ?
22:02.12cass-goneim still d/ling the build
22:02.16[acl]WoZZeR_: any good news?
22:02.22[acl]jonpry: sup dood
22:02.39WoZZeR_NAND is pissing me off, that's all the news I have
22:03.01WoZZeR_it may bea yaffs thing
22:03.14jonpryhi acl, wozzer
22:03.22WoZZeR_taking a small break from figure it out, it gave me a headache
22:03.23WoZZeR_lol
22:03.23[acl]WoZZeR_: dang.. that sucks..
22:03.31gauner1986hm
22:03.34[acl]jonpry: sup man.. did u get the party started ?
22:03.41gauner1986i don't see the wrapper lib output in log
22:04.27jonpry[acl]. no man. i tried to party on .32 with no luck either
22:04.47arrrghhhWoZZeR_, excuse my ignorance, but are you trying to get the full NAND working with Android, or are you still hacking at the nbh/sd card combo?
22:04.49jonpryi have a new plan though
22:05.03WoZZeR_I'm attempting to get everything on nand
22:05.06jonprywozzer: go loopback yet?
22:05.31[acl]jonpry: party .32 from CA didnt work? dang that cancels out my idea.. what about working off a htc kernel
22:05.49WoZZeR_jonpry: no, does that have to be done when copying the files from sd to nand?
22:05.55gauner1986D/RILW    (  264): PL: hackSetupData: system(/system/bin/pppd returned 1024
22:05.55[acl]but htc doesnt have any 7k .32 i think :-(
22:05.59gauner1986@cass-gone
22:06.06Casschange group to shell
22:06.12Casson pppd
22:06.28jonpry[acl]. vogue is a 7k .32
22:06.56jonpry[acl]. i'm pretty sure it is a matter of not knowing what i am doing :p go figure
22:07.07gauner1986-rwxr-xr-x shell    shell      151760 2010-09-10 14:53 pppd
22:07.15Cassroot/shell
22:07.20arrrghhhWoZZeR_, sick... can't wait to test!
22:07.22jonprynew plan is to try a .27 kernel. i'm pretty sure it won't work either
22:07.28gauner1986still the same
22:07.42jonprywozzer: yeah you've got to make the loopback before copying
22:07.44Casshmm always the issue for me when i see 1024
22:07.53Cass13 mins then i can play
22:08.18WoZZeR_jonpry: should permissions be fine after copying the files over? so I cna just yaffs from then on. Just loopback on install?
22:08.22[acl]jonpry: .27? hmm so ur just trying to find out how huh. vanillay .27?
22:08.53jonpryvanilla .27
22:09.21jonprywozzer: no install to loopback on yaffs. then run from loopback on yaffs
22:09.21gauner1986doesnt change anything
22:10.12Cassall the stuff in ppp folder ?
22:10.18Cassoptions.smd1 ?
22:10.32[acl]jonpry: ahh ic.. im still trying to understand camros battery meter code.. But i just realized we have some rpc calls available to us. Just a pain in the ass to figure out what they do
22:11.03jonpry<PROTECTED>
22:11.17gauner1986-rwxrwxrwx system   system          0 2010-08-29 08:03 ppp0.pid
22:11.17gauner1986-rwxrwxrwx system   system         11 2010-09-20 00:05 options.smd1
22:11.17gauner1986-rwxrwxrwx system   system         72 2010-08-22 04:17 ip-up
22:11.17gauner1986-rwxrwxrwx system   system          0 2010-09-20 00:05 options.smd
22:11.17gauner1986-rwxrwxrwx system   system         17 2010-09-20 00:05 chap-secrets
22:11.17gauner1986-rwxrwxrwx system   system         17 2010-09-20 00:05 pap-secrets
22:11.28jonpry[acl]: i'd like to see this camro code.
22:12.11[acl]im sending it over now..
22:12.26gauner1986Cass: what does 1024 mean?
22:12.31Cassdidnt work :)
22:12.37Cass0 is what you need
22:13.01gauner1986ok, i guess the wrapper lib has to be changed accordingly
22:13.04WoZZeR_jonolo: but after it's done installing, is yaffs fine from then on?
22:13.07gauner1986currently it checks for <0
22:13.16WoZZeR_jonpry: *
22:13.26Cassgauner1986, works in other builds
22:13.40Cassgauner1986, ill have a play in a bit .. off to watch the rest of a film
22:13.43Cassbbiab
22:13.47gauner1986:)
22:13.53jonprywozzer: the only thing on yaffs will be one big ass file
22:14.25[acl]jonpry: sent..
22:14.28WoZZeR_ok
22:15.23jonpryso android won't be booting with mount /mtd? /system
22:15.39jonpryinstead mount /nand/system.img /system
22:16.07WoZZeR_so keep the 3 partitions?
22:16.19jonprydon't need to
22:16.51WoZZeR_ok, I'll try that in a bit
22:17.13*** join/#htc-linux arrrghhh (~arrrghhh@c-71-237-40-111.hsd1.co.comcast.net)
22:18.51gauner1986cass: fixed by replacing pppd
22:18.51gauner1986:D
22:20.09MicroangLtTama: To be honest on mattc 1.7 with gauner1986's kernel I get headset problems too, I always use normal headphones but sometimes it thinks they're with mic which is weird. :)
22:21.00MicroangLetama
22:21.07darkstoneoh crap
22:21.10darkstonei forgot to replace pppd
22:21.13Microanggauner1986: :D
22:21.16gauner1986darkstone: lol
22:21.18darkstoneslaps self forehead
22:21.22darkstonei knew i did something stupid
22:21.27darkstonerofl
22:21.43Microangdarkstone: maybe it was my fault :(
22:21.51Microang:)
22:21.56gauner1986yeah
22:21.57darkstoneyes
22:21.57darkstonexD
22:21.57gauner1986let us say
22:21.58gauner1986it was
22:21.59gauner1986:P
22:22.02jonpry[acl]. that is some interesting stuff
22:22.10darkstonewell time for a re-upload
22:22.39gauner1986time to fix libhtc_ril_wrapper
22:23.11darkstonehm
22:23.16darkstonestill issues with ppp?
22:23.23gauner1986no
22:23.28darkstoneoh
22:23.33gauner1986it just doesnt recognize the pppd failing
22:23.37darkstonewhat needs fixing in the wrapper?
22:23.38darkstoneah ok
22:23.53gauner1986just for beauty :P
22:24.35[acl]jonpry: lot of math in there
22:24.49*** join/#htc-linux Echo31 (~olivier@mir31-4-82-240-194-54.fbx.proxad.net)
22:24.58[acl]jonpry: im trying to cheat with some rpc but its not looking good
22:25.32jonpryi don't think it works right. it is a piecewise linearization of the function using the wrong parameter space
22:25.43jonpryoh well
22:26.13noellenchrisdarkstone: update on my ppp on non ppp build...works thanks for your instructions :P
22:26.27uriahheepanyone here ever gotten a bus error with mplayer?
22:26.32[acl]jonpry: way over myhead .. wooo.. all i heard wasy "jonpry: blah blah.. try to use rpc .. blah"
22:26.34darkstoneNP LOL
22:26.40Microang:D sorry for bothering u too much, just exciting cause I really love the flipping clock and new features! :D I won't bother u anymore without reason
22:26.43darkstoneoops
22:26.52darkstone/caps
22:26.59*** join/#htc-linux bueller (81155044@gateway/web/freenode/ip.129.21.80.68)
22:27.37buellerany new developments on the Android department?
22:28.00*** join/#htc-linux z (57c289f0@gateway/web/freenode/ip.87.194.137.240)
22:28.01jonpry[acl] it could potentially appear to work as long as the charger is not plugged in. and it will be really stupid around the transition from say 4 to 5 bars
22:28.28darkstonegauner1986: mind sharing the pppd binary?
22:28.48gauner1986darkstone: sure
22:28.51gauner1986*uploading*
22:28.52darkstonethanks
22:28.56Microangjust hope camera gets sorted soon :)
22:29.19darkstoneall the pppd binaries im looking at are identical
22:29.28dcordeshello
22:29.35gauner1986dcordes: hey :)
22:29.37darkstonehey dcordes
22:29.41darkstonenot seen you around here
22:29.45darkstonefor a while anyway
22:30.01*** join/#htc-linux MicroAngerIsBack (8bb3cf37@gateway/web/freenode/ip.139.179.207.55)
22:30.02MicroAngerIsBackslaps MicroAnger
22:30.04*** join/#htc-linux bzo (~chatzilla@c-76-126-175-200.hsd1.ca.comcast.net)
22:30.20dcordeswe need to add a challenge for the wiki account creation
22:30.24[acl]jonpry: doesnt the meter get disabled when u charge anyways ?
22:30.47MicroAngerIsBackhey dcordes
22:30.56dcordeshttp://htc-linux.org/wiki/index.php?title=Special:RecentChanges too much spam
22:30.57MicroAngerIsBacklong since i'Ve seen you
22:31.20jonpry[acl]: i guess it could. but in theory you would want to know how charged your phone is while it is charging
22:31.35jonpryknow if your ready to get on the go
22:31.39MicroAngerIsBackslaps MicroAng :) typo
22:32.00[acl]jonpry: this is true.. so u dont charge to death huh
22:32.00MicroangMicroAngerIsBack: why are u taking my name?
22:32.20MicroAngerIsBacky r u spammin'
22:32.45MicroAngerIsBackjob dome
22:32.47MicroAngerIsBackdone*
22:32.49MicroangI ain't
22:32.53MicroAngerIsBackAnger is out
22:33.14jonpry[acl]. i dunno how the charger is setup. somebody said it is in the battery. so you can't really overcharge it even if you wanted to
22:33.38bzoyep, the battery has it's own overcharge circuit
22:33.57[acl]nice to know
22:34.19[acl]bzo: sup dood.. any good news on ur end ?
22:34.28dcordesgauner1986: how is linux-on-wince-htc branch coming along ?
22:35.00gauner1986dcordes: very good.. we got everything working that the ltg kernel has working
22:35.01bzosometimes when I find some cheap cellphone li-ion batteries on ebay, I create my own packs with them. Charging tends to be pretty bulletproof
22:35.08dcordesgauner1986: ok
22:35.10bzo[acl] nah, more problems if anything
22:35.17dcordesgauner1986: are you still working in linuxtogo kernel.git ?
22:35.20[acl]bzo: camera still?
22:35.30bzoyeah
22:35.34gauner1986dcordes: no.. on gitorious.. linuxtogo speed is crap..
22:35.53bzothough, I'm not working too hard on it until WisTilt2 is able to release the dsp stuff
22:36.01darkstonegauner1986: how big is your pppd file?
22:36.08dcordesgauner1986: ok. can you add the required URIs in the wiki ?
22:36.23darkstone148.2 KB?
22:36.45gauner1986http://htcleo.noobhands.net/gauner1986/pppd
22:36.52darkstoneah nvm
22:36.53darkstonethx
22:36.53darkstone:D
22:36.55gauner1986:P
22:37.06gauner1986compiled it myself
22:37.18gauner1986dcordes: to which page?
22:37.22dcordes[Leo#Kernel]
22:37.30dcordes[[Leo#Kernel]]
22:37.30unilinkyhttp://htc-linux.org/wiki/index.php?title=Leo%23Kernel
22:37.33dcordesor so
22:37.33darkstonegauner1986: my hero XD
22:37.38[acl]bzo: ahh ic.. so did you manage to get over your mem issue?
22:38.17EdLinI'm having problems getting reliable 3g, had problems with shu8craft and the froyo sense build both.
22:38.55EdLinwifi works, and sometimes 3g works if I toggle it off and on a couple of times. It usually doesn't work on boot though.
22:38.59bzo[acl] not really, though I think I'm starting to understand things slightly better
22:39.16EdLinHTC HD2, btw.
22:41.55EdLinI'm using Energy Reference, it works fine with both HSPA 3g and wifi.
22:42.21gauner1986please ask in #htc-linux-chat
22:42.29EdLinok, sorry.
22:43.24dcordesgauner1986: did you register a nick in the wiki so I can give you the admin ?
22:44.06gauner1986dcordes: i'll do, mom
22:44.43gauner1986ok
22:44.47gauner1986gauner1986 ;)
22:47.48dcordes[[Special:Log/rights]]
22:47.48unilinkyhttp://htc-linux.org/wiki/index.php?title=Special:Log/rights
22:48.22dcordesgauner1986: now you can also edit [[Template:Main_page/news]] etc
22:48.22unilinkyhttp://htc-linux.org/wiki/index.php?title=Template:Main_page/news
22:48.35dcordesHow is the LeTama android coming along :) ?
22:49.34darkstonehm
22:49.44darkstonegauner1986: E/pppd    (  961): This system lacks kernel support for PPP.  etcetc
22:50.02gauner1986darkstone: did you chmod 4777 /system/bin/pppd ?
22:50.08darkstoneyup
22:50.11darkstonei'll try again
22:50.32*** join/#htc-linux mayohead (~ethan@c-71-59-128-10.hsd1.wa.comcast.net)
22:50.56darkstonedid you get the same issuing the kernel that i included?
22:51.03gauner1986chown radio /dev/smd1
22:51.14gauner1986i didnt test that kernel
22:51.17darkstoneah
22:51.26darkstoneprobably my fault then
22:51.42darkstonewell nvm
22:51.49darkstonethe chmod seems to have done the trick heh
22:51.54gauner1986:P
22:52.04gauner1986darkstone: what did you try so far to get cam working?
22:52.26darkstonetried replaceing the libs
22:52.40iDavidand...?
22:52.41*** join/#htc-linux Wally (~wally@c-75-73-178-169.hsd1.mn.comcast.net)
22:52.46darkstonereplace libcamera*.so libs makes the system unbootable
22:52.55gauner1986hm
22:52.59iDavidmeans...?
22:53.05gauner1986we're fucked?
22:53.05gauner1986:P
22:53.10darkstoneend of the world...
22:53.17iDavidShit! =P
22:53.21darkstone:D
22:54.29Microang*wonders what the libs would look like in notepad* :D
22:54.32gauner1986the /dev/msm_camera doesnt exist on my device
22:54.59gauner1986does it exist for you darkstone?
22:55.15gauner1986i remember replacing init.android did it
22:55.16darkstonechecking
22:55.17darkstonealso
22:55.23darkstoneconnected here via wifi hotspot
22:55.24darkstone:D
22:55.51darkstonegauner1986: i have msm_camera
22:56.02iDavidYou mean Connected from the HD2 with an Ad-Hoc AP ?
22:56.43darkstoneyep
22:56.56darkstoneworking nice and fast
22:57.07dcordesgauner1986: are there any advantages over htc-msm-2.6.32 when using git://gitorious.org/linux-on-wince-htc/linux_on_wince_htc.git linux_on_wince_htc ?
22:57.09iDavidWould you be kind a make/show a tutorial on xda forums about that?
22:57.18iDavidReasons are...
22:57.29darkstone?...
22:57.32darkstonewhat?
22:57.44gauner1986dcordes: power management.. wifi tethering working on sense builds.. and a few other improvements.. look in commit logs
22:57.47iDavidnub ?
22:57.51darkstoneshh xD
22:58.41gauner1986how could i gain su in terminal emu again?
22:59.11darkstonesu
22:59.16gauner1986haha
22:59.22gauner1986permission denied
22:59.22darkstone:p
22:59.25darkstoneoh dear
22:59.26darkstonehm
22:59.28darkstonetry chmod
22:59.34darkstonehang on
22:59.42iDavidroot
22:59.43gauner1986doesnt work
22:59.57iDavidsudo?
23:00.02gauner1986there's no sudo
23:00.12darkstoneare you using a custom rootfs?
23:00.14iDavidim out
23:00.23gauner1986darkstone: i use what mdeejay gave me
23:00.29darkstoneweird
23:00.31darkstonewell
23:00.32gauner1986and he used what mattc gave him
23:00.36gauner1986and so on
23:00.37darkstonerofl
23:00.37gauner1986:P
23:00.45darkstonein the init in rootfs
23:00.46darkstonecontains
23:00.47darkstonechmod 04755 /bin/su
23:00.47darkstonechmod 04755 /system/xbin/su
23:00.54iDaviddid mattc use what someone else gave him?
23:00.56darkstoneusually that does the trick
23:01.14Microangwell goodnight and good luck everyone
23:01.25iDavidGoodnight..
23:01.46dcordesgauner1986: is it the same bcm4329 we have been using in htc-msm-2.6.32 (before last commit) ?
23:01.51*** join/#htc-linux purcy (62e2373f@gateway/web/freenode/ip.98.226.55.63)
23:01.59gauner1986dcordes: no.. it's bcm4329_204 again
23:02.17dcordesgauner1986: where is it taken from ?
23:02.20gauner1986it just worked out of the box after the switch
23:02.23gauner1986evo kernel itself
23:03.59*** join/#htc-linux frusf (62e2373f@gateway/web/freenode/ip.98.226.55.63)
23:04.24dcordesgauner1986: how do you commit to gitorious ?
23:04.34gauner1986dcordes: hm.. i don't :)
23:04.45gauner1986markinus does
23:05.01dcordes~seen Markinus
23:05.09aptmarkinus is currently on #htc-linux (2h 41m 7s). Has said a total of 12 messages. Is idling for 1h 14m 49s, last said: 'yeah, my failer, copy/paste'.
23:06.12dcordes[[Leo#Kernel]]
23:06.12unilinkyhttp://htc-linux.org/wiki/index.php?title=Leo%23Kernel
23:06.49dcordesgauner1986: have you been using LeTama's android tree ?
23:07.12gauner1986dcordes: no, not yet.. i used my sense stuff
23:07.28dcordesI cannot find the wiki page any longer
23:07.39dcordeswhat is your sense stuff ?
23:07.55dcordesNice, gitorious is really fast
23:07.55Casshttp://htc-linux.org/wiki/index.php?title=Xdandroid
23:08.15dcordesCass: nice, thanks
23:08.16gauner1986a darkstone build i modded to fit my needs
23:08.17gauner1986:P
23:08.35gauner1986Cass: now it's time to fix camera
23:08.37gauner1986:P
23:08.38dcordesWarez'r'us
23:08.42Cass:)
23:08.59asdf_Can anyone be kind enough to tell me what kernel is included in the desire HD beta posted by darkstone? I realised that it has something no other sense build has: working auto backlight support.... Big Ups to the devs!
23:09.01*** join/#htc-linux roman26 (roman26@cpc3-belc1-0-0-cust237.2-1.cable.virginmedia.com)
23:09.27Cassworking auto backlight ?
23:09.45dcordesasdf_: Of course. It is your right to get the kernel source
23:10.05*** join/#htc-linux mes (~mes@S0106000c417884fe.cc.shawcable.net)
23:11.00darkstoneasdf_: http://www.gitorious.com/linux-on-wince-htc/linux_on_wince_htc
23:11.07darkstonediff patches were included in the build
23:11.55darkstoneand i never posted that beta build on forums
23:12.02darkstonedont know how that spread around heh
23:12.35dcordesCass:
23:12.44Cassyup
23:12.46dcordes'FOR DEVELOPERS ONLY, IT DOESN'T WORK! ' <- that true ?
23:13.05Casshmm, well, it wont compile out the box cleanly
23:13.17Cassyou need added libe etc
23:13.20Casslibs
23:13.27Cassi had trouble compiling it
23:13.35Cassthen i had to fix most of it when it booted
23:13.43Cassas few hw worked
23:13.52Cassso yeah devs only :)
23:14.05Cassthe end user experience would be limited
23:14.14dcordesok
23:14.26asdf_dcordes, darkstone, thanx a yahoo. Will try it on my everyday build. You guys rule
23:15.17dcordesdarkstone: thought about commiting kernel patches upstream instead ?
23:16.00gauner1986i guess it are not his own patches
23:16.03dcordesCass: to what extent did you get stuff working locally ?
23:16.10*** join/#htc-linux Eruz (~Eruz@89-24-7-85.i4g.tmcz.cz)
23:16.19*** join/#htc-linux Opius (~Opius@host86-176-154-85.range86-176.btcentralplus.com)
23:16.19*** join/#htc-linux Jack-E (~chatzilla@host86-130-60-114.range86-130.btcentralplus.com)
23:16.44darkstonedcordes: not really :p
23:16.50darkstonei've only made one minor change
23:16.56Cassdcordes most things, except video recording i think
23:17.03dcordesCass: well that is something
23:17.08Cassor did i fix that too .. cant remember
23:17.09darkstonebut feel free to commit it yourself
23:17.27Cassso many builds since i used that one
23:17.54dcordesCass: you are building images from other sources as well ?
23:18.02Cassonly cm6
23:18.09Cassthats my main every day rom ..
23:18.14Casshad no wake from sleep hang
23:18.27dcordesI am still convinced that we will get the best progress working on one common android source instead of the binary pushing.
23:19.03dcordesCass: maybe we should get together with letama and consider switching to cm6 base then
23:19.21Cassproblem with that is not everyone likes the changes
23:19.32Casssome like stock froyo, others cm6 others sense
23:19.35Cassits like herding cats
23:20.44gauner1986darkstone: do you know how to integrate a real superuser app that asks for su rights?
23:20.47*** join/#htc-linux slayerns (8bb3cf37@gateway/web/freenode/ip.139.179.207.55)
23:21.04dcordesCass: It is the common android problem...
23:21.04darkstonenot tried yet
23:21.13darkstonebut mattc told me that he did, and had success
23:21.17dcordesCass: but we have to chose
23:21.21*** join/#htc-linux mattc (~IceChat7@75-142-172-16.dhcp.ftwo.tx.charter.com)
23:21.25darkstoneat least in this rom anyway
23:21.28gauner1986ah
23:21.29gauner1986mattc
23:21.30slayernsBest compatible one should be desire HD
23:21.33mattchey
23:21.34slayernsisn't it*
23:21.35slayerns?
23:21.36gauner1986tell me how to integrate a superuser app :)
23:21.57mattcI don't know how, it just worked :P
23:22.00dcordes<PROTECTED>
23:22.06dcordesoh
23:22.14gauner1986:P
23:22.30mattcI just pushed the superuser.apk into /app and bingo
23:23.18darkstonedcordes: hm, what are you referring to? :p
23:24.05dcordesgauner1986: markinus merged the cotulla changes ?
23:24.30gauner1986dcordes: i guess yes
23:24.40gauner1986and he improved a few things
23:25.46dcordescompiling
23:26.57*** join/#htc-linux atoore (47e78418@gateway/web/freenode/ip.71.231.132.24)
23:31.21jonpryuriahheep: did you get alsa working?
23:34.03dcordesjonpry: what htc-msm-2.6.27 devices have known working alsa now ?
23:34.25*** join/#htc-linux Major_Sarcasm (~Steve@79-73-23-195.dynamic.dsl.as9105.com)
23:34.47jonpryjust rhod. dream has working alsa but on different kernel
23:34.51gauner1986ah ok
23:34.58gauner1986seems like the checker thread dies
23:35.01gauner1986for liblights
23:35.08gauner1986that's why it doesnt work
23:35.32dcordesjonpry: ok. not topaz ?
23:36.27dcordesCass: do you have to patch cm6 massivley in order to make things work for leo ?
23:37.11Cassnot massivly, but you do need the hd2 libs
23:37.25Cassnot really more than xdandroid but it was a tad easier to compile
23:38.13darkstonehttp://forum.xda-developers.com/showthread.php?t=787167
23:38.15darkstonehaha wow
23:38.25jonprydcordes: it should work on all the htc-msm2.6.27 devices. but i don't know of anyone who tested it
23:39.10Cassdarkstone, surprised that was even allowd to happen
23:39.15Cassfishy
23:39.36dcordesjonpry: I see. What usespace you tested it on with rhod ? .. so we can have ppl try on other devices
23:39.43darkstoneyou cant flash files like that xD
23:39.55darkstonehe's probably flashed the rru version that was leaked
23:40.05Cassyeah thats what i mean
23:40.07darkstonenot the one that he somehow got a hold of the link of
23:41.06jonprydcordes: i did it on rhobuntu because it has aplay. trouble is you need this weirdo utility use the sound first. android wouldn't need the utility but i don't know of any alsa players
23:41.51dcordesjonpry: where can the weirdo utility be found ?
23:42.19dcordes[[Rhobuntu]]
23:42.19unilinkyhttp://htc-linux.org/wiki/index.php?title=Rhobuntu
23:42.31dcordes:'(
23:43.01jonpryits called playwav2.c
23:43.13dcordesah that's a classic one
23:43.28*** join/#htc-linux Neo31 (~Neo31@unaffiliated/neo31)
23:43.33dcordeshttp://linuxtogo.org/~lgorris/misc/playwav2.c ?
23:43.40dcordesOr you use patched one ?
23:45.23jonpryjust stock
23:48.02dcordesdid you try mplayer instead of aplay ?
23:48.16noellenchrisCass: I'm back again w/no sod on cm6 thanks to darkstone I pushed in ppp into pongsters (CM6 latest nightly).  Works great.  Fast/fancy...low battery drain too.  Anyhow, I don't want to jinx it..
23:49.25dcordes[[Leo#Kernel]]
23:49.26unilinkyhttp://htc-linux.org/wiki/index.php?title=Leo%23Kernel
23:49.36dcordesNetRipper: can you add new leo branch in autobuild ?
23:49.50dcordesgit://gitorious.org/linux-on-wince-htc/linux_on_wince_htc.git linux_on_wince_htc
23:50.15gauner1986dcordes: he already did
23:52.11dcordesah nice
23:52.29dcordes[[Leo/UpdateKernel]]
23:52.29unilinkyhttp://htc-linux.org/wiki/index.php?title=Leo/UpdateKernel
23:53.10dcordeswill add some symlinks
23:53.17dcordesso the old guides are not broken any longer
23:55.31*** join/#htc-linux miknix (~miknix@gentoo/developer/miknix)
23:58.19*** join/#htc-linux kse (~virus@dslb-084-063-152-255.pools.arcor-ip.net)
23:59.47*** join/#htc-linux NeoFlux (~NeoFlux@92.28.67.183)
23:59.52NeoFluxdarkstone
23:59.58NeoFluxI'm pissed off with you

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