irclog2html for #htc-linux on 20100101

00:00.07phhDarkMasterHalo: 31 :p
00:00.11DarkMasterHalokk
00:00.13tmztit's up to userspace to do that, either through hot plug
00:00.30DarkMasterHalophh: I asked the question on the 31 ... :S
00:00.43phhso why looking 30 logs ? p:
00:01.00tmzt(now udev) or the /sbin/modprobe called from the kernel when it detects a driver/fs/format/ldisc/etc. it needs loaded
00:01.01DarkMasterHaloWell, because I asked this question on the 30th here lol
00:01.21DarkMasterHaloWe are the 31 here :P
00:01.25phhI hate this stupid sleep stuff.
00:01.45tmztif modprobe is configured correctly it will load it by alias
00:02.15tmzt(like major number, protocol number, sound slot, or other values)
00:02.28DarkMasterHalotmzt: Ok, how does udez determine what .ko to load, does the .ko provide some sort of name for a specific device ?
00:02.32DarkMasterHaloudev*
00:02.38tmztit does now
00:02.48DarkMasterHaloAh ok
00:02.52tmztdo a modinfo and you will see it
00:03.19DarkMasterHaloOk, I guess you have to write a function in the driver to provide that information.
00:03.19tmztbut it didn't use to, and you had to setup (-or the vendor did) aliases for the drivers
00:03.24tmztno
00:03.34tmztthat would require loading the module
00:03.40tmztinto the kernel
00:04.00phhthis theory applies to computers or maybe to sdio devices, but that's it ....
00:04.03tmztit just looks at a special simple in the elf (.ko) file
00:04.25tmztshould we get into platform bus then?
00:04.35DarkMasterHaloOkay. Nice I know more about Kernel now :)
00:04.44DarkMasterHaloEh, what is platform bus ?
00:04.46tmztI think but I'm not sure that udev is told when things are added to pbus
00:05.05phhI think it is
00:05.16tmztit's a built in virtual bus that represents builtin device that cannot be enumerated
00:05.26tmztbecause they don't have id's
00:05.33DarkMasterHaloOkay
00:05.42phhand/or their own bus
00:05.42tmztsimple/symbol above
00:05.47tmztright
00:08.05DarkMasterHaloOk, so rectification, when booting it boots the kernel then it loads modules one by one based on the udev service which probes for information on devices attached to the computer.
00:08.40DarkMasterHaloI hope I got it right :)
00:09.58tmztkernel tells it what to load
00:10.12DarkMasterHaloOkay.
00:10.15tmztudev can only probe certain things with callouts
00:10.30tmztand only during the boot process, once kernel has fully loaded
00:10.55DarkMasterHaloAh ok, so the Kernel is probing devices by itself than mouting the proper modules right ?
00:11.20tmztnot sure if things like pci are enumerated during syntthetic events in udev
00:11.33tmztactually by a udev* tool, not udevd
00:11.43DarkMasterHaloOk
00:11.54tmztkernel probes buses once the bus driver inits
00:12.20tmztthen tells udev (if /proc/modprobe or whatever not set) which loads the drivers
00:12.46tmztit tells udev through the uevent socket and event sockets in relevant sysfs directories
00:13.26DarkMasterHaloOk now, when you add a new driver as a module, how does the module gets referenced, is it at compiling time ?
00:15.43tmztit's loaded by the kernel module loaded
00:15.50tmztwhich resolves the symbols
00:16.58DarkMasterHaloThe symbols ? I mean the module has to provide some information to the Kernel so the Kernel knows what it does no ?
00:17.35*** join/#htc-linux The_Eccentric (n=ablack7@unaffiliated/theeccentric/x-737283)
00:18.31tmztwhat do you mean?
00:21.03DarkMasterHaloWell, when you write a driver which provides functionnalities for a certain device and you compile it, it becomes a module (.ko) file which is loaded by the Kernel, but how does the Kernel recognise that module ?
00:21.56tmztmodprobe is the part that find the modules
00:22.09tmztwhether called directly from kernel or by udev
00:22.22tmztthe .ko declares init and exit calls
00:22.40DarkMasterHaloah Ok
00:22.47tmztin those calls the module registers and unreigsters whatever drivers, protocols, ldiscs, etc. it contains
00:23.10DarkMasterHaloand these init calls are written in the driver itself ?
00:23.22tmztyes, in the module
00:23.41DarkMasterHalomodule = driver or not ? just to make it clear :P
00:23.57tmztthere are other symbols not loaded into the kernel that can tell modprobe things about the driver
00:24.18tmztno, module is the file, driver is a struct registered with a kernel subsystem
00:24.55tmzta module can contain multiple drivers or part of a driver
00:25.09tmztas long as the whole thing is loaded before being registered
00:25.21tmztor called
00:27.03DarkMasterHaloOkay, so there is already some modules that load the drivers you guys are writing for linux (htc)
00:33.08tmztI think only wifi is in a module
00:33.30phhI also added ramzswap
00:33.58DarkMasterHaloOkay, so the other drivers are loaded with the kernel at boot time then ?
00:35.16tmztyes
00:35.24tmztthey are compiled in
00:35.36DarkMasterHaloAh ok
00:35.36tmztphh: any reason for it to be a module?
00:35.45phhtmzt: no patch to merge it
00:35.57phhand don't want to do it by myself even if it shouldn't be hard
00:36.15tmztbut linux still calls their init functions it essentially the same order they are compiled in
00:36.30tmztthough exit is never called
00:37.18tmztshould be a copy -r and a source in Kconfig as well as a += in Makefile
00:37.25phhI think so
00:37.44tmztcould be useful on non-android also
00:42.29DarkMasterHaloI'm copying linux-msm git.  I'll take a look at some code there.
00:43.12phhtmzt: http://pastebin.com/m5b26ef46
00:43.19phhyou can adapt this script to whatever distrib you use
00:45.19tmztshould it really be harder than an entry in fstab?
00:46.26phhbah if you have an idea to do that ...
00:46.37phhmight use a loopback ext2 mmmm
00:47.06phhdoesn't sound great.
00:47.34tmztwhat?
00:47.43tmztfor proc/zswap?
00:47.53phhmodules
00:48.08phhthat's not what you're talking about with the entry in fstab ?
00:48.14tmztsee the point, built in is better
00:48.16tmztno
00:48.21tmztramcache
00:48.27tmztcompcache
00:48.35ToAsTcfhphh: did u look at those utilities i sent
00:48.40phhToAsTcfh: no
00:48.55phhwat
00:48.57phhwhich ones ?
00:49.00tmztalso, modprobe.d is enough to get it loaded with mer/ubuntu/debian
00:49.01ToAsTcfhoh well...
00:49.04tmztor init.rc
00:49.23ToAsTcfhbut we got all sensors up 100%
00:49.35ToAsTcfhddream sensors.c
00:50.02ToAsTcfhnow were tryin to get around lib oemcamera
00:50.29ToAsTcfhit wants msmcamera and i guess the kernel dont have it
00:50.47phhmsmcamera is the name of the /dev device?
00:51.15ToAsTcfhyeah well its not getting loaded by the kernel
00:51.40ToAsTcfhanyideas
00:51.53phhlet me search in my kernel sources database.
00:52.37phhhero kernel source do have msm_camera device
00:52.52phhToAsTcfh: what's the exact error ?
00:54.55ToAsTcfhhmmm hold up
01:01.14ToAsTcfh<PROTECTED>
01:01.14ToAsTcfhthere is pmem_camera
01:01.14ToAsTcfhthough
01:01.31ToAsTcfhphh: what do u think
01:01.47phhI need a real error message.
01:01.51phhwithout source nor error message
01:01.54phhit's kind of tough
01:02.04tmztare the using v4l?
01:02.45ToAsTcfhtmzt no
01:03.13tmztcan you strace?
01:03.42ToAsTcfhyeah but not right now
01:03.51ToAsTcfhwhat to strace for
01:03.56ToAsTcfhcamera
01:04.12phhmaybe.... don't know.... the camera app ?
01:04.14phhnnnnnaaaaaaaaa
01:04.15phhsounds stupid
01:04.32ToAsTcfhits the 2.1 camera app
01:04.42ToAsTcfh<PROTECTED>
01:04.57ToAsTcfhits htcs camera
01:05.07phhit's htc or aosp ... ?
01:05.16ToAsTcfhboth
01:05.32ToAsTcfhit doesnt work in both builds
01:05.40phhanyway
01:05.42phhstrace it.
01:05.43*** join/#htc-linux vawx (n=chatzill@ip54532c5f.speed.planet.nl)
01:06.09ToAsTcfhok will look into it tomorrow.
01:06.37ToAsTcfhhappy new years and thank u guys for all ur help uve given me
01:08.18ToAsTcfhwhere are the light sensor .so?
01:08.51ToAsTcfhor what ever alows it to work like sensors.heroc
01:08.59ToAsTcfhor is there
01:10.18tmztoem?
01:10.52phhToAsTcfh: it handles lights.
01:10.56phh(sounds weird, i know)
01:11.02phhoh wait
01:11.06phhit's not light *sensor*
01:11.12phhit's light *emission*
01:11.20phhlight sensor is in the sensors.so file
01:19.03*** join/#htc-linux makkonen1 (n=makkonen@cpe-72-224-203-91.maine.res.rr.com)
01:20.28*** join/#htc-linux greebear (n=greenbea@dslb-088-078-199-094.pools.arcor-ip.net)
01:21.43*** part/#htc-linux greebear (n=greenbea@dslb-088-078-199-094.pools.arcor-ip.net)
01:28.00ToAsTcfhphh:D/QualcommCameraHardware(   45): createInstance: E
01:28.01ToAsTcfhI/mm-camera-mmap(   45): There is no sensor detect
01:28.01ToAsTcfhE/QualcommCameraHardware(   45): no sensor detect
01:28.01ToAsTcfhI/QualcommCameraHardware(   45): Open Device node : /dev/msm_camera/control0
01:28.01ToAsTcfhE/QualcommCameraHardware(   45): startCamera X: /dev/msm_camera/control0 open failed: No such file or directory!
01:28.02ToAsTcfhE/QualcommCameraHardware(   45): createInstance: startCamera failed!
01:28.04ToAsTcfhD/QualcommCameraHardware(   45): ~QualcommCameraHardware E
01:31.52phhok I can confirm  hero has no such t hing.
01:32.21phhupstream 2.6.31 neither
01:32.37phhI7500 neither
01:32.41phhToAsTcfh: where did you get this app ? :p
01:34.22phhuh
01:34.24phhI might be wrong
01:35.08phhmmmmmm
01:35.18phhdepends on how stupid android is
01:35.38tmztit probably makes that directory at runtime
01:35.48tmztcheck /proc/devices
01:36.14phhok, totally stupid
01:36.32tmztphh: can you check opensource.palm.com for Pixi source?
01:36.46phhhu ?
01:36.50phhhow useful would that be ?
01:37.32tmztfor this? I'm looking for an updatated mdp driver not using pmem
01:37.48tmztit's 7627 though
01:37.53phhoh they run qualcomm ?
01:38.01phhI thaught they use omap
01:38.02tmztalso, v4l2 camera I think
01:38.07tmztPre is omap
01:38.11tmztPixi is msm
01:38.38phh2.6.24
01:38.39phhcool.
01:39.17tmztwell, weird actually
01:39.32tmztthe backported codeaurora stuff
01:39.51tmztit's not the same 2.6.24 that google released two years ago
01:42.06phh+static struct android_pmem_platform_data android_pmem_fb_pdata = {
01:42.13phhtmzt: sounds like you're kind of optimistic.
01:43.14phhoh
01:43.18phhkxsd9 accelerometer
01:46.31phhmmmm interrupt on freefall
01:46.45phhI wonder if it can work for us
01:47.00tmztif the gpio is connected
01:47.42tmztpmem without drm?
01:47.52tmztof course, it's 2.6.24
01:48.20phhhow do you want to do else than pmem hack btw ?
01:48.57tmzt?
01:49.11phhI mean without pmem, how to do 2D accel ?
01:49.20tmzthope to remove pmem from the new drm code
01:49.27phhah drm ok
01:49.30tmztit currently calls into it
01:49.49tmztand the ddx uses binder
01:49.57tmztwhich makes no sense
01:50.05tmztsince there's no android
01:53.08tmztphh: is it using function or gadget?
01:53.11tmztcomposite?
01:53.13phhgadget
01:53.17tmztnice
01:53.26phhI still don't get why you hate function
01:53.44tmztI don't, I even like the bitmap stuff
01:54.02tmztI just want the standard linux stuff to work
01:54.10phhok
01:54.15phhanyway, good night
01:54.20tmztif function is better it should be merged and submitted upstream
01:54.22tmztnight
01:55.36DarkMasterHaloWOW, I don't even know where to read and what to do in the source files.
01:55.53tmzthuh?
01:56.23DarkMasterHaloSo complicated
01:56.34DarkMasterHaloI'm lacking a lot of knowledge ...
01:56.34tmztno
01:56.40ToAsTcfhtmzt: so what do u think i should look into? v4l
01:56.56tmztread the Kconfig's in the top level directories
01:57.01tmztyou'll see
01:57.06DarkMasterHaloHmm kk
01:57.07tmztdrivers/media/video
01:58.56ToAsTcfhive looked at v4l2 but im not sure if itll work for us or how hard itll be to write
01:59.17ToAsTcfhi seen all the docs in there
01:59.46tmztdidn't phh say he found the control0
02:00.36*** join/#htc-linux townkat (n=town@86.127.6.111)
02:00.59townkathappy new year to everyone ;)
02:05.28DarkMasterHalotmzt: What should I look in that file.  Sorry if I'm a bit noobish :P
02:05.58tmztwhat file?
02:06.19tmztmsm something or the name of the sensor
02:06.58DarkMasterHalotmzt: KConfig :P
02:07.19DarkMasterHalotmzt: I'm looking at the one in linux-msm/arch/arm/mach-msm
02:07.32tmztthose are the .config options
02:07.41tmztjust read it, it will make sense
02:12.27DarkMasterHalotmzt: What file should I read next :P
02:12.46DarkMasterHalotmzt: Begins to make more sense.
02:12.56tmztMakefile
02:13.54*** join/#htc-linux madCoder- (n=madcoder@c-68-42-30-56.hsd1.pa.comcast.net)
02:13.54*** join/#htc-linux m1dlg (n=m1dlg@bb-87-81-252-83.ukonline.co.uk)
02:19.02DarkMasterHalotmzt: Ok there's a lot of object file there, what should I read next ?
02:29.39*** join/#htc-linux DarkMasterHalo1 (n=sam@modemcable187.118-80-70.mc.videotron.ca)
02:29.55DarkMasterHalo1<
02:30.01*** part/#htc-linux DarkMasterHalo1 (n=sam@modemcable187.118-80-70.mc.videotron.ca)
02:30.34*** join/#htc-linux x29a_ (n=x29a@unaffiliated/x29a)
02:33.10*** join/#htc-linux DarkMasterHalo1 (n=sam@modemcable187.118-80-70.mc.videotron.ca)
02:33.13*** part/#htc-linux DarkMasterHalo1 (n=sam@modemcable187.118-80-70.mc.videotron.ca)
02:43.20DarkMasterHaloOkay, good night all and Happy New Year !
03:01.13*** join/#htc-linux tornador (n=herpez@87.196.0.235)
04:01.02*** join/#htc-linux MxxCon (i=donuts@ool-18b9baa8.dyn.optonline.net)
04:12.28MxxConhey folks. it sounds like it'll be hard to get cdma data implemented?
04:18.23tmzton?
04:18.30tmztit works on rhod500
04:22.25MxxConoh, sorry :)
04:22.28MxxConsprint's touchpro2
04:36.12*** join/#htc-linux babijoee (n=joee@110.33.164.109)
04:36.28tmztverizon
04:36.32tmztso same thing
04:36.51tmztI just use a script, but I'm not using android
04:37.12tmztmdrobnak's ril should work there if built for the version of android you're using
04:38.08*** join/#htc-linux Zack84a (n=zack84a@r74-192-19-93.bcstcmta01.clsttx.tl.dh.suddenlink.net)
04:40.55MxxCondoes it matter if its android or not?
05:09.22tmztnot for the kernel or hardware support
05:09.29tmztbut that already works
05:24.29tornadori have cloned the linux-msm. how can i clone the 2.6.27 branch?
05:27.26tmztit will check itself out
05:27.38tmztgit branch
05:27.48tmztwill tell you whick you're on
05:29.40tornadorthanks
05:37.39MxxConbtw, happy new year
05:40.33tornadorHappy New Year to all
05:49.40tornadorwhen wtrying to compile the kernel i have
05:49.41tornadorcc1: error: unrecognized command line option "-mlittle-endian"
05:49.42tornadorcc1: error: unrecognized command line option "-mapcs"
05:49.47tornadorany clue of what can be?
05:55.40*** join/#htc-linux ToAsTcfh (n=toast@110-43.200-68.tampabay.res.rr.com)
06:22.58*** join/#htc-linux |Jason8| (i=JayAte@server2.tiltshellz.org)
07:04.27tmzttor: yes
07:05.38tmztARCH=arm CROSS_COMPILER=/opt/arm/arm2008q1/bin/arm-eabi-none- make zImage
07:07.01makkonen1CROSS_COMPILER or CROSS_COMPILE?
07:07.28tmztno R
07:07.31tmztthanks
07:08.22makkonen1also every quarter the arm-none-eabi- command changes. it's like they're trying to be annoying.
07:09.17tmztyes
07:09.29tmztbut easier than playing with path for me
07:10.35*** part/#htc-linux MxxCon (i=donuts@ool-18b9baa8.dyn.optonline.net)
08:17.35*** join/#htc-linux GlemSom (n=glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk)
08:29.16ToAsTcfhtmzt: this is what the errors im getting in 2.1
08:29.21ToAsTcfhW/IntentManager(  915): from class: com.android.camera.CameraEntry
08:29.21ToAsTcfhW/IntentManager(  915): mRequestMode = RequestMode.Main, from Camera
08:29.21ToAsTcfhW/IntentManager(  915): request name = null - RequestName.Unknown_General
08:29.21ToAsTcfhV/HTCCameraAdvanceSetting(  915): writePreference E
08:29.21ToAsTcfhV/CameraThread(  915): *************************************** run
08:29.22ToAsTcfhW/HTCCamera(  915): last camera is closed, so go to quickly preview
08:29.24ToAsTcfhV/CameraThread(  915): start_preview() - start
08:29.26ToAsTcfhE/CameraThread(  915): open the Camera in start_camera_preview
08:29.29ToAsTcfhW/CameraThread(  915): Open Camera - set mIsLastCameraClosed to false
08:29.32ToAsTcfhD/CameraService(   77): CameraService::connect E (pid 915, client 0x28650)
08:29.33ToAsTcfhD/CameraService(   77): Client::Client E (pid 915)
08:29.36ToAsTcfhV/QualcommCameraHardware(   77): openCameraHardware: call createInstance
08:29.38ToAsTcfhD/QualcommCameraHardware(   77): createInstance: E
08:29.39ToAsTcfhV/QualcommCameraHardware(   77): constructor EX
08:29.41ToAsTcfhV/QualcommCameraHardware(   77): startCamera E
08:29.43ToAsTcfhV/QualcommCameraHardware(   77): loading liboemcamera at 0xb0013810
08:29.45ToAsTcfhI/QualcommCameraHardware(   77): [HANK] open main camera
08:29.47ToAsTcfhI/mm-camera-mmap(   77): There is no sensor detect
08:29.49ToAsTcfhE/QualcommCameraHardware(   77): no sensor detect
08:29.51ToAsTcfhI/QualcommCameraHardware(   77): Open Device node : /dev/msm_camera/control0
08:29.53ToAsTcfhE/QualcommCameraHardware(   77): startCamera X: /dev/msm_camera/control0 open failed: No such file or directory!
08:29.58ToAsTcfhE/QualcommCameraHardware(   77): createInstance: startCamera failed!
08:30.00ToAsTcfhD/QualcommCameraHardware(   77): ~QualcommCameraHardware E
08:34.05*** join/#htc-linux rmoravcik (n=rmoravci@ip-89-102-141-60.karneval.cz)
08:34.11*** part/#htc-linux rmoravcik (n=rmoravci@ip-89-102-141-60.karneval.cz)
08:39.45*** join/#htc-linux fish1209 (n=fish1209@unaffiliated/fish0912)
08:44.18ToAsTcfhphh: ^^^^^^ look above
09:52.15*** join/#htc-linux nozze (n=weechat@u193-11-162-41.studentnatet.se)
09:59.40*** join/#htc-linux tids2k (n=xXx@122.111.80.212)
09:59.56tids2knetripper ponggg
10:00.10tids2khows it going mate
10:06.13*** join/#htc-linux kiozen (n=oeichler@rgnb-5d8797ba.pool.mediaWays.net)
10:45.09*** join/#htc-linux vawx (n=chatzill@ip54532c5f.speed.planet.nl)
11:15.16*** join/#htc-linux kiozen (n=oeichler@rgnb-5d8797ba.pool.mediaWays.net)
11:18.13phhso with the zImage a guy sent me yesterday, with some really little patch, during a night of ~ 10hours
11:18.20phhwimo's battery indicator went from 80%
11:18.25phhto hum.... well.... 80%.
11:21.11parmasterhappy new year
11:21.19parmasterwhat phone is that on?
11:21.43phhdiamond
11:22.54phhthe phone woke uponly 29times in these 10hours and during these 10hours, the CPU was awake for a total of 80s.
11:25.28parmasterthats amazing
11:25.49parmasterand android is fully running on it?
11:25.52phhnow the only thing is to understand the differences.
11:25.57phhdepends on what you call "fully"
11:26.04parmasterall hardware works
11:26.05phhbut the same way (even better) than we usual kernels
11:26.13phhbah no gps no camera no fm
11:26.17parmasterok
11:26.26parmasterwell gps is obvious reasons
11:26.39phhuh ?
11:26.46phhreally ?
11:27.17parmasteri dunno, if its like the vogue then yah
11:27.38*** join/#htc-linux tsdogs (n=tsdogs@net203-187-146.mclink.it)
11:27.55phhthe vogue has gps working afaik
11:28.00parmasteryes
11:28.06parmasterdid you see how it does?
11:28.15parmasterthats why
11:28.16parmasterhehe
11:28.35phhit does in an unreadable way.
11:29.15parmasterthe api
11:29.50phhwhat about the API ?
11:29.52phhand which API ?
11:33.22parmasterGPS: srwalter's reverse engineering the windows RPC calls/implementing it
11:33.53parmasterexaaaaactly
11:35.17phhwe might use android's libgps.
11:35.20phhmight be easier
11:37.57parmasteri don't understand, libgps to an alien htc phone would be like a limp dick
11:38.36parmastersteven walters did an amazing job.. i honestly never thought that it would ever be written
11:38.54parmasterthe vogue team continues to amaze me
11:39.56phhyou know the radio software hasn't much changed between wince devices and android devices ...
11:40.18phhso using libgps might work.
11:40.36parmasterok, sure. i'll believe it when i see it :)
11:41.27phhwell we already have working init code, so we just lack the get_position, so I don't think anyone will try that.
11:42.14phhGlemSom: I think you'll have to update your compiler btw
11:42.36GlemSomphh, ok?
11:42.43phhI first do some tries
11:44.13phhoh well, it won't harm anyway I think
11:44.17phhGlemSom: use http://www.codesourcery.com/sgpp/lite/arm/portal/package5383/public/arm-none-linux-gnueabi/arm-2009q3-67-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
11:44.56phhthe current one is 2008q1, that's a bit old now anyway :D
11:44.58GlemSomphh, I'm currently using arm-2008q1...?
11:45.14GlemSomWell, is there anything broken in it?
11:45.22phhI think it breaks sleep_mode=1
11:45.27phhbut I first check it.
11:45.45GlemSomohh, that's a major error then... then I'll defently update!
11:45.59GlemSomJsut gotta check the new 2009q3 doesn't break anything else then :P
11:46.05phhyeah :p
11:46.25phhbut the zImage I was talking about (awesome battery life and so.) uses 2009q1 not 2008q1
11:46.31phhand well, that's the only difference I can see :p
11:46.52*** join/#htc-linux MethoS- (n=clemens@134.102.106.250)
11:47.18GlemSomCompiled using same tree, and same configuration?
11:47.26phhnot exactly
11:47.43phhanyway he gave me his patches
11:47.50phhand it still does the same for me
11:49.17phhGlemSom: which phone do you have again ?
11:49.25GlemSomphh, diam100
11:49.33phh:/
11:49.46phhI need some testers that has anything but diam100 /o\
11:49.56phhwell anything but diam100-499
11:50.06vawxdo i count? :p
11:50.11phhvawx: sure
11:50.19phhhttp://zimages.googlecode.com/svn/trunk/autobuild_system/htc-msm-android/zImage-modules-20100101_003747.tar
11:50.21phhtry that.
11:50.24GlemSomI think babijoee has raph...
11:50.40phhyes but he is not here :p
11:50.53*** join/#htc-linux rmoravcik (n=rmoravci@ip-89-102-141-60.karneval.cz)
11:51.11GlemSomhmm www.codesourcery.com is really slow... takes about 15 minutes to download the arm compiler from there... :/
11:51.19phhyes ....
11:51.27phhand I downloaded the wrong package /o\
11:51.36phh(the link I gave you is the right one)
11:51.47vawxAnything special i need to do to make it work? (cmdline and such)
11:51.48GlemSomheh :)
11:51.52phhvawx: no
11:52.18phhvawx: it might crash
11:52.21phhor not.
11:52.42vawxwe will see that soon enough :p
11:52.49phhIt's a strange zImage, it might be give android that much free RAM that it will be really usable, or it might just not boot :p
11:54.13vawxmaybe it's magical and fix all the errors
11:54.19phhyeah... no.
11:54.25phhit's not that good.
11:54.29vawx:P
11:54.43phhvawx: still not crashed ?
11:54.54vawxstill booting
11:55.08phhshould work properly then
11:55.20phhvawx: you still have no adb/telnet/terminal ?
11:55.33vawxno :(
11:55.37phhbah
11:55.39phhyou have taskiller ?
11:55.47vawxnot atm, but can install
11:55.56vawxi do have a terminal, but SU doesn't work
11:55.59*** join/#htc-linux stickboy (n=anonymou@5ac091a0.bb.sky.com)
11:56.02phhdon't need su
11:56.04phhjust do free
11:56.10vawxand adb still doesn't see the device and telnet needs login
11:56.25vawxi think the booting froze
11:56.54phhit doesn't reboot by himself ?
11:57.03vawxno
11:57.20phhbah
11:57.23vawxstuck at the part after A N D R O I D
11:57.53vawxi'll try again, might be related to creating new data.img
11:57.53phhah.
11:58.39phhif it still doesn't work try adding mem=180m
12:02.06*** part/#htc-linux rmoravcik (n=rmoravci@ip-89-102-141-60.karneval.cz)
12:02.07GlemSomphh, I've got requests to split-up the zImage and modules to save brandwith... (So people can just download the zImage, and leave the modules alone)... But iirc that would be a pain since the module versions would be wrong (And refuses to load?) and the users will have to rename the module-KERNEL_VER.tar.gz archive by hand then(To match KERNEL_VER)....Correct me if I'm wrong here please
12:02.32vawxYOUR bandwidth or theirs?
12:02.35phhyou can separate the archive it's no problem :p
12:02.37phhvawx: their
12:02.51vawxit's only 5mb :P
12:03.05vawxaltough i can't judge, i have no idea what a limit is like
12:03.05phhGlemSom: just have a column zImage and one modules on the same line then
12:03.06phh*but*
12:03.12phhGlemSom: you can strip the modules
12:03.20phhthis might save a lot of space :p
12:03.27vawxwweee kernel panic
12:03.50GlemSomphh, Wont the module version be wrong then?
12:04.04phhGlemSom: if the modules are the one built with the zImage it's fine
12:04.11phhbut if it's another version it won't work yes
12:04.18phhbut users aren't that stupid...
12:04.20phhare they ?
12:04.24vawxactually...
12:04.26vawxyes
12:04.28parmasterstrip just removes junk within the files
12:04.32GlemSomphh, uhhhm.....?!?! I think :P
12:04.55GlemSomDo you use gdb or something to debug? Cause stripping would break that?
12:04.58phhparmaster: it will save a lot of space :p
12:05.01phhGlemSom: not on the kernel
12:05.03parmasterphh: yep
12:05.16parmasteryeah, stripping you would lose symbols etc.
12:05.23phhGlemSom: do only strip --strip-debug,
12:05.53GlemSomphh, So, just so we're clear here... The modules NEEDS to be compiled to the zImage they're gonna be loaded with - anything else will fail - right?  (Like using an older versions of the modules, with a newer zImage)
12:06.10parmasteryeah its linux
12:06.21vawxdoes messing with android somehow influence wimo?
12:06.29phhGlemSom: not exactly, just the version string is checked
12:06.37vawxcause my install is all slow and unresponsive
12:06.39phhbut well, let's assume it is.
12:06.41GlemSomphh, Will insmod ignore that?
12:06.43phhvawx: reboot ? :p
12:06.55parmastermodprobe?
12:06.56vawxin general, njot just now
12:07.02phhvawx: ah
12:07.06phhvawx: I don't think so
12:07.08GlemSomI think the init script uses insmod... ?
12:07.31parmasteroh, then you're probably in trouble
12:07.37phhparmaster: bah why ?
12:07.54parmasterwell i dunno i guess theres maybe flags you can feed it
12:08.44parmasteri don't know the symantics of insmod
12:09.10parmasterwhenever a kernel modules failed for me i just used modprobe to work around that
12:10.21phhI need agood IME.
12:10.43phhparmaster: I hate blackmagic :p
12:10.52phhI prefer tools that do only what I want them to do.
12:11.14phhGlemSom: ok. compiler doesn't help.
12:11.15phhbbbbbaaahhhhhhhh
12:11.20phhtime to eat.
12:11.28GlemSomphh, Finaly got it downloaded.... :P
12:11.59GlemSomphh, Maybe it'll be a good idea to use 2009q3 anyway?
12:13.23vawxphh: adding mem=180m doesn't help either, just froze again but without panic
12:13.50vawxso guess it's diamond stuff for now :p
12:17.08parmasterwhat phones you guys running?
12:18.50vawxTouch Diamond 2 (aka Topaz) here
12:37.33GlemSomphh, When you have the time, could you please commit: http://glemsom.anapnea.net/android/strip-modules.patch ?
12:38.39*** join/#htc-linux nozze (n=weechat@u193-11-162-41.studentnatet.se)
13:07.56*** join/#htc-linux GNUtoo (n=GNUtoo@host179-151-dynamic.11-79-r.retail.telecomitalia.it)
13:13.14phhGlemSom: done
13:18.38*** join/#htc-linux magnus1 (n=magnus@94.234.132.224)
13:26.30*** join/#htc-linux TuxBrother (n=this@ip54506452.adsl-surfen.hetnet.nl)
13:26.43magnus1if i have a HTC Blackstone / HTC Touch HD, how well will android run on it?
13:26.54magnus1i cant seem to find any info on installing android on my phone
13:27.03magnus1just for other models, like dream, raphaell, leo, diamond etc
13:27.30phhdownload http://htcandroid.xland.cz/Eclair-2009-12-28b.7z
13:27.38phhextract it to the root of your sdcard
13:27.42phhedit startup.txt
13:27.58magnus1okay, who build that phh ?
13:27.59phhchange mtype to 1951
13:28.04phhlaunch haret.exe
13:28.04phhme
13:28.21phhwell, it depends on what you call "build".
13:28.30TuxBrothercan i ask a noobish question? can't find it on the forums
13:28.32magnus1cool.. is HTC blackstone similar to another HTC device? or what codebase did you use?
13:28.36*** join/#htc-linux Markinus (n=Miranda@gtng-4db04508.pool.mediaWays.net)
13:28.39phhTuxBrother: bah ask
13:28.55phhmagnus1: similar to raphael/diamond/rhodium/topaz
13:29.00TuxBrotheris it possible to port maemo to the tilt 2?
13:29.33phhTuxBrother: yes
13:29.55phhconvert their root, to an ext2 rootfs.img, boot it and fix what's wrong.
13:30.13TuxBrotherok
13:30.25TuxBrotherwhere can I get their root?
13:31.20TuxBrotherit's armv7 ain't it? is it backwards compatible?
13:31.25magnus1phh: ok, cool! so what differs blackstone from the mentioned devices? you dont happen to have a URL describing how you put together that package do you?
13:31.39magnus1im interested in building my own kernel etc, helping out with device development
13:31.40phhTuxBrother: yes it's armv7 and yes backward compatible
13:31.45phhTuxBrother: use smartq5 root
13:32.03phhI know no doc
13:32.19phhand what differs is basically the LCD controler, and the buttons
13:32.22phhand I think that's it
13:32.32magnus1alrite
13:32.36phhfor comparing with raph/diam I mean
13:32.36TuxBrotherphh: ok
13:32.49phhfor rhod/topa there are some little other ground changes to communicate with the modem
13:33.03TuxBrotherwhere can i download smartq5 root? google talks about Mer or something
13:33.27magnus1i see,.. where did you find the kernel for this eclair package then phh ?
13:34.11phh"find" isn't the exact word :p
13:34.13phhhttp://gitorious.org/linux-on-qualcomm-s-msm
13:35.33magnus1thanks
13:35.42TuxBrotherphh: i can't find a Maemo 5 rootfs for Q5
13:35.56phhTuxBrother: well it's Mer that you want
13:36.14TuxBrotherok...
13:36.19TuxBrotherwhy no maemo?
13:36.28phhhttp://stskeeps.subnetmask.net/mer/0.16/mer-armel-smartq5-rootfs-v0.16.tar.gz
13:36.34phhmaemo is afaik only for nokia devices
13:36.39phhbecause of some closed-source drivers
13:37.03TuxBrotherthank you ;)
13:37.09phhhttp://stskeeps.subnetmask.net/mer/0.17testing4/mer-armel-generic-image-v0.17testing4.tar.gz
13:37.12phhyou can also try this one
13:37.20TuxBrotherok :)
13:37.25TuxBrothermaking a rootfs now
13:37.45TuxBrotherno ext3?
13:38.02phhmmmm
13:38.11phhI've always done ext2 for a sdcard
13:38.25TuxBrotherok :)
13:38.26phhbecause journal on an sdcard isn't really good
13:38.34phhbut I've never seen any actual problem
13:39.04*** join/#htc-linux AndreMetzen (n=AndreMet@76.73.16.26)
13:39.36TuxBrotheroke, luckly I've got a fiber connection here :)
13:39.48phhGlemSom: I need buildlogs even when the build fails :p
13:39.50*** join/#htc-linux DarkMasterHalo (n=DarkMast@modemcable187.118-80-70.mc.videotron.ca)
13:39.54phhTuxBrother: uh ? why ?
13:40.10TuxBrotherdownload time of packages ;)
13:40.46TuxBrotherok
13:40.59TuxBrothercopying test 4 to my storage card now
13:41.02AndreMetzeni cant run android on my TP2, anyone can help me?
13:41.14*** join/#htc-linux m1dlg (n=m1dlg@bb-87-81-252-83.ukonline.co.uk)
13:41.56phhAndreMetzen: any more precise thing that "can't run" ?
13:43.17AndreMetzensure, i tryed many build so far... each one had stop on a diferent step
13:43.29phhthat doesn't help :p
13:47.09*** join/#htc-linux Nozze_ (n=weechat@u193-11-162-41.studentnatet.se)
13:47.51AndreMetzenhehe, I downloaded the latest build of android 2.0.1 from xda-developers to rhodium. apparently went well, but was stopped for a couple hour in a splash screen with an X animating
13:48.37AndreMetzenand now I'm testing an older version in hopes of getting some success
13:49.57phhif they have the same problems as I have (and I think so.), you'll have to restart maybe five times to get it booted successfully
13:50.05phhbut once he started correctly at least one time, it's ok
13:51.30AndreMetzenI ran a version of 1.6, but the touchscreen did not work right, leaving unusable
13:51.49phhuse the correct msmts_calib param
13:51.58phhreverted axes I'd guess ?
13:52.17TuxBrotherhmmm
13:52.26TuxBrother0.16 works flawlessy
13:52.31AndreMetzenI tried to change the value that they suggested, but without success. (
13:52.35phhTuxBrother: even touchscreen ?
13:52.39TuxBrotheryrd
13:52.45phhTuxBrother: yrd ?
13:52.45TuxBrother*yes
13:52.47phhah
13:52.49phhhuhu
13:52.53phhthat sounds weirD.
13:52.55phhd*
13:52.57TuxBrotherbut 0.17t4
13:53.04TuxBrotherhas a frozen touchscreen
13:53.16phh~xfbdev-tslib
13:53.16*** join/#htc-linux cefn (n=cefn@host81-151-123-198.range81-151.btcentralplus.com)
13:53.19TuxBrotherbut I could get through the first boot wizzard
13:53.22phh~tslib-xfbdev
13:53.23aptwell, tslib-xfbdev is TSLIB_TSDEVICE=/dev/input/eventX ts_calibrate ; Xfbdev -mouse tslib,,device=/dev/input/eventX -keybd keybd,,device=/dev/input/eventX
13:53.36phhTuxBrother: use this command to start X and calibrate touchscreen
13:53.45phhcheck /sys/class/input to know which eventX it is
13:53.52phhiirc it's event2
13:54.19GlemSomphh, Ahh crap, I forgot to delete a lock file when I was testing out the stripped modules... Sorry... It should recompile any minute now.
13:54.36phhGlemSom: still, I often do mistakes, and I get no log
13:54.49TuxBrothertslib-xfbdev is TSLIB_TSDEVICE=/dev/input/event1 ts_calibrate ; Xfbdev -mouse tslib,,device=/dev/input/event1 -keybd keybd,,device=/dev/input/event1
13:54.51GlemSomphh, I see your point...
13:54.52TuxBrotherlike so?
13:55.04phhTuxBrother: not the "tslib-xfbdev is" part :p
13:55.13TuxBrotherok
13:55.26TuxBrother"TSLIB_TSDEVICE=/dev/input/eventX ts_calibrate ; Xfbdev -mouse tslib,,device=/dev/input/eventX -keybd keybd,,device=/dev/input/eventX"
13:55.28parmasterwhats the latest kernel version?
13:55.32TuxBrotherthis one?
13:55.36GlemSomphh, I thought you NEVER made mistakes... :P
13:55.37phhparmaster: which tree?
13:55.53parmasterhtc msm i guess
13:55.58phhGlemSom: bah, in my ~ 50 commits of this holidays, three were build fixes :p
13:56.01*** join/#htc-linux fish1209_ (n=fish1209@174-21-184-82.tukw.qwest.net)
13:56.12phhparmaster: seeing the name of the channel, I would have thaught so.
13:56.43parmasterwas just curious if you know off the top of your head
13:58.31phhI don't even know your board ...
13:58.39AndreMetzenphh: again without success. an older version of 2.0.1 in bootload stopped with the message 'msm_blackstone_pad: loaded'
13:59.11phhAndreMetzen: in startup.txt, what is the mtype ?
13:59.13phh2293 ?
13:59.15parmasteroh i meant for your diamond with the kick ass power management
13:59.35phhoh
13:59.51phhhttp://cri.ch/sven/zImage_svenk_20091231_002
13:59.54AndreMetzenphh: yep. 2293
14:00.18phhAndreMetzen: try with the zImage in http://zimages.googlecode.com/svn/trunk/autobuild_system/htc-msm-android/zImage-modules-20091231_150020.tar maybe
14:00.41AndreMetzenphh: ok, downloading...
14:00.52phhparmaster: the diff is supposed to be http://cri.ch/sven/changes.txt
14:01.03parmasterthanks!
14:01.22DarkMasterHaloDon't tell me we got an awesome power management for Diamond devices !
14:01.43phhDarkMasterHalo: we just don't know how.
14:01.45AndreMetzenthis kind of 'fun' can brick my phone?
14:01.50phhAndreMetzen: no
14:01.55DarkMasterHalophh:
14:02.01AndreMetzenuff! :)
14:02.08DarkMasterHalophh: Oups, ahah oh well, I'm sure you guys will figure it out.
14:02.11phhAndreMetzen: well, some blac users reported some problems
14:02.18phhAndreMetzen: but it seems it's because their device can't sustain heating.
14:02.47phhparmaster: use it with pm.sleep_mode=1
14:02.50AndreMetzenGood to know, I put in my freezer:)
14:02.52phhto have really awesome PM management
14:03.15*** join/#htc-linux greebear (n=greenbea@dslb-088-078-216-216.pools.arcor-ip.net)
14:03.18FuZi0ngood morning
14:03.34greebearmoin
14:03.44phhFuZi0n: you sent me a dm file yesterday ?
14:03.56FuZi0nyes
14:04.00DarkMasterHaloGotta try this zImage
14:04.10phhFuZi0n: you removed the battery to reboot ?
14:04.17FuZi0nuh
14:04.17FuZi0nyes
14:04.23phhdon't /o\
14:04.30FuZi0noh whut
14:04.36phhuse the red button, else dm files will be broken
14:04.44phhthe one you sent me is just empty :p
14:04.53phhI mean it has 0x00 and 0xff bytes and that's all
14:05.06FuZi0noooh
14:05.07FuZi0nright.
14:05.08FuZi0nokay
14:05.46AndreMetzenphh: I tried to xImage you gave me, and gave the same error. =/
14:06.15phhAndreMetzen: it's rhod100 ?
14:06.39phhor it's some weird device ?
14:06.48AndreMetzenphh: how can i see this model?
14:07.00phhbehind the battery
14:07.06AndreMetzen1 sec
14:07.27AndreMetzenHtc Touch Pro2 T7373 RHOD100
14:07.34phhhum.
14:07.40phhI don't get it then.
14:07.56phhoh well you're supposed to use mtype 2292
14:08.03phhbut still there is no reason it doesn't work with 2293
14:08.08phh(2293 is TD2)
14:08.29AndreMetzencan i change to 2292 and try? =)
14:08.47phhyes
14:08.57AndreMetzen:)
14:08.59phhbut I don't think it will change anything
14:09.03AndreMetzensorry for the noobie questions
14:09.39phhI've seen worst noobs.
14:10.50AndreMetzenjust curious ... where you are? and how much a tp2 there?
14:11.21phhfrance
14:11.26phhwhat do you mean with "how much" ?
14:11.41AndreMetzensorry, how much it cost?
14:11.58phhway too much for me.
14:12.14phhsomething like 400€ iirc
14:12.32magnus1phh: how long is haret.exe suppose to take? i extracted your package to my sd, edited STARTUP.TXT with the new mtype, and ran it. a progressbar labelled 'booting linux' completed, and now the device is unresponsive (still showing Windows mobile)
14:12.33phhcomparing to my goold old diamond which costed me 150€, and has almost the same hardware ...
14:12.46phhmagnus1: sounds like wrong mtype
14:12.53phhthis progressbar shouldn't take more than 10seconds
14:13.11magnus1okay
14:13.15magnus1the progressbar completed,
14:13.21magnus1but nothing more happens
14:13.27phhAndreMetzen: hum, most something like 550€ it seems
14:13.29AndreMetzenphh: há! parece que consegui passar daquele problema com o mtype 2292! :)
14:13.40phhAndreMetzen: in french or english it means ? :D
14:13.41AndreMetzenops!
14:13.52AndreMetzenphh: there! seem to get past that problem with the 2292 mtype! :)
14:14.02phhseems really strange
14:14.10AndreMetzensorry, my english is bad! :
14:14.14AndreMetzen=)
14:14.21phhthat was no english I think :p
14:14.51phhand no problem about english, I think mine isn't good either :p
14:15.08magnus1phh: does haret check mtype (machine type?) with the hw before doing anything? will it warn me if im trying to use an invalid mtype on my hw?
14:15.09AndreMetzenhhaha, you're right. is Portuguese.
14:15.25phhmagnus1: no :'(
14:15.48FuZi0nphh now it didn't crash.
14:15.53phhFuZi0n: lol
14:15.57FuZi0nit's weird
14:15.58FuZi0n:P
14:15.59magnus1is there a list of mtypes somewhere?
14:16.04phhFuZi0n: how much free memory ?
14:16.07phhmagnus1: yup, source code :p
14:16.15magnus1ah, ok, haret source?
14:16.18AndreMetzenwaiting for the animation in X, hope it works this time!
14:16.18FuZi0nyesterday first time it crashed, then full boot, then crash, and now full boot
14:16.20phhno, kernel source code
14:16.20FuZi0nwhere do i see that phh
14:16.23DarkMasterHaloOh damn, I love this bootscreen :)
14:16.33phhFuZi0n: no adb, no terminal, no telnet I guess ?
14:16.42*** join/#htc-linux ulaas (n=ulaas@88.253.22.236)
14:16.47parmasterare all of you running diamond 2's?
14:16.52phhno I have diamond 1.
14:16.57FuZi0nblackstone
14:17.00DarkMasterHaloI have diamond 1
14:17.05Markinusphh FRD666 hast tested A2DP and there is sound on BLuetooth! ;-)
14:17.10AndreMetzentouch pro 2
14:17.12phhMarkinus: good :)
14:17.24phhDarkMasterHalo: the best! (ok actually the worst.)
14:17.28FuZi0n3g working too
14:17.51DarkMasterHalophh: Hey hey, nah with Android it is the best.  It has the best shape :)
14:18.13phhDarkMasterHalo: well, until now I needed a double sized battery, so not really.
14:18.22phhbut now I think I'll be able to get back to the little one :D
14:19.07AndreMetzenthis animation X is killing me! takes a long time! and every time she stops, and I think it will go to the next step and it begins again!!!!
14:19.17phhAndreMetzen: hehe
14:19.20DarkMasterHaloI hope so, there is only the SMS problem for me and power management that keeps me from using Android but now if power management is good I'm jumping
14:19.21phhAndreMetzen: first boot uh ?
14:19.28AndreMetzenphh: yes
14:19.30phhDarkMasterHalo: can't send sms ?
14:19.35phhAndreMetzen: yup this one is *really* long.
14:20.13DarkMasterHalophh: I've tried everything, every solution, it is like it can't read the SMSC number for some reason.  But I can receive them so it makes no sence to me.
14:20.32phhthere is no need for SMSC number to receive sms'
14:20.34AndreMetzenphh: no problem! if it works I have patience to wait 24 hours!
14:20.43phhAndreMetzen: lol
14:20.49phhAndreMetzen: it shouldn't take more than 10minutes
14:21.04AndreMetzenbetter!
14:21.06AndreMetzen=)
14:22.03DarkMasterHalophh: Hmmm, I don't know if there is better power management in the zImage from Svenk but you have to boot with the USB cable for it to charge properly.
14:22.08FuZi0nabduction yay
14:22.16phhDarkMasterHalo: yes I know
14:22.22phhthat's a complete different story
14:22.23DarkMasterHalophh: But so far, it is a brick of ice :)
14:22.26phhFuZi0n: still on that ? :p
14:22.27AndreMetzenI am very excited to run the android! I'm developing some applications for it and wanted to test on a real device. That sdk emulator sucks!
14:22.29FuZi0nyeah
14:22.30FuZi0n:P
14:22.38phhAndreMetzen: still not booted uh ?
14:22.48phhAndreMetzen: I'd need some app dev.
14:22.48AndreMetzenphh: nopz
14:23.11AndreMetzenphh: what kind of app?
14:23.18phhfor all device-specific stuff
14:23.25phhsetting wakeup buttons for instance
14:23.52phhmaybe also something to manage stylus detection
14:24.16phhmaybe something for light/proximity sensors
14:24.22phhwell lot of fun, but I just hate java :p
14:24.36DarkMasterHalophh: Ok, I'll keep it running and will try to turn on-off wireless sometimes to see how good is the power management :P
14:24.52phhDarkMasterHalo: wifi just don't work
14:25.00phhthat's part of the fix
14:25.21AndreMetzenphh: hum .. I'm starting with the android. but can you search and if I have any information to help, help you for sure!
14:25.31GlemSomphh, I will look into pushing logfiles out, even though a compile failed... Though, this will require some structure changes in my system - so I will not have it done by today! (As it is now, everything is build about a working package(logfiles, timestamps, moduels etc all linked to that... And, I assume if a compile failes - it's due to a failure in the autobuild system - which you've correctly made me aware of,
14:25.31GlemSom<PROTECTED>
14:25.32DarkMasterHalophh: Ahhh, so maybe wifi was draining a lot of power then.
14:26.00phhGlemSom: ok
14:26.16phhDarkMasterHalo: no, "just" prevents the system from sleeping.
14:26.58phhwhile with this zImage the cpu is sleeping more than 99.6%
14:27.10phh(true value !)
14:27.47AndreMetzenphh: hey! just look here and it seems to have some classes to handle sensors. should not be something hard! :)
14:27.53DarkMasterHalophh: So wifi prevents the CPU from sleeping.
14:28.01phhAndreMetzen: not for you, sorry :p
14:28.13phhyou have to wait for wiggleraway's driver
14:28.22phhDarkMasterHalo: I think it's BT actually :D
14:28.42AndreMetzenargh! spoiled my happiness! =/
14:29.05phhAndreMetzen: no abduction for you yet, sorry :p
14:29.11*** join/#htc-linux ICEMANno1 (n=ICEMANno@p5B301EC6.dip0.t-ipconnect.de)
14:29.32AndreMetzenphh: still in amination x =/
14:29.37FuZi0nabduction for me yay
14:29.37FuZi0n:p
14:29.40DarkMasterHalophh: It uses the same chip, antenna ?
14:29.56phhDarkMasterHalo: not same chip, but some common GPIOs
14:30.01phhmaybe some antenna, don't know
14:30.21phhso when you wake up wifi, if you don't do it correctly, you wake up BT as well
14:30.40phhand we don't do it correctly :p
14:30.41DarkMasterHalophh: Makes sence if it shares the same GPIOs
14:30.52*** join/#htc-linux cefn1 (n=cefn@host81-151-123-198.range81-151.btcentralplus.com)
14:31.29DarkMasterHalophh: Did you figure out how to turn off BT ?
14:31.41phhDarkMasterHalo: echo 0 > /sys/class/rfkill/rfkill0/state
14:31.42phhbut guess what
14:31.44phhit kills wifi :p
14:32.08DarkMasterHaloAaha
14:32.18DarkMasterHaloSeems they are stuck together for the moment.
14:32.36phhyup.
14:33.10AndreMetzenI'm almost throwing my tp2 the window!
14:33.19DarkMasterHaloI'm wondering how Wifi-BT is handled in Windows mobile because when I use Wifi in WM it heats up my device quite fast, so I tend to never use it.
14:33.50phhDarkMasterHalo: bad I think, when using wifi on android it doesn't heat that much
14:34.41DarkMasterHalophh: That's what I noticed too, so I guess there could be a problem here (with the hardware I mean)
14:35.09phhbah if in android it's ok, then it's wimo's driver :p
14:35.28DarkMasterHaloHmmm bad htc :)
14:36.31vawxwhy is the console reporting stuff about a .bin file i have on my storage card...
14:36.51phhvawx: uh ?
14:37.30vawxit's doing "something"
14:37.33vawxtakes a long time too
14:37.50*** join/#htc-linux DJWillis (n=djwillis@82-46-19-72.cable.ubr02.bath.blueyonder.co.uk)
14:37.51vawx"truncating file to ... bytes"
14:38.06phhyour FAT has been screwed.
14:38.21phhbut fsck is a nice guy he "repaired" it
14:38.43DarkMasterHaloWhy can't it be a nice girl :)
14:38.51vawxor a nice it?
14:38.59phhlol
14:39.07DarkMasterHaloYeah true.  If you it that way.
14:39.13DarkMasterHalosee it*
14:39.22AndreMetzenphh: stuck on x animation again... argh! =/
14:39.35phhAndreMetzen: really ? strange
14:39.44phhnot impossible though
14:39.57DarkMasterHaloAndreMetzen: Have a tried deleted the data.img.
14:40.16DarkMasterHalodeleting*
14:40.23AndreMetzenDarkMasterHalo: just delete and try again?
14:40.31*** join/#htc-linux TuxBrother (n=TuxBroth@ip54506452.adsl-surfen.hetnet.nl)
14:40.32phhDarkMasterHalo: I think fsck deleted it by himself :p
14:40.45TuxBrotherno luck with Mer :p
14:40.53phhTuxBrother: what do you mean ?
14:41.03TuxBrotherI've got a whole bunch with ext2 error messages
14:41.06DarkMasterHalophh: Maybe it would just repair it but I guess just rename it and see what it does.
14:41.07AndreMetzenDarkMasterHalo: I can try. I have nothing to lose.
14:41.14phhTuxBrother: bah it's not a problem :p
14:41.15phhjust run fsck
14:41.16DarkMasterHaloAndreMetzen: Just rename it and see.
14:41.31AndreMetzenDarkMasterHalo: ok... 1 sec
14:41.42TuxBrotherI can login
14:41.58TuxBrotherbut I cant startx : command not found
14:42.05*** join/#htc-linux DJWillis (i=djwillis@82-46-19-72.cable.ubr02.bath.blueyonder.co.uk)
14:42.16phhTuxBrother: ask on #mer, I don't know much about it :/
14:42.33TuxBrotherno
14:42.38TuxBrotherthe problem must be
14:42.41TuxBrotherin the kernel
14:42.48DarkMasterHalophh: I can tell you so far, the pwm is awesome :)
14:42.48TuxBrotherprevourius kernels works
14:42.53phhpwm ?
14:43.11DarkMasterHalopower management
14:43.18phhok
14:43.39phhlet the phone in sleep for 10hours
14:44.00phhyou'll have some fears about battery indicator :p
14:44.02AndreMetzen<PROTECTED>
14:44.15DarkMasterHalo10 hours !, without touching Android :(
14:44.23phhDarkMasterHalo: when you sleep ? :p
14:44.34phhAndreMetzen: huhu
14:44.51DarkMasterHalophh: Oh well yeah, in about 10 hours, I'll got to sleep
14:44.56phh:)
14:45.12DarkMasterHalophh: So I'll have the results in 20 hours .....
14:45.32vawxphh: now sound on bluetooth works... does it mean that to get sound working on the speaker you just have to find the right "route" or is it a lot more complicated?
14:45.42phhvawx: lot more complicated.
14:46.04phhsound on BT is really easy
14:46.09phhit's 100% in the processor APP
14:46.20phhsound on speaker/headset is 99% in the MODEM processor.
14:46.27vawxi see
14:47.07AndreMetzenDarkMasterHalo: wow! I'm doing with the boot data.img renamed and is showing a huge log before start. Something like "Bad file name. Auto renaming it. Renaming to 765/000 ....."
14:47.30DarkMasterHaloHey hey, In the phone information, it tells me the model number T-Mobile G1 !
14:47.58DarkMasterHaloAndreMetzen: Ahah, I guess you will to get it out of the phone if it doesn't work.
14:48.37phhDarkMasterHalo: if that matters it's in system.sqsh/build.prop
14:48.50AndreMetzenI did not get
14:48.58phhI might do some android kitchen one day.
14:49.49DarkMasterHalophh: Nah, its just really funny to see, I have a G1 !
14:49.55phh:)
14:50.55DarkMasterHaloHey, you guys fixed the dialer touch pad problem ?, because for me its fixed.
14:51.10*** join/#htc-linux TuxBrother (n=this@ip54506452.adsl-surfen.hetnet.nl)
14:51.15phhDarkMasterHalo: which one is it ?
14:51.54AndreMetzenI GIVE UP! the android does not like me, in any of its versions!
14:51.59DarkMasterHalophh: When you try to dial a phone number, when I was pressing a number it was fine, as soon as I pressed a second one, Android was crawling.
14:52.12DarkMasterHaloAndreMetzen: What phone do you have ?
14:52.25AndreMetzenDarkMasterHalo: Rhodium
14:52.52DarkMasterHaloIs Rhodium supported yet with Eclair ?
14:53.46phhit should
14:54.18phhAndreMetzen: maybe try my build , who knows .... you might get lucky
14:54.18phhhttp://htcandroid.xland.cz/Eclair-2009-12-28b.7z
14:54.19DarkMasterHaloAndreMetzen: Maybe you've got the wrong mtype, or maybe some files are corrupted there.
14:54.25AndreMetzenDarkMasterHalo: I downloaded a build to rhodium in the xda-developers
14:55.01AndreMetzenphh: downloading...
14:55.28phhdon't forget to change the mtype when trying it
14:55.40phhand use the same zImage as I told you to use before
14:56.18AndreMetzenTime for lunch here. I'll come back, hope you're here! :)
14:56.43DarkMasterHalophh: Hey, the Data.img file, it is 256MB in size but does it grow as we put stuff in it ?
14:57.22phhDarkMasterHalo: no
14:57.43phhand I can't see any easy way to do that
14:58.01DarkMasterHalophh: Ok, just wondering if we can hit that problem one day.
14:58.39phhno really, i'm usually quite imaginative for such things, but for this thing ....
14:58.45*** join/#htc-linux teh_eb (i=ebcain@cpe-24-210-123-84.insight.res.rr.com)
14:59.23DarkMasterHaloOkay, oh man it is snowing outside again :(
14:59.31phhwe switch ? :D
14:59.54DarkMasterHaloWTH, after two winter you will want to switch again :P
15:00.41DarkMasterHaloDon't you have snow too where you live ?
15:01.00phhless than one week with snow on ground per year
15:01.08DarkMasterHalo!
15:01.33DarkMasterHaloWow, it is snowing here about 3-4 days a wekk.
15:01.34vawxit's rare
15:01.35DarkMasterHaloweek*
15:01.39*** part/#htc-linux ali1234 (n=al@robotfuzz.co.uk)
15:02.08vawxwe had a huge amount of snow last week, a whopping 40 cm's! :P
15:02.12DarkMasterHaloOne time we got like 25cm of snow in one day then another 30cm the next day.
15:02.24phhyou lucky.
15:02.47DarkMasterHaloDamn, I wanted to yell outside, my car was stuck in that stupid snow, freezing at -35c
15:04.31Markinusphh: I posted this here, maybe you have a Idea? . .  http://forum.xda-developers.com/showpost.php?p=5257152&postcount=1435
15:05.22MarkinusP.S. we have snow too, 5 cm . . But for middle in germany is this much! ;-)
15:06.14DarkMasterHaloI always find it funny to see how it is so different outside of different countries :)
15:13.19phhMarkinus: I was already aware of that, and no, no idea.
15:16.07AndreMetzenphh: hi again!
15:16.21Markinuson the older kernel we could make a call bur hear only on one side. We changed something, but what . . hmmmm
15:16.21phhAndreMetzen: mm ?
15:16.56AndreMetzenphh: im trying your build. and i'm getting a lot of errors like "end_request: I/O error, dev mmcblk0p1..."
15:17.15phhAndreMetzen: ouch
15:17.32phhAndreMetzen: change your sdcard :p
15:17.39phhor underclock it
15:17.42AndreMetzenphh: but its not the first build i get this errors
15:17.48AndreMetzenunderclock?
15:18.04phhadd msmsdcc_fmax=10000000 to your cmdline in startup.txt
15:18.14AndreMetzenok
15:20.32AndreMetzenphh: so far so good
15:20.51phhif you still got some mmc errors, add msmsdcc_1bit
15:21.22AndreMetzenok
15:23.31AndreMetzeni get some "mmc0: command timeout"
15:23.40phhthese are normals
15:24.07AndreMetzenok... now i'm on the x animation :)
15:27.27AndreMetzenphh: WOW! it works!
15:27.32phhcool.
15:27.53AndreMetzenphh: but the screen is rotate
15:28.18AndreMetzenops, not anymore =)
15:28.26phhit's some stuff with the keyboard
15:28.33phhI've none so I can't say how this is supposed to behave
15:28.51vawxphh: good news...
15:28.54vawxadb working
15:29.02AndreMetzenno touchscreen
15:29.08AndreMetzen=/
15:29.09phhvawx: aand you changed what ?
15:29.13phhAndreMetzen: you're sure ? :p
15:29.17phhAndreMetzen: you're on the android logo ?
15:29.26vawxphh: i actually loaded markinus kernel v11 just now
15:29.29vawxwith donut
15:29.37vawxcould be that the donut part is more important... :P
15:29.47vawxbut i'm in adb shell now
15:30.09AndreMetzenphh: i pass this logo... but cant procced
15:30.34phhFuZi0n: oh btw, if you can get adb/terminal/telnet working, I'll try to get backlight off working
15:30.51phhAndreMetzen: oh, see rhodium's builds startup.txt for correct msmts_calib setting
15:31.05AndreMetzenphh: ok!
15:31.36AndreMetzenphh: should i remove the data.img? or just change de startup.txt and reboot?
15:31.48phhjust change startup.txt
15:31.53AndreMetzenthanks
15:33.50*** join/#htc-linux DarkMasterHalo (n=DarkMast@modemcable187.118-80-70.mc.videotron.ca)
15:34.15*** join/#htc-linux tornador (n=herpez@87-196-129-243.net.novis.pt)
15:36.55*** join/#htc-linux cyberdesigner (n=cyberdes@port-92-206-55-79.dynamic.qsc.de)
15:37.40AndreMetzenphh: touchscreen perfect!
15:39.51*** join/#htc-linux vawx (n=chatzill@ip54532c5f.speed.planet.nl)
15:40.31AndreMetzenhahahaha
15:40.47AndreMetzenphh: its working really fine!!!
15:40.56phhwhich build do you use now ?
15:40.58phhthe one I posted ?
15:41.04AndreMetzenphh: yes!
15:41.10phhcool
15:41.23AndreMetzenphh: its only rotate, but its not a bad thing! =)
15:42.16vawxhave you tried pulling out stylus?
15:42.37phhoh right I forgot that.
15:42.53AndreMetzenhahahaha
15:42.56AndreMetzenof course
15:43.11DarkMasterHaloPulling out the stylus when the device is on sleep doesn't wake it up.
15:43.15AndreMetzenmy stylus was out to put the sd card! =D
15:43.38vawxstylus is trigger for keyboard out iirc
15:43.39phhDarkMasterHalo: basically android sucks.
15:43.45phhvawx: not for diamond :p
15:43.58vawxoh thought it was a different device
15:44.12vawxrhod has the stylus trigger
15:44.14AndreMetzenops
15:44.23AndreMetzenit just turn off
15:44.29AndreMetzenautomatically
15:44.52phhAndreMetzen: wifi/data connection works ?
15:45.09AndreMetzennow not even the screen works
15:45.09AndreMetzenwait
15:45.12tornadorwhile trying to compile the modules, i get arm-none-linux-gnueabi-gcc: command not foun   i guess its PATH related, but i cant fix it...
15:45.43AndreMetzen=/ i have to soft-reset now =/
15:45.44phhtornador: export PATH=$PATH:/where/is/the/crosscompilator/bin/
15:47.20AndreMetzenif someday, android run on flashed on my device, would it run faster?
15:47.36tornadorphh: worked
15:47.55phhAndreMetzen: yes/no
15:48.11AndreMetzenphh: is this a maybe?
15:48.20phhcurrent eclair build is known to be slow, it can be faster, but not linked with the fact it is flashed
15:48.30phhflashing might help loading times, but that's it
15:48.45AndreMetzenhum
15:48.47AndreMetzenmakes sense
15:48.58AndreMetzentalking about sense... what about sense ui? =D
15:49.41phhI won't do that, but someones are trying to do that.
15:51.07tornadorall the compilling went good except at the end, with /build.sh: 18: pushd: not found
15:51.07tornadorarm-none-linux-gnueabi-strip: '*ko': No such file
15:51.07tornador./build.sh: 21: popd: not found
15:51.17phhtornador: use bash instead of sh
15:52.00ICEMANno1great with Markinus new kernel, i was able to call and listen ev
15:52.18ICEMANno1works great, except, no ringtone was apearing
15:52.35AndreMetzenphh: no wifi
15:52.51phhAndreMetzen: you copied the modules-xxxxxx.tar.gz file in the root of the sdcard ?
15:52.55phhwith the exact same name
15:53.20AndreMetzenphh: no! should i do that? =/
15:53.34phhfor wifi yes :p
15:53.40phhAndreMetzen: it means that data connection works ... ?
15:54.05AndreMetzenphh: im trying...
15:54.14phhok
15:54.27vawxphh: bluetooth on and off and on works
15:54.40phhvawx: not with my kernels I guess ?
15:54.43MarkinusICEMANno1: you cann call without a kernel crash???? TD2?
15:54.50vawxno, but i can try in a bit
15:54.50AndreMetzenphh: how can i set up the APN?
15:55.13vawxcalling? oh ill try that too then hehe
15:55.41phhAndreMetzen: haha, it's tricky whern you've never done it, settings -> wireless network -> mobile data connection (or something like that) -> access points (ok that's the easy part)
15:56.00phhthen press the menu button, and select new (or add, well you see what it means.)
15:56.07AndreMetzenhá!
15:56.12phhmenu button is the windows button I think for you
15:56.22AndreMetzenuhum
15:56.34*** join/#htc-linux ICEMANno1_ (n=ICEMANno@p5B301EC6.dip0.t-ipconnect.de)
15:56.37vawxMarkinus: freeze for me, so wonder how he did that
15:56.46ICEMANno1_yep, calling works
15:57.00phhwell you have only 4 buttons, three are obvious, so it's the fourth one :p
15:57.00Markinusdo you have a TD2??
15:57.05ICEMANno1_BT on/off works too, but pairing with my notebook didnt work
15:57.06phhICEMANno1_: which android build ?
15:57.12ICEMANno1yep, calling works
15:57.12ICEMANno1_yep topaz/td2
15:57.18ICEMANno1_phh: not yours :P
15:57.24phhICEMANno1_: sure, but again which one ?
15:57.29ICEMANno1_everything from Markinus
15:57.30phhI guess they haven't all the same rild.
15:57.47vawxidem here, but mine froze after 9 seconds
15:58.16Markinusyes ,thi s is a timeout . . he is waiting for response and then crashing after 10 secs.
15:58.23ICEMANno1mine didnt freez
15:58.29ICEMANno1and i tried it with an incoming call
15:58.32phhICEMANno1: give dmesg.
15:58.47ICEMANno1but i didnt try it for 10sec i gess
15:58.50Markinusdo yous use the complete package from me?
15:58.58AndreMetzendamn!
15:58.59ICEMANno1let me try again
15:59.02ICEMANno1Markinus: yes
15:59.05phhAndreMetzen: ?
15:59.06AndreMetzenhow can i turn off a calling?
15:59.13phhthe end key ? :p
15:59.24AndreMetzenthe end button doesnt work
15:59.30phhah.
15:59.30vawxpowe rkey
15:59.33phhremove the battery ? :p
15:59.36AndreMetzenhhaa
15:59.47AndreMetzenit turn off automatically
15:59.52vawxmagic
15:59.58AndreMetzenend button does not work
16:00.12ICEMANno1by the way, can we switch the top key with the "end call" key like a couple of weeks ago?
16:00.12AndreMetzennice way to discover tha
16:01.22*** join/#htc-linux pH5 (n=ph5@g229076001.adsl.alicedsl.de)
16:01.32ICEMANno1great
16:01.41ICEMANno1after 33sec i stopped :D
16:01.43MarkinusICEMANno1:I think so it'S becouse you can end a call with the same button as under winmo
16:01.52Markinusvery intresting . .
16:02.05vawxso iceman, with sound and mic?
16:02.09Markinuscan you send me your dm.txt please?
16:02.10ICEMANno1yep
16:02.14ICEMANno1yep
16:02.21vawxdid you do the wimo in call trick?
16:02.42ICEMANno1nope
16:02.51vawxbluetooth or phone?
16:02.57ICEMANno1phone
16:03.45ICEMANno1rebooting so i can download dm.txt
16:03.58AndreMetzenphh: data connection working!
16:04.11phhsounds weird, but cool.
16:04.18phhvawx: why didn't it work for you uh ? :p
16:04.24vawxi have no idea
16:04.40phhnever trust users.
16:04.41MarkinusICEMANno1: Whitch radio version du you have?
16:04.51phhbur when you don't have the phone, which user to trust ? :D
16:04.52ICEMANno1data worked too, which i will also recognize on my phone bill!
16:05.20MarkinusICEMANno1: BT/WLAN?
16:05.45vawx2nd try still freeze on mine
16:05.49vawxbt and wlan worked perfectly
16:05.50ICEMANno1BT just on/off, the pairing with my laptop didnt
16:06.03vawxexcept that finding services on my laptop is weird
16:06.08ICEMANno1WLAN just on/off, no networks found
16:06.19vawxdid manage to connect some phone audio thing... whatever tha tdoes
16:06.22ICEMANno1Markinus: can u pm me your emailadress
16:06.37phhit's an eclair build ?
16:06.42vawxdonut
16:06.44phhok
16:06.50phhI haven't been able to get BT working on eclair
16:06.59phhI don't try much though, but it seems a bit harder than donut.
16:07.12vawxshall i try your kernel on donut?
16:07.16ICEMANno1Markinus: my radio is 4.49.25.17
16:07.33phhvawx: bah it's good to see if there is anything that doesn't work the same as Markinus' kernel
16:08.12vawxiceman: same radio version here
16:08.14phhand you might even have a better PM with it.... or not.
16:08.20Markinushere too . .
16:08.44ToAsTcfhphh: did u see the logcat i posted for camera lastnight?
16:08.51phhToAsTcfh: yup
16:08.55vawxmaybe it's just cause i never call? and that wimo doesn't even remember how it works? :D
16:08.56ICEMANno1Markinus, phh want my dm.txt?
16:09.00ToAsTcfhthe second one
16:09.02phhICEMANno1: yup.
16:09.02ToAsTcfh?
16:09.08phhToAsTcfh: yes
16:09.14phhToAsTcfh: I read logs.
16:09.20ICEMANno1Markinus, phh then I need your email addresses
16:09.26phhphhusson@free.fr
16:09.26ToAsTcfhwhats it look like to u
16:09.27Markinuscan you send me directly here? Right mous on my name and send file?
16:09.30vawxpastebin.com is nice too
16:09.32phhToAsTcfh: wrong driver
16:09.36ICEMANno1true
16:09.40tornadori have  now the modules in one folder, and the wlan.ko in other, how do i move the compiled wlan.ko into the package with modules?
16:09.40phhvawx: yes it works too.
16:09.55ToAsTcfhkernel driver?
16:10.02phhToAsTcfh: or android driver
16:10.04phhit's a point of view :p
16:10.12ToAsTcfhlol
16:10.15ToAsTcfhhater
16:10.32ToAsTcfhany ideas?
16:10.43ToAsTcfh\my camera works in 1.5
16:10.50ToAsTcfhbut not 2.0
16:10.59ICEMANno1Markinus: DCC doesnt work for me here
16:11.03ICEMANno1didnt config it
16:11.14ToAsTcfhthey added the liboemcamera in 2.0
16:12.17ToAsTcfhso the only thing to do is to try and revert the driver for android?
16:12.21vawxphh: which kernel should i try?
16:12.23vawxlatest?
16:12.41phhmmm let's say yes.
16:12.44*** join/#htc-linux rmoravcik1 (n=rmoravci@ip-89-102-141-60.karneval.cz)
16:12.55*** part/#htc-linux rmoravcik1 (n=rmoravci@ip-89-102-141-60.karneval.cz)
16:12.56ICEMANno1http://pastebin.com/m26d0369e
16:13.06ICEMANno1here u go Markinus and pH5
16:13.10ICEMANno1here u go Markinus and phh
16:13.19ICEMANno1tell me if it helps
16:13.25Markinusthx!
16:13.26ToAsTcfhphh: so im doomed. lol
16:13.57phhToAsTcfh: really, you should use v4l2 driver, and write (or search, I guess there are already some) android v4l2 driver
16:14.30phhICEMANno1: nothing in it
16:14.50ICEMANno1phh: so what to do now?
16:15.28phhICEMANno1: just to be sure, you have the pwf dm.txt thingy in the startup.txt file, and after your call-test, you rebooted once again on android and only then sent dm.txt ?
16:16.01ICEMANno1nope
16:16.03ICEMANno1no reboot
16:16.18phhit's the way you have to do it if you have pwf dm.txt in startup.txt.
16:16.26ICEMANno1started android, tested it, returned into wimo and sent the dm.txt
16:16.26Markinusthis logfile is from other kernel ..  can you please boot a time more?
16:16.31Markinusthis isn-ät from my kernel
16:16.39ICEMANno1ahh, k :D
16:16.40phhbecause the logs you gave is from a kernel that has exited at ~ 1am
16:16.49ICEMANno1hmm, k :D
16:16.55ICEMANno1booting atm...
16:16.57vawxwhat you can also do is, now that adb works, adb shell and run dmesg from there
16:17.06phhvawx: well now that he rebooted he can't
16:17.10ICEMANno1ahh, adb works
16:17.11ICEMANno1great
16:17.16phhvawx: oh well, please try if adb still works with my kernel
16:17.24vawxkernel panic on your just now
16:17.30*** join/#htc-linux TuxBrother (n=this@ip54506452.adsl-surfen.hetnet.nl)
16:17.34phhok, try adding mem=107m
16:17.39vawxoh still have rootfs from markinus build
16:17.41ICEMANno1adb works, great!!!
16:17.42vawxdoes that matter?
16:17.46phhnot at all
16:18.23ICEMANno1how can i receive with adb the dm.txt?
16:18.28vawxadb shell
16:18.31vawxdmesg
16:18.33vawxcopy paste
16:18.37ICEMANno1k
16:18.44phhadb pull /sdcar/dm.txt .
16:18.45phhworks too
16:18.53vawxyeah but taht would be the old one
16:19.01phhbah it's the one we want :p
16:19.05vawxtrue
16:19.17vawxbut the dmesg can be done after call
16:19.23phhyes
16:20.23ICEMANno1http://pastebin.com/d66fd8cd5
16:20.25ICEMANno1here we go
16:21.51ICEMANno1and phh, Markinus ?
16:22.00Markinusthx!
16:22.43ToAsTcfhphh: which devices have used it? arm7?
16:22.51phhToAsTcfh: ?
16:23.15ToAsTcfhlike what devices have had it writen for it
16:23.44ToAsTcfhive been searching but i get salot of computers using it
16:23.50vawxphh: android is booting (boot logo)
16:25.08ICEMANno1Markinus, phh wlan works now!!!
16:25.13ICEMANno1BT still doesnt
16:25.55Markinuscan you enable BT? See you the devices?
16:26.00vawxok, phh you might want to check with markinus on the usb part
16:26.07vawxadb does not work
16:26.23Markinusyou have to have the cable in on boot . .
16:26.30vawxyes
16:26.48vawxbluetooth does not activate either
16:26.51ICEMANno1Markinus: yes, i can see the devices
16:27.07Markinusbut you cannot connect?
16:27.11ToAsTcfhphh: i just kinda want something close to start with building
16:27.11tornadoris the last kernel at glemsoms working or it gives reboot in 7sec_
16:27.13tornador?
16:28.17ICEMANno1Markinus: yes, it gets a problem on pairing
16:28.51Markinusdid you try a other device as PC? Headset or s`?
16:29.01ICEMANno1dont have another one :)
16:29.08Markinusok ;-)
16:29.49ICEMANno1phh, Markinus did the dm.txt help?
16:30.09MarkinusI'm looking now . .. need some time to compare. .
16:30.14ICEMANno1k :)
16:33.00ICEMANno1how can i kill some progs on android which are running
16:33.07AndreMetzenok, i'm really missing the end button =/
16:33.32ICEMANno1when i push the top button a couple of seconds, i can see the apps which are running
16:33.46TuxBrotherhey
16:33.51TuxBrotherthat happend me too
16:33.51AndreMetzenphh: do you know how can i get the end button to work?
16:34.49phhfix the code ! :p
16:34.59AndreMetzenshit! what code? =D
16:35.52vawxok phh, just to sum it up:  wlan=yes, bt=no, adb=no, 3g still testing
16:36.10phhAndreMetzen: board-htctopaz-keypad.c I guess
16:37.29AndreMetzenphh: if i extract those modules-xxxxxxx.tar.gz files now i have to delete the data.img?
16:37.37phh?!?
16:37.40phhdon't extract this fine
16:37.43phhjust put it in the root
16:37.47phhand no need to delete data.img
16:41.57tornadoris the last kernel doing the kernel panic message?
16:41.59AndreMetzenphh: i think that android is rendering outside the screen...
16:42.09AndreMetzenphh: you know why?
16:42.17phh?!?
16:42.28phhwith some precise app or something ?
16:42.51ICEMANno1hmm, wifi is not very stable
16:43.03ICEMANno1it just disconnected and could find any networks anymore
16:43.06*** join/#htc-linux ablack7_ (n=ablack7@96-28-145-156.dhcp.insightbb.com)
16:43.17ICEMANno1after a couple of enable/disables its connected again
16:43.18AndreMetzenphh: maybe the touchscreen its not well calibrate...
16:43.47phhMarkinus: ICEMANno1 has the timeout things, but still the kernel doesn't crash
16:44.27tornadorphh - if i compile the kernel from the git updated repo, will it give the kernel panic?
16:44.40phhToAsTcfh: it will give the same result as glemsom's kernel :p
16:44.55phhtornador: *
16:44.57phhnot ToAsTcfh.
16:45.24Markinushmm, on the end of the logfile.  ..
16:45.53tornadorphh - and anyone here tried the last glemsom kernel and can say me if it does the kernel panic message and reboot?
16:46.08phhtornador: for some people it works
16:46.11phhfor some other it crashes.
16:46.20phhI have absolutely no clue of why does it.
16:46.23ICEMANno1ahhh, how can i open a txt file on andoid from /
16:46.41ICEMANno1and the copy its content to clipboard
16:52.23phhtornador: pull again, I "fixed" it
16:54.43tornadorthanks phh
16:54.55phhI think I did at least
16:56.01tornadorphh - im building zimgae
16:56.18tornadorwere any change on the modules or can i use the ones i build 1h ago?
16:56.38phhno changes but you have to rebuild it though
16:56.58tornadorok
16:57.14phhif you want to use it.
16:57.51tornadorphh - just to know if im doing it right, i build the zimage, then i build the modules, then i build the wlan.ko, then i put wlan.ko in the modules and its done. or have i made any error...
16:58.14phhno it's fine
16:58.55tornadorphh - if i not build the modules, is just wifi that will fail?
16:59.30phhyes
17:00.54phhstill so black user around with adb or telnet or terminal around btw ?
17:01.06tornadorit has errors on it...
17:01.07tornadorarch/arm/mach-msm/built-in.o: In function `htcraphael_fixup':
17:01.07tornadorarch/arm/mach-msm/built-in.o: In function `blac_fixup':
17:01.19phhoops
17:01.20phhthanks
17:01.25tornadoralso in `htctopaz_fixup':
17:01.33tornadorand `htctrhodium_fixup':
17:01.49phhI always forget to check if it builds :D
17:01.58phheven if I can't see where i'm wrong
17:02.21tornadorwant the full error log?
17:02.24tornadorwith the lines...
17:02.47tornadorarch/arm/mach-msm/built-in.o: In function `htcraphael_fixup':
17:02.47tornadorarch/arm/mach-msm/built-in.o: In function `blac_fixup':
17:02.47tornadorarch/arm/mach-msm/built-in.o: In function `htctopaz_fixup':
17:02.47tornadorarch/arm/mach-msm/built-in.o: In function `htcrhodium_fixup':
17:02.47tornadormake: *** [.tmp_vmlinux1] Error 1
17:02.50phhaaahhhh
17:02.51phhok.
17:03.06phhI forgot to commit pmem.c
17:03.20tornadorwhen done say me and i will pull and build
17:04.06GlemSomphh, yeah, there we needed the buildlogs... :/
17:04.35phhGlemSom: don't worry it's just because of the holidays, I won't do any mistake again after monday :p
17:04.46GlemSomhahaha ok :D
17:04.48phhtornador: done
17:05.17phhI hate everything that has alcohol.
17:05.36phh(ok, some beers are good, and some muscat too)
17:05.55AndreMetzenphh: i'm trying to see the kernel code on git repository. witch branch is best for the rhodium?
17:07.15phhAndreMetzen: http://gitorious.org/linux-on-qualcomm-s-msm/linux-msm/commits/htc-msm-2.6.27 or http://gitorious.org/~mweirauch/linux-on-qualcomm-s-msm/linux-msm-topaz/commits/htc-msm-2.6.27
17:07.27*** join/#htc-linux mickey|sofa (n=M@e180140033.adsl.alicedsl.de)
17:08.31tornadorphh - dont know if its useful but
17:08.31tornadorIn file included from arch/arm/mach-msm/pmem.c:19:
17:08.31tornadorinclude/linux/android_pmem.h:74: warning: 'struct inode' declared inside parameter list
17:08.31tornadorinclude/linux/android_pmem.h:74: warning: its scope is only this definition or declaration, which is probably not what you want
17:08.32tornadorarch/arm/mach-msm/pmem.c:191: warning: function declaration isn't a prototype
17:08.32tornadorarch/arm/mach-msm/pmem.c:255: warning: initialization from incompatible pointer type
17:08.51*** join/#htc-linux mattias_ (n=mattias@84-119-56-80.dynamic.xdsl-line.inode.at)
17:08.58phhI know.
17:09.13tornadorok
17:09.48phhand the status is something like "don't care" or "won't fix" or "it will be fixed when it will be fixed" or "it will be fixed when nothing else has to be fixed"
17:10.08ICEMANno1Markinus, phh  I'll do a call again and pastebin the dmesg
17:10.26phhICEMANno1: do dmesg -c before doing dmesg
17:11.02ICEMANno1what does -c do?
17:11.07phhclear
17:11.10ICEMANno1k
17:11.11Markinusyes, would be great .
17:11.15ICEMANno1so -c
17:11.18ICEMANno1then call
17:11.20ICEMANno1then dmesg
17:11.22ICEMANno1right?
17:11.37phhyup
17:13.15ICEMANno1i need to boot android again
17:13.18mattias_hi! how can i build the modules from compat-wireless-msm ?
17:13.40ICEMANno1my brother has thrown the phone on the floor which resulted in a flighting battery
17:14.09Battousaiandroid's one true weakness is that it cannot run without a battery
17:14.10Markinusohhh
17:14.40Battousaimore of a hardware failure really
17:14.42phhBattousai: wrong.
17:14.46ICEMANno1my topaz was flying last couple of days a lot :)
17:14.48phhit can run with an usb power supply.
17:15.02Battousai:)
17:15.03phhmattias_: you don't want to, do you
17:15.03phh?
17:15.48phhtornador: works better now btw ?
17:15.58mattias_a least i would like to try it...
17:16.02phhmattias_: why ?
17:16.13vawxwhat does the bluetooth thing in android do called "Connected to phone audio"
17:16.17vawxis that calling sound?
17:16.20phhyes
17:16.39vawxso in theory if i make a call my laptop would do the audio now?
17:16.59phhno.
17:17.02phhwell
17:17.06phhif everything worked well yes
17:17.09phhbut it doesn't
17:17.18mattias_because glemsom autobuild is a bit slow
17:17.22phhwe don't how to tell the modem to route audio
17:17.29ToAsTcfhphh: so what device uses the v4l2 driver? so i got something to work from
17:17.39phhmattias_: yes and ?
17:17.40tornadorphh - booting
17:17.44phhToAsTcfh: don't now, omap devices I guess
17:17.53phhmattias_: I'm sure you don't actually want compat-wireless-msm :p
17:18.13ToAsTcfhhmm they prolly wont be much help i take it
17:18.21vawxjust froze again anywway... after the 9 seconds
17:18.24mattias_phh: ok, why?
17:18.35GlemSomyeah, I my computer lost network connection - so the GIT checkout failed... The system detected that - and to be sure, it re-downloads the entire GIT tree... It will take a little while longer...
17:18.36phhmattias_: wifi in eclair builds don't usei t
17:18.44ICEMANno1hmmm, now my phone crashed
17:18.45phhGlemSom: ARGH
17:19.08GlemSomphh, Wow, I could almost hear that here in Denmark...
17:19.09GlemSom:D
17:19.13phh:p
17:19.15mattias_phh: ok, i see, i have to read the last irc logs ...
17:19.20phhmattias_: no
17:19.25tornadorphh - OK
17:19.31phhmattias_: I just mean you really don't need compat-wireless-msm modules
17:19.43phhwell, maybe you really want it
17:19.46phhbut I don't think so
17:20.08tornadorphh, fixed afaik
17:20.19phhtornador: ok
17:20.23phhso it seems reaaly strange
17:20.42mattias_phh: which source is than used for the wlan module?
17:21.06phhmattias_: read GlemSom's page :p
17:21.08phhhttp://zimages.googlecode.com/files/sta_dk_4_0_4_32.tar.gz
17:21.26mattias_phh: thanks
17:24.18*** join/#htc-linux balans (n=Gebruike@212-123-149-239.ip.telfort.nl)
17:28.03ICEMANno1Markinus, phh hers is my new dm.txt which was the crashing one
17:28.04ICEMANno1http://pastebin.com/m34451c01
17:28.17phhcrashing ... ?
17:28.20phhI thaught it didn't crash
17:28.29ICEMANno1now it did
17:28.41phh[  473.499633] [<c0031498>] (handle_modem_crash+0x0/0x60) from [<c00322c8>] (smsm_irq_handler+0x70/0x108)
17:28.48phhthe kernel crashes when handling modem's crashes.
17:28.49phhwhy not.
17:29.12Markinusyes . ..  hmm
17:29.15tornadorphh - i need a bit help here... i was trying to compile the last kernel with a file from previuous parent SHA1
17:29.17phhMarkinus: just thinking, for your random wifi stuff, try removing wl1251_sdio from the modules
17:29.37ICEMANno1hmm, again
17:29.41tornadorbut its given me an error in that file
17:29.43ICEMANno1and both times with no sound
17:30.09phhMarkinus: if you have both wl1251_sdio AND wlan driver loaded at the same time, it's a game of who will take over the MMC the first.
17:30.58Markinusokay, I will test it. . .
17:31.01tornadorphh - here is the error log, if you could check and say me if there is a workiaround would be good   http://pastebin.com/m575c6cec
17:32.01phhuse git bissect.
17:32.20phhbut I think it's because the "merge" failed
17:32.30phhlook at the file and search for <<<<< strings
17:33.29phhGlemSom: oO
17:33.29phhGlemSom: that was fast
17:33.37GlemSomphh, :P
17:33.43phhGlemSom: you cheated didn't you ? :p
17:33.50vawxis donut missing bluetooth stacks?
17:33.56GlemSomnope... Downloaded GIT and started the compile by hand :P
17:34.00phhvawx: not my release :p
17:34.23vawxwell, as the only option my phone finds is headset
17:34.28tornadorthe diff with commits its here - http://gitorious.org/linux-on-qualcomm-s-msm/linux-msm/commit/51087c52f6224b44e62817aa83ddd3c1e1e4cbfa?diffmode=sidebyside
17:35.36tornadoras you changed the file, i would like to know if there may is a way to use the old file (before the commit)
17:35.52phhgit revert 51087c52f6224b44e62817aa83ddd3c1e1e4cbfa
17:35.58phhbut I'm pretty sure it's not the cause of black's problems
17:36.10phhbut test it anyway.
17:36.21tornadorsure, just a test
17:37.08tornadori was looking further and the screen problem stared here
17:37.18tornadorDate: Sat Dec 26 15:40:28 2009 +0100 OK, NO PROBL
17:37.18tornador3dbed4880e125d0aff7980f5991cd80289d3a72c
17:37.18tornadorDate: Sat Dec 26 17:36:08 2009 +0100 WITH PROBL
17:37.18tornador51087c52f6224b44e62817aa83ddd3c1e1e4cbfa
17:37.25tornadorso i was just doing an experiemnt
17:37.34Markinusphh: I made it like Blackstone, the  wl1251 is loading bevor android starts and the wlan.ko if you enable wlan from settings. I thought we need both, like Blackstone . . do you meen we can remove one of them?
17:37.51phhMarkinus: blackstone don't need both :p
17:37.59phhon donut release it uses wl1251, on eclair ones it uses wlan
17:38.04Markinusbut in ther images its so!
17:38.09phhuh ?
17:38.20phhI might have done something wrong then
17:38.24phhoh well
17:38.28phhMarkinus: that's a fake :D
17:38.37phhMarkinus: the insmod is here but it can't actually load the module
17:38.52tornadorwith hit rever i got:
17:38.53phhbecause the module is for 2.6.25 kernel
17:39.07Markinusyeah, so I compiled a new one . .. . owghhh
17:39.08tornadorskilo@Eskilo:~/mydroid/linux-msm$ git revert 51087c52f6224b44e62817aa83ddd3c1e1e4cbfa
17:39.08tornadorerror: Entry 'drivers/input/touchscreen/msm_ts.c' not uptodate. Cannot merge.
17:39.08tornadorfatal: merging of trees 4854472c164d9ff115527e92623eef08eab9a9b1 and a92e16fc8a75aecdc2d4409d6d51d5f012129570 failed
17:39.22phhgit reset --hard
17:39.24phhthen do revert
17:39.29tornadorok, thanks
17:39.38phhMarkinus: sorry for fooling you :D
17:40.22*** join/#htc-linux balans (n=Gebruike@212-123-149-239.ip.telfort.nl)
17:40.33Markinusokay . . . .. . hmmm ;-)
17:40.36AndreMetzenphh: hehe... i dont have the gift to understand all that kernel code... =D
17:40.48phhAndreMetzen: it's just a matter of time.
17:41.12*** join/#htc-linux babijoee (n=joee@110.33.164.109)
17:41.27phhhi Battousai
17:41.28phhbabijoee: *
17:41.35babijoeeyo
17:41.40babijoeehappy new year everyone
17:41.43babijoee:D
17:42.05Battousaiphh: why hello there! ;)
17:42.20phhBattousai: because I can't do more than two letters tab, why else ? :D
17:43.13AndreMetzenphh: I really like to help in any way. but I think I'll have to wait for those with more knowledge to see some things working on my TP2 :)
17:44.39ICEMANno1phh: is there a way to tell android to disable data with adb?
17:45.08phhsmmmmmm
17:46.25phhdon't know I'll say.
17:46.30ICEMANno1k :D
17:46.47babijoeeppp.nostart=1 in startup.txt
17:46.51babijoeei know thath
17:47.02phhbabijoee: nop.
17:47.13babijoee:(
17:47.26ICEMANno1?
17:47.33ICEMANno1yes or no? works or not?
17:47.34babijoeenvm
17:47.49phhICEMANno1: boot without your SIM, install toggledata, set it to off, reboot with sim
17:48.25GlemSomThe forum at http://pjottrr.no-ip.org:81/redmine/projects/show/androidphh has been down for a few days... Who maintains that?
17:48.34phhGlemSom: pjottrr
17:48.43phhI haven't seen him for a while though :/
17:49.03phhand it's not "for a few days", last message has been only 26hours ago :p
17:49.03GlemSomhmm, I think he's on XDA.... ?
17:49.23phhI met him here, but i don't know
17:49.25phh~seen pjottrr
17:49.28aptpjottrr <n=phuisken@dhcp-077-249-139-228.chello.nl> was last seen on IRC in channel #htc-linux, 20d 19h 53m 56s ago, saying: 'phh; nice work btw this latest build, works very nice on blackstone, wifi problem i mentioned earluer is solved also'.
17:49.38phha bit old hum.
17:49.50GlemSomhehe, hes last message - and he says thanks to you... nice! :P
17:49.54tornadorphh - SOLVED!!!
17:49.58phhtornador: :'(
17:50.04phhI feared you'd say that
17:50.06tornadorwith old msm_ts.c its solved the black problem
17:50.22phhok, let's read the patch for the fifth time.
17:50.30tornadorwell, but create an zimage specific to black is not the solution
17:50.44tornadorand i dont have the skills to read the file and understand...
17:51.14ICEMANno1I'll try a clean start with android, to see if the phone works then...
17:53.26phhtornador: ok now I can see one problem in the patch, but it doesn't seem related though
17:54.59babijoeephh: are you aware of the booting problems with the latest kernels?
17:55.33phhtornador: oh no, it's actually exactly your problem.
17:55.39phhbabijoee: fixed in latest one normally :p
17:55.53phhbabijoee: I tried to enable second memory bank
17:55.56ICEMANno1booting problems?
17:55.59phhbut it seems it works only on some devices
17:56.10phhso it's now an option parameter
17:56.15phhpmem.extra=1
17:56.41ICEMANno1what does it affect?
17:56.46ICEMANno1the second memory bank?
17:56.51phhyes
17:56.55ICEMANno1ahh, k
17:56.58phhtornador: pushed
17:57.26phhtornador: have you an adb/telnet/terminal?
17:59.43vawxphh: i think i might have found a way to acces telnet with your kernel
17:59.57phhvawx: like wifi ? :p
18:00.11vawxconnection is np
18:00.15vawxbut login
18:00.19phhI told you
18:00.21phhI think.
18:00.30phhbusybox telnetd blabla -l /bin/sh
18:00.37phhjust add the -l /bin/sh
18:00.37vawxyou didn't tell me :p
18:00.44phhok.
18:00.48phhI don't remember who I told then :p
18:00.49vawxbut with adb i could change the root passwd
18:01.24phhvawx: You told me you tried without luck no ?
18:01.32phhor someone else tried maybe
18:01.37vawxthat's because i couldn't do su in normal terminal
18:01.38tornadortornador - i have terminal in device
18:01.43vawxso not enough rights to change
18:02.13phhherpez: hum, could be enough for first tests
18:02.26tornadorsure
18:02.29tornadorjust say
18:02.37phhjust wait :p
18:02.40tornadorand yes, it can be also herpez
18:02.50phhI don't remember how this thing works.2sec.
18:03.01tornadorif i knew c language  i would be bothering u with this, really
18:03.13GlemSomnew kernel ready. :P
18:03.29phhtornador: ok try the kernel, you'll do this terminal after.
18:03.33ICEMANno1no success
18:04.16Markinusyou can not make more calls?
18:04.23ICEMANno1nope
18:04.27phhICEMANno1: grrrr
18:04.30ICEMANno1always crashes
18:04.37phhbabijoee: what do you think about making an android kitchen ?
18:04.37ICEMANno1even with a clean version
18:05.24phhto add easily stuff like foreignh langugages, default homescreen and such things
18:05.49babijoeephh: hrmm sounds intersting
18:05.57babijoeeinteresting*
18:06.34tornadorphh - do u want me to  try the new glemsom kernel or the one i made with old file?
18:06.42phhtornador: glemsom.
18:06.49tornadorok, doing it
18:09.57tornadorwhile im testing the new zimage, im having a doubt here
18:10.16tornadori made the modules, extracted them, cp wlan.ko to the extracted folder
18:10.27tornadorand then i tar the folder to tar.gz
18:10.39tornadorhowever it gives me a very small folder with just 400kb
18:10.41*** join/#htc-linux balans (n=Gebruike@212-123-149-239.ip.telfort.nl)
18:11.19tornadorany clue of what im doing wrong?
18:11.38tornadorphh - with new kernel its DONE!!!
18:11.39tornador:D
18:12.14phhtornador: ok, now terminal.
18:12.36tornadorok, i hope my retunr key will work on terminal... sometimes it doesnt
18:12.36babijoeehow would we go about doing this?
18:12.46phhtype su
18:12.46phhthen
18:12.46phhcd /sys/class/htc_hw
18:12.53phhbabijoee: bah some little bash scripts
18:12.59*** join/#htc-linux vawx (n=chatzill@ip54532c5f.speed.planet.nl)
18:13.23babijoeehmmm i dont think its a good idea atm
18:13.35babijoeetoo many people will be asking too much
18:13.44phhok
18:13.51phha kitchen for ourselves ? :p
18:13.56babijoeeyeah
18:13.59phhtornador: then echo 1 > test
18:14.02babijoeenot for public for now i think
18:14.06phhand try with number from 1 to 5
18:14.11phhand see what the screen does
18:14.26phhbabijoee: first step, find where is seted the IME :p
18:14.41babijoeei've pretty much written my own bash script to build android
18:14.53tornadorphh - did nothing
18:14.57tornadorgoing try new term
18:15.03babijoeeseted?
18:15.05phhtornador: for everything from 1 to 5 ?
18:15.08phhbabijoee: set ?
18:15.11phhyes set.
18:15.22phh(you do love my english.)
18:15.37babijoee:)
18:16.17ToAsTcfhphh: so i found a msm_v4l2.c in the hero source
18:16.19babijoeeisnt the ime installed via an apk in the apps folder
18:16.27ToAsTcfhis that what i need to build
18:16.41phhbabijoee: yes, and if there is only one, this one will be used, but ... well no ok. it's enough.
18:17.03phhbabijoee: anyway for next release, remove htc_ime and use latinime
18:17.08phhit's not as good, but at least it's usable.
18:17.47vawxphh: what was the command/ip again for donut telnet on your kernel? (ifconfig thing)
18:18.07phhit's not linked to the kernel but to the rootfs.img
18:18.11vawxoh
18:18.16phhifconfig usb0 192.168.20.2 iirc
18:18.22tornadorphh - no output from1 to 5
18:18.42tornadorups
18:18.42phhtornador: nothing changes on the screen ?
18:18.55tornadorno, but i may understood worng
18:19.07babijoeeyeah nps
18:19.14tornadorit shall be echo 1 > 2 , 1 > 3 and so on right?
18:19.24phhtornador: not at all.
18:19.26phhecho 1 > test
18:19.28tornadoror 1 > test   , 2 > test
18:19.28phhecho 2 > test
18:19.29phhand so on.
18:19.35tornadori have done it and nothing changed
18:19.38phhand if echo 1 > 2 did no output
18:19.49phhthen you did it wrong
18:19.54phhtornador: you did the cd /sys/class/htc_hw ?
18:19.58tornadoryes
18:20.07phhecho 1 > 2 does no output in the terminal ?
18:20.07tornadori tried just echo x > test
18:20.13tornadorx = 1 to 5
18:20.15tornadori will try it
18:20.17tornadornever tried
18:20.44tornadorbtw better terminal is now working
18:21.00phhbabijoee: anyway, we still have real problems with all graphical stuff... 2D is slow, 3D isn't working, video works only for really little videos ...
18:21.08phhI've tried to understand that, but no luck yet.
18:21.15phhtornador: uh ? that's strange, you changed the IME ?
18:21.54babijoeeyeah =/
18:22.05tornadorecho 1 > 2 gives cannot creaye 2_ directory nonexistent
18:22.25babijoeedo you think its driver related or something to do with kernel
18:22.30tornadorjust changed the keyboard to not htc but the one from android
18:22.34babijoeeas i can look for other drivers
18:22.41phhbabijoee: no idea at all :'(
18:22.44tornadorbut i dont know if its related
18:22.55phhtornador: keyboard is named IME :p
18:22.59phhI think it's then
18:23.06phhtornador: ok you did it correctly then
18:23.09phhtornador: mount -tdebugfs none /dbgfs
18:23.57tornadoras su?
18:24.04phhyes
18:24.44phhthen cd /dbgfs/vreg
18:24.49phhecho 0 > gp4
18:24.53FuZi0nphh do you still want a decent dm?
18:25.03phhFuZi0n: what for again ?
18:25.04phhoh right
18:25.08phhyes
18:25.15tornadormounting none on dbgfs failed: device ir resource busy
18:25.26phhtornador: ok, just do the next command
18:25.56ToAsTcfhphh: this thing wont build without a gangload of errors
18:26.05phhToAsTcfh: sad.
18:26.17ToAsTcfhsorry
18:26.22phhtornador: so ?
18:26.34tornadorscreen off
18:26.41phhtornador: backlight totally off ?
18:26.44tornadoryes
18:26.46tornadorand never goes on
18:26.58tornadorbut haptic feedbackis on
18:27.00tornadorso is awake
18:27.10tornadorthis is a good thing to lcd off when sleeping
18:27.20ToAsTcfhi should be able to cd to the dir and make msm_v4l2 right?!
18:27.35phhok, reboot to wimo, I'll do a test initramfs
18:28.10FuZi0nsent phh
18:28.16phhToAsTcfh: no
18:28.23ToAsTcfhbut can i use this without a whle new kernel?
18:28.36phhToAsTcfh: maybe, not easily though
18:28.41ToAsTcfhdamn
18:29.00tornadorphh - shall i do the ramconsole dm file?
18:29.05phhtornador: no
18:29.06ToAsTcfhwell send me in the direction of possibly doing it
18:29.08phhFuZi0n: this one is fine
18:29.16FuZi0ngreat
18:29.23tornadorok
18:29.48ToAsTcfhphh: please
18:30.07phhToAsTcfh: too hard to explain
18:30.25ToAsTcfhok what am i looking to do roughly
18:30.33phheven roughly :p
18:30.40phhtornador: http://husson.hd.free.fr/initrd.gz
18:30.41phhtry that
18:30.48ToAsTcfhbuild a driver and make something to fake the system
18:31.04babijoeephh: are you trying to fix panel?
18:31.12phhbabijoee: blac's backlight
18:31.19babijoeeok
18:31.28phhbabijoee: just to be sure, raph hasn't the same problem ?
18:31.36ToAsTcfhok is there someplace i can find info on doing what i need?
18:31.43tornadorphh - i think some other dev have the probl
18:31.49makkonendoes the blackstone panel get jumpy over near the right side, like the raph800's?
18:31.57phhtornador: which ones ?
18:32.22FuZi0nphh do you know what the kernel panic problem is?
18:32.48phhFuZi0n: it's because I try to use some memory, but "someone" dislikes that.
18:32.54FuZi0nhehe
18:32.54FuZi0noke
18:33.11phhFuZi0n: anyway, the latest kernel hasn't this problem
18:33.13phhbut less RAM.
18:33.29FuZi0nok
18:33.36phhtornador: so ?
18:34.13phhtornador: FuZi0n does backlight diming works in android ?
18:34.30phhI mean manual one
18:34.40FuZi0neehhh
18:34.41FuZi0ni believe it does
18:36.23phhplease check
18:36.23phhbecause it seems really weird
18:36.23FuZi0nbooting now
18:36.23phhunless you have two different backlight controls -_-'
18:36.24FuZi0ni need to change backlight in settings?
18:36.24phhyes
18:36.30FuZi0nok
18:36.32phhwell the widget is also fine but whatever
18:36.55FuZi0ndum dum dum there is the boot screen
18:36.57ToAsTcfhphh: i wonder what the chances of just changing everything to heroc instead of hero in the kernel source would alow the keenel to atleast boot?!
18:37.30phhToAsTcfh: pretty high, just add the correct mtype
18:37.50ToAsTcfhwhitch is?
18:38.02vawxphh: no succes yet, password still seems to be unknown. That busybox command you gave me, what is the blabla?
18:38.09phhdon't know, you have to disassemble the spl I think
18:38.15phhor bootloader
18:38.21phhoh well wait
18:38.25babijoeephh: nope raph backlight is off
18:38.32ToAsTcfhi forgot isnt mtypes in the source?
18:38.33tornadorphh - is it fixed???
18:38.34phhbabijoee: ok
18:38.41phhtornador: what is fixed ?
18:38.52phhtornador: didn't you tell me that glemsom's kernel was ok ?
18:39.02ToAsTcfhisnt there a file of all mtypes?
18:39.10phh[19:13:04] <tornador> phh - with new kernel its DONE!!!
18:39.17phhToAsTcfh: all *known* mtypes :p
18:39.23ToAsTcfhwait that was prolly just for the winmo devices
18:39.28phhheroc                   MACH_HEROC              HEROC                   2092
18:39.30phhit's here :p
18:39.38phhhero_espresso           MACH_HERO_ESPRESSO      HERO_ESPRESSO           2116
18:39.38ToAsTcfhlol
18:39.42phhToAsTcfh: see, espresso is just an hero.
18:39.48ToAsTcfhshit
18:39.51ToAsTcfhlol
18:40.21ToAsTcfhok so i can just chng the mtype and change the board and such to heroc
18:40.40FuZi0nadjusting backlight is working fine phh
18:40.44ToAsTcfh?
18:40.49phhFuZi0n: that's REALLY weird.
18:40.57phhToAsTcfh: maybe, but I think you'll hit some panel problems
18:40.59FuZi0nwhy
18:40.59FuZi0n:P
18:41.24phhFuZi0n: bah backlight off is done the same way as trout/sapphire
18:41.29ToAsTcfhwell that could be worked out kinda easy right?
18:41.30phhbacklight dim is done the same way as raphael
18:41.50phhToAsTcfh: i don't know these stuff
18:41.56ToAsTcfhlol
18:42.00ToAsTcfhsorry
18:42.10phhtornador: so with the initrd.gz, no backlight on/off at startup ?
18:42.13ToAsTcfhi forget ur not god somethimes
18:42.18ToAsTcfhlol
18:42.29phhToAsTcfh: only sometimes ?
18:42.30phhmmm
18:42.34ToAsTcfhlol
18:42.48ToAsTcfhsorry
18:42.56babijoeedownloading hero source :D
18:43.05phhbabijoee: uh ? why ?
18:43.06ToAsTcfhbet u still never looked at the utilities i sent u?!?!?!
18:43.17babijoeehaving a look at it
18:43.18phhToAsTcfh: which utilities ?
18:43.20tornadorphh - yes, i told u it was ok the glemsom kernel, however i was in doubt if you just reverted the file form the old one or if you found the error inside the file
18:43.37phhToAsTcfh: you sent me only logs
18:43.39ToAsTcfhthe htc utilities i found
18:43.51ToAsTcfhits atached
18:44.00phhwell that's all that is in my mbox.
18:44.00ToAsTcfha hwhole zip
18:44.18ToAsTcfhif u can use them ill send
18:44.43ToAsTcfhthey seem to be what htc use to debug and test hardware
18:44.45phhno, I've received no tool from you ...
18:44.59ToAsTcfhhold up
18:44.59phhtornador: glemsom's kernels are main tree.
18:45.09phhtornador: so, backlight
18:45.11phh?
18:45.39tornadorphh, want me to test backlight?
18:45.41phh......
18:45.41babijoeephh: i want to have a look at libgles and learn more stuff about kernel developing
18:45.52tornadorsince i tested it, it went off and then i didnt test anymore
18:45.54phhbabijoee: we haven't the source of libgles /o\
18:46.01tornadorphh - about the same probl in RAPH -Ah, most strange behaviour was the soft keys responding randomly, especially the "back" key which some times does not respond, sometimes works like the "right" key and the suddenly works like the back key again.
18:46.02tornadorSame for the "hang-up" key just below. Menu key works quite randomly too but more steady than back key. Did not try the other keys thoroughly.
18:46.02tornadorI tried to find a fix for this erratic behaviour but I seem to be the only one encountering it ?
18:46.02tornadorFor testing purpose it's not a big deal, I just click randomly on some keys then back key is back
18:46.04phhtornador: [19:32:05] <phh> tornador: http://husson.hd.free.fr/initrd.gz
18:46.05phh[19:32:06] <phh> try that
18:46.17tornadorphh - sorry, didnt read it
18:46.24phhI know you don't know how to read.
18:46.27phhit's not the first time.
18:46.38phhand raph problem isn't the same at all
18:46.43phhit's just that stupid capacitive panel
18:46.45tornadorphh - im not here 24/7 reading...
18:46.57tornadori have also things to do, so its normal i miss things
18:47.09phhyou can at least read when you're logged in....
18:47.12babijoeephh: serious? how on earth did you get libgles for donut?
18:47.16babijoeedid they release it for that?
18:47.30phhbabijoee: I didn't get any /o\
18:47.34phhbabijoee: I used your builds, remember ? :p
18:47.51tornadori have kids around me and sometimes i need to go out and paly with them, and that stuff
18:48.00phhthen just log out.
18:48.06tornadorsure
18:48.13phhor read logs.
18:48.19tornadornp
18:48.20phhso, you try that ?
18:48.28tornadoryes, but with time
18:48.36babijoeephh: i mean how did you get it working?
18:48.46phhbabijoee: I never got it working !
18:48.56phhthe first android build I tried had 3D working
18:48.58tornadoras far as i undertand, this will fix backlight really of right?
18:49.07phhtornador: not at all yet.
18:49.10phhtornador: it's just a test.
18:49.15phhso watch your phone at boot.
18:49.18babijoeephh: woah
18:49.33phhbabijoee: i'm kind of new with this stuff you know :p
18:49.38phhI started android only 6 months ago
18:49.50phhand really working on it only 3 months
18:50.03tornadorak
18:50.11phhtornador: the backlight should turn off for 5seconds
18:50.14phhand hopefully get back on
18:50.18tornadorok
18:50.40ToAsTcfhphh: sent
18:50.55tornadoroff ...
18:50.57tornadorand not on
18:51.41tornadorback to wimo
18:51.47phhtornador: got it
18:52.12tornadorneed to go no
18:53.31phhToAsTcfh: got it*
18:53.47phhFuZi0n: around ?
18:54.16FuZi0nwhat phh
18:54.24FuZi0nhmmm abduction update yay
18:54.28phhlol
18:54.45phhFuZi0n: what you're highest score now ? :)
18:54.54FuZi0n8k or something
18:54.54phhFuZi0n: got adb or telnet working ?
18:54.55FuZi0ni keep failing
18:55.06FuZi0ni don't know how to test that.
18:55.08phhevil inifinite ?
18:55.15FuZi0nno that's too evil
18:55.18FuZi0nand too infinite
18:55.18FuZi0n:P
18:55.19phhpfff
18:55.32phhI did 12k on evil infinite  iirc
18:55.40FuZi0nnice
18:56.00phhok, no blackstone user with working adb or telnet ?
18:56.20FuZi0nif you tell me how to test it.. do i need putty?
18:56.38phhyou have a working terminal app ?
18:56.42phhon android
18:56.52FuZi0nnot yet
18:57.19FuZi0nbrr that hero keyboard doesn't look that well
18:57.39phhgo in settings, locale stuff, enable android keyboard
18:57.41phhand use it.
18:57.45phhit's way more usable.
18:57.57FuZi0nyeah
18:58.10FuZi0nwhats a good terminal app
18:58.20phhbetter terminal
18:58.28FuZi0nokay
18:59.41ToAsTcfhphh: are of use to u?
19:00.04phhdon't know
19:00.27ToAsTcfhhmm well they work so maybe one day?!
19:00.30ToAsTcfhlol
19:01.46FuZi0nphh better terminal keeps crashing.
19:01.55phhFuZi0n: change your IME
19:04.07*** join/#htc-linux mickey|sofa (n=M@e180140033.adsl.alicedsl.de)
19:04.42FuZi0nphh android language? or what
19:04.43FuZi0noh dinner
19:04.43FuZi0nbrb
19:04.58phhandroid input
19:06.42ToAsTcfhok so in order to use the driver what sort of mod am i looking to do? is it framework or what? or rewriting the libs in android?
19:07.02ToAsTcfhi mean atleast maybe i can look into it
19:08.20FuZi0nphh i can't get that hero keyboard disabled
19:08.22FuZi0n:')
19:08.43FuZi0noh bingo
19:08.50*** join/#htc-linux TuxBrother (n=this@ip54506452.adsl-surfen.hetnet.nl)
19:24.23phhFuZi0n: I promise, it will be disabled in the next build :D
19:29.55*** join/#htc-linux greebear (n=greenbea@dslb-088-078-216-216.pools.arcor-ip.net)
19:37.00*** join/#htc-linux cyberdesigner (n=cyberdes@port-92-206-55-79.dynamic.qsc.de)
19:51.57*** join/#htc-linux mickey|sofa (n=M@e180140033.adsl.alicedsl.de)
19:54.42*** join/#htc-linux c2d (n=quassel@port-92-200-22-83.dynamic.qsc.de)
20:03.29*** join/#htc-linux rjanossy (n=rjanossy@fibhost-66-14-102.fibernet.hu)
20:04.01*** part/#htc-linux greebear (n=greenbea@dslb-088-078-216-216.pools.arcor-ip.net)
20:23.30phhToAsTcfh: do you know if your eclair hero build has working 3D acceleration ?
20:25.25phhand can you give a link to it ?
20:43.33*** join/#htc-linux luc_ (n=luc@89-115-128-35.cl.ipv4ilink.net)
21:01.29phhE/copybit ( 1185): copyBits failed (Invalid argument)
21:01.30phhD/copybit ( 1185): 0: src={w=176, h=144, f=0, rect={0,0,176,144}}
21:01.30phhD/copybit ( 1185):     dst={w=480, h=640, f=0, rect={1,27,479,586}}
21:01.30phhD/copybit ( 1185):     flags=00020004
21:01.32phhstupid errors.
21:01.39*** join/#htc-linux greebear (n=greenbea@dslb-088-078-216-216.pools.arcor-ip.net)
21:02.04greebearupdated in the comments
21:02.13phhmm ?
21:02.14greebearthe buttons didnt work properly on the last build
21:02.31greebearafter suspending and waking the device up they started to do something
21:09.03ToAsTcfhphh where is the touch screen driver or .so?
21:09.17phhthere is no .so
21:09.24phhandroid just reads /dev/input/event*
21:10.44ToAsTcfhwell i know my screen supports multi touch but im not getting it. its using syaptics
21:11.07phhthe screen maybe, but what about the kernel driver ?
21:11.21ToAsTcfhyes it worked in 1.5
21:12.19phhsounds weird
21:12.23phhbut I don't know linux api for multitouch
21:12.31ToAsTcfhhmmm
21:12.51ToAsTcfhwhat did u say light sensor was then
21:13.36phhlight *sensor* or light *emission* ?
21:14.06ToAsTcfhtheauto ldemmer thingy lol
21:14.22ToAsTcfhauto dimmer
21:14.31phhafaik it's hardware
21:14.32ToAsTcfhim thinking sennsor
21:14.38phherr wait
21:14.40phhno I just don't know
21:14.47ToAsTcfhlol
21:16.02ToAsTcfhyeah im kinda stuck till someone can lead me the dirrection i need to add a camera driver
21:16.20ToAsTcfhso im trying to work on what i can
21:17.05ToAsTcfh<<hince>>phh
21:17.05phhbut hero has light sensor ?!?
21:17.24ToAsTcfhyes a small one
21:17.31ToAsTcfhnot proximity
21:18.16ToAsTcfhits on the the side of the speaker
21:18.32ToAsTcfhearpeice speaker
21:18.45phhyes same for diam
21:18.59phhI thaught HTC didn't put that in their android phones
21:19.10ToAsTcfhi wish it was prox though
21:19.16ToAsTcfhwell they did
21:19.21ToAsTcfhon mine
21:19.34ToAsTcfhmy wife has an eris it has prox
21:19.46ToAsTcfha girly hero lol
21:21.03ToAsTcfhso phh tell me what i need to look into to get camera from v4l2. please
21:21.12ToAsTcfhu look bored
21:21.17ToAsTcfh;D
21:21.23phhkind of
21:21.43phha stupid bug
21:21.49phhGlemSom: you updated the compiler ?
21:22.00GlemSomphh, Yes 2009q3
21:22.03phhok
21:22.12GlemSomIs there a problem with that?
21:22.19phhdon't know
21:22.28GlemSomWhat compiler do you test with?
21:22.39phhI tested 2008q1 and 2009q3
21:22.48phhI've tried to find 2008q3 but no luck yet
21:23.22GlemSomOk, since you're the maindeveloper, I would prefer using the same compiler as you.. So, please let me know if I need to change it!
21:23.40phhsure
21:23.43*** join/#htc-linux Zack84a (n=zack84a@r74-192-19-93.bcstcmta01.clsttx.tl.dh.suddenlink.net)
21:23.58phhI just want to know why this guy can get working sleep_mode=1
21:24.00phhwhile I can't
21:24.28GlemSomAnd he Is having it working?
21:24.38phhyes.
21:24.42phhand his zImage works fine on my phone too.
21:25.58GlemSomphh, I guess he doesn't have the source for it anymore then? (He must have patches something?)
21:26.17phhhe told me he tried with current tree without anypatches.
21:27.00phhI just don't get it
21:27.52GlemSomWhat is it we use by default... 4 ?
21:27.58phhno 2
21:28.08phhbut the system still wakes up every 30seconds
21:28.11phhwith this, well
21:28.14phhs/seconds/minutes/
21:28.16phhbasically.
21:29.14vawxhttp://www.codesourcery.com/gnu_toolchains/arm/portal/package2549/public/arm-none-linux-gnueabi/arm-2008q3-72-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
21:29.23phhthanks vawx
21:29.57GlemSomvawx, Nice... You must be really good friends with google? :D
21:30.02vawx:p
21:30.21vawxjust looked for arm-2008q3, copied a link ^^
21:30.22phhlet's cross fingers now.
21:30.24phhwhile downloading
21:30.32phhand see doctor who meanwhile.
21:30.53*** join/#htc-linux m1dlg (n=m1dlg@bb-87-81-252-83.ukonline.co.uk)
21:31.30GlemSomphh, heh - yeah. Good series to watch once in a while! :)
21:31.41phhbah it's the end of time today.
21:32.12vawxsigh... i'm starting to hate telnet :p
21:32.20phhlol
21:32.28vawxi just can't find a way to get that login :p
21:32.38vawxthe root user is all screwed up in android :S
21:33.07phhvawx: I told you how to do that.
21:33.23vawxsort of, except i didn't know what the blabla part was :p
21:33.52phhjust do
21:33.58phhbusybox telnetd -l /bin/sh
21:34.00phhshould be enough
21:35.06ToAsTcfhdamn i lost my chnce
21:39.37*** join/#htc-linux rmoravcik1 (n=rmoravci@ip-89-102-141-60.karneval.cz)
21:40.17*** part/#htc-linux rmoravcik1 (n=rmoravci@ip-89-102-141-60.karneval.cz)
21:53.08vawxphh: command doesn't do anything
21:53.24phhkillall telnetd
21:53.26phhand redo this command
21:53.28phhand try to telnet
21:54.21GlemSomI'm not sure you can do killall telnetd, (since it's actually busybox running). I think you'll need to kill the PID.  (I could be wrong though)
21:54.35phhdon't know
21:54.44phhsounds logical though
21:54.55vawx1155
21:55.03phhbah kill 1155 :p
21:55.21vawxfun, this terminal didn't have numbers :P
21:55.24vawxbut does have su ... sigh
21:57.42*** join/#htc-linux luc_ (n=luc@89-115-128-35.cl.ipv4ilink.net)
21:58.06vawxyeeey
21:58.08vawxsucces
21:58.18vawxdid a killall busybox
21:58.21vawxthen the command
21:58.25vawxthen it worked without pass
21:58.31*** join/#htc-linux ali1234 (n=al@robotfuzz.co.uk)
21:58.39vawxaka telnet acces on your kernel now :)
21:59.18vawxok, now what? :P
22:05.44*** join/#htc-linux magnus1 (n=magnus@90-230-171-121-no35.tbcn.telia.com)
22:06.52magnus1cj
22:06.52magnus1phh: hey, im back!
22:11.15magnus1i found out what mtype you're suppose to use on the htc touch hd/blackstone phone, it's not 1951, but rather 2030
22:11.15magnus1(if anyone else should ask)
22:11.54GlemSomHow does network from the console work in android? (wget, ping and such cannot resolv names... and, there's no resolv.conf file?!?)... The browser in Android works fine though - and so does the market...
22:11.58GlemSomme is cinfused
22:12.07phhmagnus1: argh, again
22:12.20phhGlemSom: no name resolution
22:12.29GlemSomphh, yeap
22:12.38phhI've never been able to fix that
22:13.06GlemSomI dont understand how the browser works then...? :/
22:14.24phhdon't know
22:14.59phhdo getprop to know how he gets dns
22:15.16GlemSomyeah, I see... and I can change using setprop...
22:15.28GlemSomwierd...
22:15.31phhandroid :p
22:15.37GlemSomguess so :/
22:16.19*** join/#htc-linux Chicago (n=Chicago@c-98-223-75-214.hsd1.in.comcast.net)
22:16.28ChicagoHappy New Year #htc-linux & friends.
22:17.15magnus1phh: anyhow, linux boots, but it doesn't seem to be able to mount root partition.. it ends up in a state waiting for the SD card. and i see mmc prints about timeouts. im thinking maybe the mmc bits are configured for a different machine (ie other pinmux) or  something
22:17.45magnus1the eclair stuff you gave me earlier, should they work for all htc phones, granted a correct mtype? or do i need different images for different phones?
22:17.53phhmagnus1: should work
22:18.13*** join/#htc-linux vilord (n=jesse@c-98-217-154-135.hsd1.ma.comcast.net)
22:18.13phhmagnus1: add msmsdcc_1bit msmsdcc_nopwrsave msmsdcc_fmax=14000000
22:18.14phhto the cmdline
22:18.31magnus1thats in the startup.txt file, right?
22:18.35phhyes
22:20.50magnus1also, is there a faster way to test stuff? right now my boot process is to boot windows mobile, wait for all bloat to load, open file manager, start haret, wait until linux encounters problem, then rip out the battery to reset the device
22:21.37phhno
22:23.38FuZi0ndo you have manila enabled magnus1?
22:24.40magnus1FuZi0n: im not familiar with manila, what is it?
22:24.54FuZi0ntouchflo
22:25.09magnus1yeah, i think thats the bloat that loads at boot right?
22:25.17magnus1i just got this phone today, i dont know much about it
22:25.28magnus1i just want to throw away windows mobile
22:26.06vawxif you only got it today, why didn't you just buy an android phone in the first place? :S
22:26.34FuZi0nindeed vawx
22:26.56FuZi0nbut magnus1, go to settings, click on today, uncheck touchflo
22:27.06FuZi0ncause you have to wait till winmob is entirely loaded and stuff
22:27.11FuZi0nso that helps a lot
22:29.21magnus1vawx: its not new :) i got it for free from a friend who got so fed up with the slow UI, he was gonna throw it away
22:29.27magnus1so i told him i could take better care of it
22:29.40magnus1i mean, the htc touch hd is not _that_ bad hw, is ti?
22:29.41vawxphh: somehow display powermanagement initiated on it's own just now, it wasn't turned off in wimo so it didn't work
22:30.53magnus1phh: still getting mmc1: Command timeout a few times with those added command line parameters.. and then it enters the "waiting for SD card" mode
22:31.15phhmagnus1: you extracted all files ?
22:31.23FuZi0nmagnus1 hd can perform much better than it does i believe
22:33.08GlemSomphh, I know it's a minor issue - but regarding the name resolution... This might be related -> http://android.modaco.com/content/htc-hero-hero-modaco-com/295035/busybox-network-functions-not-working/#entry1099546
22:33.47magnus1phh: yupp, pretty sure.. i think the problem here is that the sd card doesnt mount
22:33.56magnus1so the kernel just sits there and waits for a rootfs
22:33.58phhGlemSom: ok
22:34.07phhthis is related
22:34.46*** join/#htc-linux Squarc (n=Squarc@82-217-32-29.cable.quicknet.nl)
22:45.53*** join/#htc-linux [1]Captnoord (n=Captnoor@dc5147a47b.adsl.wanadoo.nl)
22:48.46[1]Captnoordhappy new year
22:51.15*** join/#htc-linux ZeroForce (n=ZeroForc@pool-71-105-69-72.lsanca.dsl-w.verizon.net)
22:51.52ToAsTcfhphh: still got no time to explain whats needed to use the v4l2 driver without a kernel?
22:52.26phhnop
22:52.42ToAsTcfhu refuse i take it
22:55.55magnus1ToAsTcfh: v4l2 without the kernel? :) sounds weird.
22:56.17phhmagnus1: he hasn't kernel's source code :p
22:56.59magnus1you mean he wants to use v4l2 in a non-linux kernel?
22:57.10magnus1ie mimick the api?
22:58.27ToAsTcfhi wanna use the driver to get the camera working on my heroc in 2.1
22:58.27*** join/#htc-linux dekar (n=dekar@f052213203.adsl.alicedsl.de)
22:58.58*** join/#htc-linux dekar (n=dekar@f052213203.adsl.alicedsl.de)
22:59.01phhwhy don't you just wait for HTC mm?
22:59.18ToAsTcfhfor some reason they changed the driver for the 2.+ builds
22:59.48ToAsTcfhphh: u know ive been asked that hundred times
22:59.59magnus1can't you revert back just the v4l2 driver then
23:00.06magnus1in the new 2.1 kernel
23:00.18*** join/#htc-linux MatBee (n=MatBee@d24-150-35-2.home.cgocable.net)
23:00.27ToAsTcfhno i have a .27 kernael
23:00.32ToAsTcfhcdma hero
23:00.52magnus1what kernel ver is used by 2.1?
23:01.19ToAsTcfhphh: they said sensors ril and all the rest was inpossible but now everything but camera works
23:01.25ToAsTcfh.29
23:01.31phhToAsTcfh: "they" ?
23:01.49magnus1so why dont you migrate to .29 aswell?
23:01.54ToAsTcfheveryone who ive asked except u and tmzt lol
23:01.55phhmagnus1: no kernel source
23:02.01phhToAsTcfh: ah
23:02.15[1]Captnoordand porting is very hard
23:02.25magnus1phh: i thought all android versions was open
23:02.27[1]Captnoordwe better port to .31
23:02.35phhmagnus1: all released one yup.
23:02.47phhandroid 2.1 hasn't been released.
23:02.59magnus1oh, right. ok, i see the problem
23:03.02ToAsTcfh2.0 either
23:03.09ToAsTcfhit wont work in both
23:03.21magnus1who develops the 'official' android kernel then? google?
23:03.42magnus1and why dont they expose their scm?
23:03.45phhI don't think there is an official android kerne
23:03.47phhl
23:03.52phhmagnus1: they don't have to.
23:03.55*** join/#htc-linux kam187 (n=kam187@81-179-8-102.dsl.pipex.com)
23:04.10ToAsTcfhidk but im stuck here.
23:04.13magnus1so if there is not offical team, who is "they"?
23:04.25ToAsTcfhhtc
23:04.28phhwho said there is no official team ? :p
23:04.46magnus1im just making things up here, to make it more interesting :)
23:05.27magnus1anyway, porting the .27 drivers to .31 should be fairly easy, right?
23:05.32ToAsTcfhany ideas or is the v4l2 not gonna work without the kernel rebuilt?
23:05.43ToAsTcfhnot easy
23:05.50dekarthe kernel is gpl - so there should be a source for every kernel out there - dunno about android, afaik it's apache license or something so no need to release the source for it. So why are there any driver problems?
23:05.55magnus1i do a lot of kernel porting at work, we pull in all stable releases as soon as possible to minimize fork with mainline
23:06.05*** join/#htc-linux ICEMANno1 (n=ICEMANno@p5B301EC6.dip0.t-ipconnect.de)
23:06.07ICEMANno1hi guys
23:06.19ICEMANno1any updates on calling?
23:07.16magnus1ToAsTcfh: if you try to insmod a v4l2 module built for .29 with an older .27 kernel, linux will complain.. even if you change the module magic, so it actually inserts, chances are big it will just ooops on your ass
23:07.32*** join/#htc-linux Tinyboom (n=nahh@ti0121a340-dhcp0974.bb.online.no)
23:07.46ToAsTcfhdamn
23:07.54ToAsTcfhso no other options
23:08.23magnus1ToAsTcfh: what you can do it to get yourself a vanilla .27 kernel, build your device driver in that tree and then insert that module
23:08.37magnus1it should work if your device driver is isolated from the rest of the tree
23:09.03magnus1but you probably need to do some backporting
23:09.13*** join/#htc-linux Tinyboom_ (n=nahh@ti0121a340-dhcp0974.bb.online.no)
23:09.32ToAsTcfhdamn
23:09.33magnus1if youve done any kernel hacking, it should be possible to pull it off
23:09.49ToAsTcfhsome but not much
23:11.12phhbabijoee: for next release, I/you'll have to remove the htcraphaelmmc stuff in rootfs/init, I'm going to manage wifi better
23:11.12magnus1what happens if you try to insmod it just as it is?
23:12.50ToAsTcfhdamn i cant remember the name of the module hold up
23:14.38ChicagoHow far along is support for the Titan? When I first gave it a shot and compiled a kernel, I had to go out and find special keyboard support. (This was in October 2008).
23:15.18ChicagoI happen to have two Titans sitting here and am wondering if making Gentoo do distcc across them is now possible.
23:17.23ToAsTcfhadb shell insmod /dev/msm_camera/control0
23:17.23ToAsTcfhinsmod: can't open '/dev/msm_camera/control0'
23:17.38ToAsTcfhmagnus1:^^^^^
23:18.02magnus1hum, well, thas not your module
23:18.03magnus1thats a device
23:18.22magnus1or a device node
23:18.39ToAsTcfhi dont klnow what the name is
23:18.45ToAsTcfhshit
23:20.44ToAsTcfhpm
23:20.46ToAsTcfhthats what happens when i open camera
23:21.03ToAsTcfhliboemcamera is something new in 2.0
23:21.18ToAsTcfhbefor it was libqcamera
23:21.45magnus1so you are trying to run 2.1, but the camera does not work?
23:22.02ToAsTcfhyes
23:24.44magnus1but your camera works in some older version?
23:24.44magnus1and you want to move the old camera module into the new system?
23:24.44magnus1i thought you wanted to move the module from a NEWER kernel to a slightly older?
23:27.45dekarChicago, what are titans? a phone by htc? can't you have distcc run on a normal pc and crosscompile instead?
23:28.34Chicagodekar, the Titan is an HTC P Series (PocketPC Phones)
23:31.09NetRippera titan is a ship in Eve Online
23:31.22dekaryeah -.-
23:31.26NetRipper;p sorry
23:31.29dekarXD
23:31.43NetRipperguess my new addiction
23:33.23dekarChicago, so can't you run distcc on a machine with some more ghz? I can imagine a full gentoo compilation taking several years on a phone XD
23:34.07Chicagodekar, Yes. When I looked at this in 2008, I did the compile on a 650MHz Athlon K7 with 'emerge crossdev'...
23:34.49dekarhmm 650mhz - how long did it take? :P
23:34.58Chicago25 minutes for the kernel
23:35.22Chicagomaybe an hour... but I had to compile it lots of times to get it right... (these days, I'm on greener pastures for CPU spped)
23:36.11dekarwow, the kernel takes about that time on my core2 - I would have thought it'd take much longer
23:37.13Chicagodekar, If I am beginning to remember the whole story... by the second or third time, I involved a P4 and a laptop with a core2 to help.
23:37.35ChicagoBut the crossdev distcc wouldn't be fun with a new compiler...
23:38.04ChicagoBecause with -march=native, I'd want to see about at least compiling mplayer natively on the phone
23:38.25dekarI don't think compiling CAN be fun - I'm on debian and compile only when I have to ;)
23:39.21Chicagodekar, Then in your model, I had to have fun... because I wanted to compile Gentoo.
23:40.19dekarIn my model compiling can't be fun :P
23:41.21ChicagoIn my model, compiling can't be fun (in Debian)... although I haven't had to do it too much in there...
23:43.16dekarlol why would compiling be different on debian? cause you have no ebuild and can't remember how to do it without? :D
23:45.07Chicagodekar, Debian is a binary based distribution. The ebuild feature and portage are what makes Gentoo a meta-distribution. I find it kind to turn crap chips of days past into masterpieces by letting them cycle compiling themselves new all the time...
23:45.16ChicagoBut back to the Titan!
23:45.39phhChicago: which soc is it based on ?
23:46.07Chicagophh, I think MPM7500 is the right answer; but I've yet to dig up my PDFs from the last time I pulled them (just getting into it). Happy New Year!
23:46.16phhMPM ?
23:46.31phhMSM.
23:46.35ChicagoThanks, sorry
23:46.41phhcdma stuff. bah.
23:47.09ChicagoYes, it definitely CDMA.
23:47.18phh64MB RAM ? ouch
23:48.07Chicagophh, yes only 65MB RAM. I am in possession of a 2GB SD card a 4GB and an 8GB SDHC, (which I used previously)... My kernel kinda never got as far as getting a network connection after mounting root.
23:48.23Chicago... I thought about IP over IR for fun at the time, but didn't get it working.
23:49.35phhusbnet might work
23:51.13phhbut I know no linux distribution which will be able to run with 64MB :/
23:51.16phhI mean no usable one.
23:51.28dekarwhich excludes gentoo? :P
23:51.38Chicagowho knows
23:51.51ali1234gentoo can't run a proper desktop in 64mb any more than any other distro can
23:53.11ChicagoI would just like to run a compiler on there for a few apps of choice... like freeswitch, mplayer, vlc and ffmpeg
23:53.46ali1234Chicago: gentoo has a very nice cross compiling system built in, why not use it?
23:54.04Chicagoali1234, I do :) (emerge crossdev) right?
23:54.14ali1234so i'm told, yeah
23:55.04ChicagoGentoo's cross compiling system built the kernel I tried in 2008.
23:55.24ali1234you barely even need it for the kernel
23:55.35ali1234that's one thing that is very easy to cross compile
23:55.59ChicagoI still need to determine the proper radio rom to put in...
23:56.06ali1234it's when you start building a userspace and need configure scripts to work properly, that you need some kind of build system

Generated by irclog2html.pl by Jeff Waugh - find it at freshmeat.net! Modified by Tim Riker to work with infobot logs, split per channel, etc.