irclog2html for #htc-linux on 20070109

00:01.24cr2hmm. used hx4700 as a base.
00:03.02psokolovskycr2, we all need do some grepping before starting implement sth ;-). h4000 has 2 such and 2 such leds (2 green ;-) ).
00:03.14cr2int gpio_num;   /* Number of GPIO if hw_num == -1 */
00:03.25cr2how is it counted ?
00:04.00cr2well, it's difficult to keep track of all ports ;) for us mere mortals :)
00:04.06psokolovskycr2, as we discussed - "thru, natural numbering. GPIOA0 = 0, etc...
00:04.20cr2up to 63 ?
00:05.27psokolovskycr2, yup. it would be nice to make something like hacking sessions, when active ports/mainatainer hack on oen feature (like that ak4641 hacking ;-))
00:05.33psokolovskycr2, yep, up to 63
00:06.12cr2ok.
00:08.36goxboxlivecr2: Have you made the Kconfig yet, or is it a lot of work?
00:13.38cr2goxboxlive: in 5 minutes.
00:13.50goxboxliveok
00:18.30cr2compiling.
00:18.34goxboxlivegood
00:18.59cr2ok.
00:19.31cr2what did you want me to change in the defconfig ?
00:19.38cr2remove zaurus ?
00:20.03goxboxlivedo we need it?
00:20.08goxboxlivekerberos
00:20.19goxboxlivepppoex
00:20.45cr2no, but i don't see it in menuconfig.
00:20.48goxboxliveHave to take a crying child, bb in 5 min
00:23.12cr2find . -name Kconfig | xargs grep -i krb5
00:25.44cr2secure rpc is not selected.
00:26.39cr2ok. found zaurus.
00:27.25cr2removed pppoe
00:27.57cr2config NFS_V4
00:27.57cr2<PROTECTED>
00:27.57cr2<PROTECTED>
00:27.57cr2<PROTECTED>
00:28.19cr2then we should remove NFS_V4 support.
00:28.28cr2keep it.
00:32.01cr2goxboxlive: done.
00:35.09cr2now the major brick is the full ak4641 support.
00:35.23cr2and the cameras. but it can wait.
00:35.42cr2i wish motorola has written more clean code ;)
00:36.33goxboxlivei'm backi am updating cvs now
00:39.52cr2goxboxlive: i can write a gazillion of "radio buttons" and slider controls for ak4641 but BabelO should tell me what kind of them he needs for qtopia.
00:40.09goxboxliveok, good
00:40.30BabelOcr2: gazillon of "radio buttons" ?
00:42.21cr2yes. 3 mics for example.
00:42.53cr2do you know any good alsa controls documentation ?
00:43.02cr2https://bugtrack.alsa-project.org/wiki/wikka.php?wakka=MixerAPIalsalib
00:43.09cr2this one is not very helpful.
00:44.11*** join/#htc-linux tudenbart (n=willi@xdsl-213-196-220-245.netcologne.de)
00:45.23BabelOno documentation about alsa, i read a time ago code of jack driver
00:45.27BabelOit was clean
00:46.19cr2ACTL(playback_volume, "Master Playback Volume")
00:46.20cr2ACTL(mic_gain, "Mic Capture Gain")
00:46.57cr2right now i see these two.
00:47.10cr2the first is a "slider" (options range), the second one is a "switch" (2 options).
00:47.55cr2ACTL_BOOL(playback_switch, "Master Playback Switch")
00:47.55cr2ACTL_BOOL(mic_boost, "Mic Boost (+20dB)")
00:48.28BabelOit is like Kmix entry
00:48.36cr2it seems that's all.
00:48.54cr2and we need to have common controls with uda1380.
00:49.14BabelOHow do you choose mic ? you have only one ?
00:49.22cr2hmm. ACTL(mic_gain, "Mic Capture Gain")
00:49.27cr2seems to be a slider too.
00:49.36cr23
00:49.44cr2int,ext,BT.
00:50.00cr23 "speakers"
00:50.08cr2int,ext,bt.
00:50.26cr2and the phone "own" speakers.
00:50.27BabelOUniversal is a really nice HomeCinema :)
00:50.36cr2but they are controlled by AT commands.
00:50.44cr2yeah. with 2 cams.
00:51.33BabelOok i copy that into Klipboard since ibot are down :(
00:52.50cr2Documentation/sound/alsa
00:53.01cr2does not have ACTL, ACTL_BOOL
00:53.04goxboxlivehave to reboot, gcc is killing my computer
00:54.51cr2it's a hack by Giorgio
00:55.05cr2ACTL_BOOL(playback_switch, "Master Playback Switch")
00:55.05cr2ACTL_BOOL(agc, "AGC")
00:55.05cr2ACTL_BOOL(capture_switch, "Capture Switch")
00:55.12cr2these are for uda1380
00:55.53cr2even more cryptic controls:
00:55.58cr2ACTL_REG_ELEM_INT_STEREO(playback_volume, "Master Playback Volume", 0x10, 0, 0xffff, 1, 0)
00:56.02cr2ACTL_REG_ELEM_INT(deemphasis, "De-Emphasis", 0x13, 0, 0x0007, 0, 0)
00:56.06cr2ACTL_REG_ELEM_INT(tone_ctl_strength, "Tone Control - Strength", 0x12, 14, 0x0003, 0, 0)
00:56.10cr2ACTL_REG_ELEM_INT_STEREO(tone_ctl_treble, "Tone Control - Treble", 0x12, 4, 0x0303, 0, 0)
00:56.10cr2ACTL_REG_ELEM_INT_STEREO(tone_ctl_bass, "Tone Control - Bass", 0x12, 0, 0x0f0f, 0, 0)
00:56.10cr2ACTL_REG_ELEM_INT(mic_gain, "Mic Capture Volume", 0x22, 8, 0x000f, 0, 0)
00:56.10cr2ACTL_REG_ELEM_INT_STEREO(line_in_gain, "Line Capture Volume", 0x21, 0, 0x0f0f, 0, 0)
00:56.11cr2ACTL_REG_ELEM_INT_STEREO(capture_volume, "Capture Volume", 0x20, 0, 0xffff, 0, 1)
00:56.51cr2but these are relatively static.
00:57.18*** join/#htc-linux goxboxlive (n=goxboxli@9.80-202-160.nextgentel.com)
00:58.26cr2heh. openmoko can be quite handy, but it's just not there.
00:59.54jjazzWhat's not there?
01:00.19cr2the source
01:00.57cr2and the hardware too, but i'd like to look at the sound mixer controls.
01:01.21goxboxlivethis ones should also be removed:
01:01.23goxboxlive<PROTECTED>
01:01.23goxboxlive<PROTECTED>
01:01.28jjazzSource should be available soon.  If you want it sooner, it might be possible.
01:01.30cr2to save me some time understanding this complex stuff.
01:01.51cr2goxboxlive: it is selected by NFS_V4
01:01.59goxboxlivei c
01:02.27goxboxlivebooting now
01:02.27cr2jjazz: it's a wm7xxx codec ?
01:03.37jjazzcr2: I don't know what it is.  I haven't seen the code either.
01:03.53goxboxliveroot@htcuniversal:~$ ls -la  /sys/class/leds/
01:03.53goxboxlivedrwxr-xr-x    9 root     root            0 Jan  9 02:04 .
01:03.53goxboxlivedrwxr-xr-x   27 root     root            0 Jan  9 02:04 ..
01:03.53goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:flashl
01:03.53goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:green
01:03.54goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:kbdbac
01:03.56goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:phoneb
01:03.58goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:red
01:04.00goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:vibra
01:04.02goxboxlivedrwxr-xr-x    2 root     root            0 Jan  9 02:04 htcuniversal:wifi-b'
01:04.04goxboxliveI'll try them out
01:04.12jjazzcr2: I mentioned that you guys are hacking linux on the universal to Sean Moss-Pultz (an OpenMoko guy).  I told him this in the context of you being interesting and a project he might want to be aware of.  He expressed interest in an introduction.  If you want to ask him directly for some source code, I'd be happy to put you in contact.
01:05.11goxboxlivebrightness works
01:05.47goxboxlivegreen works
01:06.09cr2jjazz: good idea, but to be honest i'll be quite busy in the next two weeks.
01:06.14goxboxlivekeyboard backlight works :-=
01:06.19goxboxlive:-)
01:06.30cr2goxboxlive: be careful with the flash.
01:06.59goxboxlivejust tested it
01:07.06cr2:)
01:07.09goxboxlivephoneback buttons work
01:07.21jjazzcr2: Fair enough.  The intro is an open offer.
01:07.32goxboxlivered works
01:07.56goxboxlivevibra works
01:08.48goxboxliveWIF LED doesnt work. Maybe i have to have ACX loaded to let it work.
01:09.39goxboxliveYes, the wifi led works when i load the acx module.
01:11.15goxboxlivecr2: It doesnt seems like i can control the wifi led. Even though i have removed the acx module it still flashes. I have also tried to shut it of manually, but with no luck.
01:11.32goxboxliveBut, great work, the leds are now finished.
01:12.07cr2goxboxlive: the wifi led is under the htcuniversal_acx control.
01:12.27goxboxliveok, i cant remove that one, it breaks the system
01:12.51cr2the PWM is on asic3 led0, but the actual gpio enable is in htcuniversal_acx
01:13.06cr2it's a broken driver design.
01:13.15goxboxliveThe power led is not The BT led is also working when enabling BT, it also shuts off when diableing BT
01:13.56cr2bt led is also controlled by htcuniversal_bt
01:14.05goxboxliveThe power led is working when i control it manuallym, but it doesnt react when i plug in a usb/power cable
01:14.31cr2yes, i'll look at htcuniversal_power and compare it with hx4700_power.
01:14.41goxboxlivewhy isent the power led controlled by the htcuniversal_power?
01:14.46goxboxlive:-)
01:14.50goxboxlivei didnt see that
01:14.55cr2the code was commented out.
01:14.59goxboxliveok
01:15.18goxboxlivehow can we controll the keyboard backlight?
01:16.40cr2does qtopia support it ?
01:17.02cr2can you think out a logic ?
01:17.17goxboxlivei dont know, but is there a way to make a driver for the luminance sensor?
01:17.35cr2it can be certainly done inside qtopia.
01:17.56cr2it needs its switch in linux/input.h
01:18.04cr2afaik zaurus does not support it.
01:18.09goxboxliveBut, if we make it in Qtopia, the we have to make it for OPie/GPE bootstrap and so on
01:18.27goxboxliveSo we will break zaurus if we include it?
01:18.43cr2then you only need to handle the switch. like LID or ROTATE switches.
01:18.47cr2no.
01:19.16cr2the kernel  side is finished with /sys/leds/...
01:19.34goxboxliveahh, i c
01:19.36cr2for opie you need to edit odevice_htc.cpp i guess.
01:19.41goxboxliveright
01:19.45cr2gpe- don't know.
01:19.52goxboxliveme neither
01:19.59cr2in text mode you should use shell :)
01:20.26goxboxliveYes, thats easiest
01:20.35cr2i'd really like to see full qtopia support.
01:20.47goxboxliveme to, i guess we will
01:20.58goxboxliveBabelO has done a great job
01:20.58*** join/#htc-linux Hawk|- (n=Hawk@p57A5444C.dip0.t-ipconnect.de)
01:21.00cr2BabelO made very good progress with the phone.
01:21.09goxboxlivehe has, good
01:21.35goxboxliveI am compiling a new one now, with htc button support
01:21.38cr2i only need to port zroadmap :)
01:21.42goxboxlive:-)
01:22.00goxboxliveBut, there is a thing i dont understand
01:22.07cr2goxboxlive: you can read at xda-dev why including the modules into opie image is bad.
01:22.44cr2the people use your image on alpine, and do very silly things.
01:22.48goxboxlivethe lid/rotate and luminance sensors, they are all hardware, why shouldnt they exist in the kernel?
01:23.04goxboxliveHow, does opie know when the swithc is activated
01:23.23cr2the kernel sends them to /dev/input/eventXXX. it#s enough for the kernel.
01:23.35goxboxliveOk, they should replce the modules
01:23.44goxboxliveok, like TS
01:23.45cr2the same with the keyboard , btw.
01:23.56goxboxliveBut, are they listed there now?
01:24.13cr2who ?
01:24.28goxboxliveNo they are not, the lid/rotate and luminance sensor
01:24.44cr2LID and ROTATE -yes.
01:24.51goxboxliveno
01:25.06cr2but we need to extend the asic3_keys driver to suppport switches.
01:25.16goxboxliveroot@htcuniversal:~$ ls -la /dev/input/
01:25.16goxboxlivedrwxr-xr-x    2 root     root          140 Jan  9 02:04 .
01:25.16goxboxlivedrwxr-xr-x   12 root     root         3480 Jan  9 02:04 ..
01:25.16goxboxlivecrw-rw----    1 root     root      13,  64 Jan  9 02:04 event0
01:25.16goxboxlivecrw-rw----    1 root     root      13,  65 Jan  9 02:04 event1
01:25.17goxboxlivecrw-rw----    1 root     root      13,  66 Jan  9 02:04 event2
01:25.19goxboxlivecrw-rw----    1 root     root      13,  67 Jan  9 02:04 event3
01:25.21goxboxlivelrwxrwxrwx    1 root     root            6 Jan  9 02:04 touchscreen0 -> event
01:25.23goxboxliveok
01:25.33cr2asic3_keys is event2
01:25.36goxboxlivei know
01:25.45cr2you'll get switches on this device.
01:25.49goxboxliveright
01:26.08goxboxlivei thought there where one event for each
01:26.15cr2yes.
01:26.29cr2each has it#s own switch.
01:26.36goxboxliveyes i understand
01:26.59goxboxliveIt's so good to have the key led working again
01:27.07goxboxliveNow i can see the buttons :-)
01:27.16goxboxlivei'm getting to old for this shit
01:29.27goxboxliveWell, once again it's getting to late. I have to go to bed, g'night.
02:08.04*** join/#htc-linux phongred (n=phongred@203.113.144.83)
02:08.08phongredhi alll
02:54.30phongredhelpl me
02:55.25phongredWho can help me telnet PC windows to PPC BlueAngel  by Haret?
02:55.41phongredWho can help me telnet PC windows to PPC BlueAngel WM2005  by Haret?
03:16.53*** join/#htc-linux lkcl (n=lkcl@5ac274ca.bb.sky.com)
03:33.19phongredhelp
03:58.20*** join/#htc-linux digitalfredy (n=j@200.71.62.161)
03:58.47digitalfredyhello
03:58.50phongredhelp me
03:59.15phongred<PROTECTED>
03:59.39phongredi want setup Linux with my PPC.
03:59.39phongredi have some problem:
03:59.39phongredwhen I click haret-0.3.8.exe then Linux run.
03:59.39phongredScreen show stop at
03:59.40phongredFamiliar login:root
03:59.40phongredand Password:rootme
03:59.42phongred~#
03:59.43apti guess # is pound, or hash, or sometimes the number sign. a tic-tac-toe board
03:59.44phongredafter login, i can't fdisk, because hard keyboard cant add "+31M" . "+" not show.
03:59.46phongredWho can help me add " + " charactor or telnet PC windows to PPC BlueAngel WM2005 by Haret?
04:01.52digitalfredyy have a wizard phone and like try put linux in it
04:03.48phongredlol
04:03.54phongredyou cant help me?
04:03.59phongredsorry
04:04.06phongredcan you help me?
04:04.15phongredlol
04:09.59digitalfredyi don`t know
04:10.19digitalfredyphongred, what is your problem
04:10.39phongredyes
04:11.08phongredi want setup Linux with my PPC.
04:11.08phongredi have some problem:
04:11.08phongredwhen I click haret-0.3.8.exe then Linux run.
04:11.08phongredScreen show stop at
04:11.08phongredFamiliar login:root
04:11.09phongredand Password:rootme
04:11.10phongred~#
04:11.11apt# is, like, pound, or hash, or sometimes the number sign. a tic-tac-toe board
04:11.12phongredafter login, i can't fdisk, because hard keyboard cant add "+31M" . "+" not show.
04:11.14phongredWho can help me add " + " charactor or telnet PC windows to PPC BlueAngel WM2005 by Haret?
04:12.17digitalfredystop
04:12.31digitalfredywhat is ppc for you?
04:12.52digitalfredymac?
04:13.30Ralithhe means pocketpc
04:14.00digitalfredyok
04:14.26digitalfredytry man ascii
04:15.37digitalfredyor try ssh
04:16.13digitalfredyphongred, you ppc have ssh?
04:16.27digitalfredyphongred, ping
04:19.11phongredppc bLUEANGEL 2005
04:19.39phongredPC using windows XP and 2000
04:19.56phongredPPC o2s Blueangel
04:20.33digitalfredyin the ppc linuxphone
04:20.43digitalfredycd /
04:20.45digitalfredyls
04:21.18phongrednow you want me run linux
04:21.28phongred?
04:22.21digitalfredyyes, not is htc-linux it chanel?
04:22.47digitalfredyyou have or not linux in your ppc?
04:23.01phongredi have
04:23.07digitalfredyok
04:23.16phongredbut
04:23.29digitalfredyyou have a console and you are root?
04:23.41phongredi run linux with Haret file.
04:23.58phongredafter login i cant fdisk storagecard
04:24.45phongredsorry u can wait few min, I have lunch
04:24.52digitalfredyok
04:24.55phongredthanks you
04:25.17phongredi'm working in company, lol
04:25.24digitalfredyok
04:40.39*** join/#htc-linux RoEn_PC (n=roen@p54A6733F.dip.t-dialin.net)
04:58.57phongredhello
04:59.00phongredi'm here
04:59.02phongredlol
05:09.15*** join/#htc-linux RoEn_PC (n=roen@p54A6733F.dip.t-dialin.net)
05:46.11phongredalo
05:46.23phongred<digitalfredy>  help me
06:12.12kimuSan^morning all
06:17.37phongredgoogd morning
07:19.54*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
07:26.09*** join/#htc-linux goxboxlive (n=goxboxli@9.80-202-160.nextgentel.com)
07:33.57*** join/#htc-linux rob_w (n=rob_w@p549B8B3D.dip0.t-ipconnect.de)
07:57.33phongred22222
07:58.57*** join/#htc-linux pH5 (n=ph5@e178198064.adsl.alicedsl.de)
08:02.53phongredhelp help help help help help
08:07.37*** join/#htc-linux TripleDES (n=sergio@89.129.136.254)
08:36.44*** join/#htc-linux TripleDES (n=sergio@89.129.136.254)
08:43.08phongredhix
08:53.21rob_wphongred, are you alright ?
08:55.31phongredi'm here
08:55.40phongredhello Rob
08:55.56rob_wall ok , dude ??
08:55.58phongredi have problem
08:56.26phongred<PROTECTED>
08:56.53phongredi want setup Linux with my PPC.
08:57.06phongred<PROTECTED>
08:57.13*** join/#htc-linux TripleDES (n=sergio@89.129.136.254)
08:57.20rob_wphongred, figure out the sectors you need and dont use +
08:57.38phongredyes
08:58.04phongredi cant add charactor + by hard keyboard of My phone
08:58.38phongred<rob_w> phongred, figure out the sectors you need and dont use +  <=== don't use
08:58.50phongred?
08:58.55rob_wright, i got that ,, enter the size of the partition by entering a absolute sector end
08:59.11phongredno need +
08:59.17rob_wso ?
08:59.20phongredu sure
09:00.03rob_wyes at fsdisk you first enter the start sector and then the end sector ( or "+XXM" ) if your to lazy to calculate
09:00.27phongredyes
09:00.30rob_wso now you need to calculate the sector .. or guess it accorind to the max sectors you have and the percentage of size you wanna reach
09:00.34phongredi think so
09:01.04phongredi cant fdisk because i cant chooose + charactor
09:01.31rob_wDUDE
09:01.37rob_wlisten to me now ok !=?!=
09:01.45phongredokie thank
09:01.46rob_wYOU DONT NEED +
09:01.50phongredsorry
09:01.50rob_wOK ?
09:01.58phongredokie
09:02.27rob_wso go use fdisk .. and wen you get to the "define " the size / aka the end sector .,, just type a number according to the max sectors you have ..
09:02.31rob_wgot that ?
09:03.05phongredokie
09:03.10rob_wDisk /dev/sda: 60.0 GB, 60011642880 bytes
09:03.11rob_w255 heads, 63 sectors/track, 7296 cylinders
09:03.20rob_wactually the cylinders is the number ..
09:03.41rob_wif i want to have 30GB partition i take half of 7296 as end cylinder ..
09:03.46phongredoh no
09:04.18phongredi using storage card 256mb
09:07.17phongredu can training to me setup linux with phone Blueangel WM2k5?
09:07.26phongredbegin to end
09:07.28phongredlol
09:07.30phongredthanks
09:08.51rob_whe
09:17.14phongredlol
09:18.49phongredcan u help me
09:21.35phongredbye bye
09:22.09phongrednow we off time working! thank you.
09:45.27*** join/#htc-linux BabelO (n=m293@faim1.itesoft.com)
09:45.46BabelOhi
09:46.44BabelOcr2 : in qtopia there is support for keypadlight :) ( qkeypadlightaccessory.cpp ) need  only to implement led driver
09:50.27rob_wnice
10:22.36*** join/#htc-linux psokolovsky (n=psokolov@238.usernat.ip.net.ua)
10:36.46*** join/#htc-linux goxboxlive (n=goxboxli@195.159.97.196)
10:41.44*** join/#htc-linux hlbot (n=adm@iclem.net)
10:50.12goxboxlivegood morning or what ever
10:51.52TripleDESmorning
10:54.27pH5good morning
10:55.37*** join/#htc-linux LunohoD (n=alex@e180100250.adsl.alicedsl.de)
11:21.25*** join/#htc-linux goxboxlive (n=goxboxli@195.159.97.196)
11:50.43*** join/#htc-linux Hawk||- (n=Hawk@p57A5444C.dip0.t-ipconnect.de)
12:27.59cr2BabelO: but we have 2 or them. the similar problem is on the universal/hermes with 2 cams.
12:38.20gxl|workHave you started to look at the cams allready cr2?
12:48.36kimuSan^has anyone had bluetooth up and running in linux on any of the devices?
12:50.26gxl|workkimuSan: Yes on the HTC Universal bluetooth is running
12:51.03gxl|workI have tried to get a bluetooth headset work, but still fighting against the connection.
12:51.46gxl|workBut i have allready used a bluetooth GPS on it. GPSD is working, but qpegps is not.
13:02.20*** join/#htc-linux tudenbart (n=willi@xdsl-213-196-220-55.netcologne.de)
13:05.08kimuSan^ok cool. HID is one of the easy ones, so there should be no problem getting that to work.
13:06.37gxl|workgood, i have also tried out HID with Opie, but it didnt work, i guess there where some missing QWS export or something in Opie.
13:06.50gxl|workMaybe i should try it out with GPE later
13:10.08BabelOcr2 : you have two keypad light on universal ? like on BA, one for keyboard and other for phone button ?
13:16.34*** join/#htc-linux Fossi (n=cmewes@195.177.48.115)
13:16.38gxl|workhi BabelO
13:16.41gxl|workwe have
13:17.29gxl|workone for phone buttons and one for keyboard, one for flashlight
13:17.59gxl|workAll in event2
13:18.52gxl|workWe have also vibration, but i guess also BA has it. Good to know while you building the phone app.
13:24.27BabelOgxl|work : if i understand how spacer are working in QT, i will send you app already compiled to see it with your screen size
13:25.03BabelOgxl|work can you try gnokki this evening when you have some time ?
13:39.39*** join/#htc-linux BabelO (n=m293@faim1.itesoft.com)
13:46.19gxl|workBabelO: Yues send mne whatever you want, i'll test it :-)
13:46.38gxl|workI have gnokii on my device, what do you want me to try?
13:48.53BabelOgxl|work : ok, i have call and network operator name working with a small windows like gui ( sorry cr2 for the sample), i m now trying to find if qtopia can monitor modem device or if i make a thread for this.
13:50.02BabelOgxl|work under gnokii you have to setup a gnokiirc file in /home/root.gnokiirc ... after try command like gnokii --identify with debug mode enabled ( debug = on )
13:50.17BabelOsorry /home/root/.gnokiirc
13:53.58gxl|workok. i'll try ehn i come home
13:57.17BabelOok thanks
13:59.01Kmarc1
14:02.50*** join/#htc-linux silven (n=zmc@adsl-72-50-76-164.prtc.net)
14:12.49*** join/#htc-linux silven (n=zmc@adsl-72-50-76-164.prtc.net)
14:44.08*** join/#htc-linux dothebart (n=willi@xdsl-213-196-220-55.netcologne.de)
15:05.51*** join/#htc-linux BobOfDoo1 (i=ato@61-69-0-151.netspeed.com.au)
15:18.09*** join/#htc-linux rejon (n=rejon@140.109.175.228)
15:18.22*** part/#htc-linux rejon (n=rejon@140.109.175.228)
15:35.18*** join/#htc-linux logan (n=logan@108.Red-83-55-49.dynamicIP.rima-tde.net)
15:35.44loganhello
15:36.36loganI have a magician phone qtek s100
15:38.29loganan I would like to install magician-gpe-image with magician-zImage-2.6.20
15:39.27loganI see there is a new patch for this version
15:40.49loganwho I can apply the patch
15:40.51logan?
15:41.50*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
15:42.21*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
15:46.08pH5hey logan. extract the tarball into the 2.6.20-rc4 source directory and apply the patches with "quilt push -a"
15:46.18pH5btw, I'm currently in the progress of building a new angstrom image
15:52.18loganI don't have the 2.6.20-rc4 sources
15:52.42loganI have to download the 2.6.20-rc4 sources from kernel.org, isn't it?
15:54.17pH5logan: correct. or you can download the 2.6.19 version from handhelds.org cvs (which has the magician patches).
15:55.52loganok
15:57.22loganwhich you advise to me?
15:57.23*** join/#htc-linux jeanseb (n=jeanseb@88.164.32.155)
15:58.23pH5logan: if you compile your own kernel anyway, use 2.6.20-rc4.
15:58.59pH5it has experimental support for wake-up from GSM, so the phone is nearly usable.
15:59.23loganok thank you pH5
16:07.18loganpH5: do you know where I can donwload the 2.6.20-rc4 source package
16:07.27logan?
16:07.30loganI only have found the 2.6.20-rc4 patch
16:08.38pH5logan: you have to download the 2.6.19 tarball + 2.6.20-rc4 patch
16:08.59loganok
16:09.35pH5I use git to download the latest sources. I found it is hard to understand in the beginning, but it is much faster.
16:24.55*** join/#htc-linux g3gg0_ (n=g3gg0@ppp-62-245-209-175.dynamic.mnet-online.de)
16:25.00*** part/#htc-linux g3gg0_ (n=g3gg0@ppp-62-245-209-175.dynamic.mnet-online.de)
16:27.14*** join/#htc-linux rob_w (n=rob_w@p549B8B3D.dip0.t-ipconnect.de)
16:30.23*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
16:30.47*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
17:09.44*** join/#htc-linux BabelO (n=m293@faim1.itesoft.com)
17:25.15*** join/#htc-linux RoEn_PC (n=roen@p54A6733F.dip.t-dialin.net)
17:28.10*** join/#htc-linux bd2 (n=ufo@89.113.84.151)
18:05.52*** join/#htc-linux goxboxlive (n=goxboxli@9.80-202-160.nextgentel.com)
18:06.12*** join/#htc-linux VisN (n=VisualN@ip227.131.adsl.wplus.ru)
18:06.16VisNhi
18:06.37pH5hi VisN
18:07.42goxboxlivehello
18:10.03VisNthe kernel magician-zImage-2.6.20-rc4-20070108 cant found /dev/mmcblk0p2 to mount as root fs, but with magician-zImage-2.6.18-20060927 root=/dev/mmcblk0p2 works fine
18:10.39VisNwhat the now name of two partition in the magician-zImage-2.6.20-rc4-2007010?
18:10.47VisN*new
18:11.34VisNI using http://userpage.fu-berlin.de/~zabel/magician/
18:11.48psokolovskyHi!
18:12.00*** join/#htc-linux rob_w (n=bob@p85.212.133.97.tisdip.tiscali.de)
18:12.56psokolovskypH5, do you know that forked tslib config for 2.6 is now considered harmful? there's now nice default config which should suit all of them (sane ones; zaurus not counted, of course)
18:13.22pH5VisN: it's still the same. you have to add "rootdelay=1" to your kernel command line in the haret configuration
18:14.19pH5psokolovsky: yeah, hrw noticed this already. I had this in my local tree for a long time. I'll test with the default configuration and remove this script.
18:14.28VisNpH5, ok, thanks, I'll try it
18:14.33psokolovskypH5, cool, thanks
18:41.53VisNpH5, with rootdelay=1 kernel works, but GUI dont
18:42.07VisNI using rootdelay=1
18:42.10VisNI using magician-gpe-image-20060922.tar.bz2
18:43.07pH5VisN: did put the 2.6.20-rc4 modules into the root fs?
18:43.20VisNyes
18:44.25VisNI put modules from magician-modules-2.6.20-rc4-20070108.tar.bz2 to my sd card
18:45.33pH5VisN: can you connect via usbnet?
18:46.04VisNkernel loads, GUI starts but I see only black screen with "X" and some time its blink white color
18:46.40VisNpH5, I never do it before
18:47.47*** join/#htc-linux BabelO (n=Fabrice@lun34-2-82-238-28-28.fbx.proxad.net)
18:48.03pH5VisN: I have just built a new angstrom gpe image, but I need to test it and perhaps fix some things before uploading.
18:48.17goxboxlivehi BabelO
18:48.23BabelOre
18:48.58goxboxliveI have tried gnokii, but i get:
18:49.00goxboxliveroot@htcuniversal:~$ gnokii --identify
18:49.00goxboxliveGNOKII Version 0.6.13
18:49.00goxboxliveOrphaned line: port = /dev/ttyS0
18:49.00goxboxliveOrphaned line: model = AT
18:49.00goxboxliveOrphaned line: initlength  = default
18:49.01goxboxliveOrphaned line: connection = serial
18:49.03goxboxliveOrphaned line: bindir = /usr/bin/
18:49.05goxboxliveOrphaned line: debug = on
18:49.07goxboxliveCouldn't open /home/root/.gnokiirc or /etc/gnokiirc
18:49.32VisNpH5, ok, I'll be waitin for your built a new angstrom gpe image
18:49.34BabelOwhere is your gnokiirc file ?
18:49.49goxboxliveI dont know why it says couldnt nor open, because it has listed up the content in the .gnokiirc file
18:49.55goxboxlive/home/root/.gnokiirc
18:50.10pH5VisN: I just don't know what this old gpe image doesn't like about the new kernel.
18:50.32goxboxliveBabelO: I have also tried to change the rights on /dev/ttyS0 but it didnt help either.
18:52.28cr2goxboxlive: run it with strace
18:52.35goxboxliveok
18:54.26goxboxliveBabelO / cr2 http://pastebin.ca/311279
18:56.21cr23.5" with 160dpi. is it vga ?
18:57.42goxboxlivewich?, the iPhone
18:58.10cr2yes.
18:58.16*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
18:58.31*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
18:59.06cr2if you'll buy one, we will port linux :D
19:00.16pH5cr2: hx4700 is 200dpi, 4" 3:4
19:00.21VisNpH5, you'll put new angstrom gpe image into userpage.fu-berlin.de/~zabel/magician/ ?
19:01.12BabelOgoxboxlive: i don't know the problem :(if you change content of file it change value on screen ?
19:01.55goxboxliveI can try to delete the gnikiirc fiel and see what it says
19:02.06goxboxliveDid you edit the source before building it?
19:03.38BabelOgoxboxlive: i edit source, but you should have some trace with current config
19:04.13goxboxliveok
19:06.21goxboxliveWhat is the owner of /dev/ttySx for the phone?
19:06.46pH5VisN: yes. either that, or I'll put a link there
19:07.41BabelOgoxboxlive: i don 't know that, if you do this as root, no problem
19:08.18goxboxlivewell it is with cu. With cu i have to change the owners right to uucp.
19:08.31VisNpH5, ok, thank you!
19:19.57rob_wgoxboxlive, make urself the owner ;-)
19:20.16goxboxlivebeen there done that :-)
19:21.00rob_wheh i just finished a proposals for 2 killer tablet pc`s in the 3600 € ...
19:21.29rob_wpoor people to buy this , as in 6 month they will have a immense cost loss ,, but the devices are a killer
19:23.06Ralith:P
19:30.30cr2pH5: you are right. universal is 3.6" VGA, and it's certainly >200dpi
19:31.55cr2goxbxolive: the owner of a serial device should be uucp.uucp
19:32.21cr2it's an old unix tradition, and there is a lot of sense behind.
19:32.45*** join/#htc-linux Fossi (n=Fossi@e176105070.adsl.alicedsl.de)
19:33.08goxboxliveok
19:33.18cr2i see that we are switching to/from the headphone in the kernel. zaurus has a SW_* event for it.
19:33.46goxboxliveok
19:34.10goxboxliveThe ownership of ttyS0 didnt help gnokii either.
19:34.13cr2maybe it's the way to go, but it's probably too early to talk about it.
19:34.24cr2have you run with strace ?
19:43.09kimuSan^damn. kinda hard to install a driver onto my trin when there's only a setup.exe and no  cab files....especially when I only have linux computers
19:43.11goxboxliveyes
19:43.53*** join/#htc-linux Ro_En_PC (n=roen@p54A6733F.dip.t-dialin.net)
19:45.29cr2goxboxlive: what is the error on open("/home/root/.gnokiirc") ?
19:49.19goxboxlivecr2: http://pastebin.ca/311307
19:51.35cr2yes, you don't have /etc/gnokiirc, and it obviuosly wants both to be present
19:52.02goxboxlivedone that now, didnt help
19:52.11cr2sound/soc/codecs has an ak4535 driver. it's not so capable as ak4641, but we can adapt it...
19:52.23cr2post the new strace
19:52.53goxboxlivecr2: http://pastebin.ca/311311
19:53.19cr2open("/etc/gnokiirc", O_RDONLY)         = -1 ENOENT (No such file or directory)
19:53.36BabelOgoxboxlive: try with another chmod to your file
19:53.50cr2BabelO: -EPERM
19:54.00cr2he does not have this file.
19:54.29goxboxliveBabelO: I have also tried that
19:54.35goxboxlivenow it 644
19:54.39goxboxliveagain
19:54.53cr2goxboxlive: it does not matter. the kernel does not see this file.
19:55.42cr2if you have a read permission, you can open it readonly. if you don't have a permission, you'll get the appropriate errno.
19:56.03goxboxliveok, but gnokii find it right. Otherwise it wouldnt list all the content of the file right?
19:56.14goxboxliveok
19:57.08cr2gnokii does not find /etc/gnokiirc. or better: the kernel does not find /etc/gnokiirc
19:58.19goxboxliveok
19:58.51goxboxlivehave to reboot, the machine is so slooooow again.
20:02.16*** join/#htc-linux goxboxlive (n=goxboxli@9.80-202-160.nextgentel.com)
20:02.34psokolovskygoxboxlive, Hi! we agreed on killing getkey from opie startup, right?
20:03.01goxboxlive<psokolovsky> yes
20:03.05psokolovskyok
20:06.09psokolovskygoxboxlive, are you sure there's something wrong with *psplash* regarding opie boot. did you try to boot w/o psplash?
20:06.51goxboxlivepsokolovsky It seems like it is a crash at opie start. Cr2 can confirm it
20:07.08goxboxliveMoving opie over to termoinal three solved the problem
20:07.35psokolovskygoxboxlive, I din't see it crashing, just quiting. but vt change is stil needed, it seems, regardless for hrw says.
20:07.59psokolovskygoxboxlive, I want to hear laternative solutions, not the first random one ;-)
20:09.15goxboxlive<psokolovsky> Opie didnt crash, i have never said that. The shell (bash) where spamming the screen, so the prompt and the debug messages where whiping out Opie
20:09.34psokolovskyyep
20:09.41goxboxliveThe other way i got it removed, where to restart opie, then it disapeard
20:10.02goxboxliveAnother solution might be to let Opie start a little later than it does today.
20:10.31goxboxliveBut anyway, whats the differents if it start sform terminal 2 or terminal 3??
20:11.06psokolovskygoxboxlive, that's the q we should answer. aer you sure there's no regressions due to that?
20:11.07goxboxliveThe diffrrents is, i dont need to restart Opie if it starts at terminal 3
20:11.45psokolovskyhow do you restart it btw?
20:11.45cr2"getkey" should be an opie program, that lets you to get out on a key/button event.
20:11.52goxboxliveI havent noticed anything. Opie is behaving at term-3 as it did on ter-2
20:11.58psokolovskycr2, feel free to make taht one ;-)
20:12.14psokolovskygoxboxlive, now, why not on term1?
20:12.21cr2psokolovsky: i'll better work on qtopia4
20:12.44cr2impatiently waiting for the phone programm by BabelO
20:12.59psokolovskycr2, ok ;-) so getkey gets dropped ;-)
20:13.09cr2and will certainly port zroadmap.
20:13.22goxboxlivecr2: I agree with you, i realy miss getkey, but anyway it's just to restart opie (if u have a working TS or keyboard)
20:13.23cr2well, drop getkey and forget about it.
20:13.28goxboxliveyes
20:13.45goxboxlivecr2: just confirm the shine true shell in opie when it starts at terminal 2
20:14.12goxboxliveAnd explain more techincal than i am able to
20:14.18psokolovskygoxboxlive, pls tell me how you restart opie
20:14.23cr2i know why the x server needs a vt, but why does opie need it ?
20:14.49psokolovskygoxboxlive, well, I see that behavior, I just want to understand why we need whole 3 terms here
20:15.08psokolovskycr2, buy the same reason - to not mix graphic and text consoles ;-)
20:15.14psokolovskythe q is why 3??
20:15.23cr2and the x server always asks for the first free vt
20:15.35goxboxlivepsokolovsky Opie is started with defulat option, i havent done anything with it
20:15.45cr2maybe qpe should do the same ?
20:15.51psokolovskygoxboxlive, how do you *restart* it?
20:16.02goxboxliverestart applet ?
20:16.05psokolovskycr2, it should do many things ;-)
20:16.07cr2why is this parameter is needed is beyond my understanding.
20:16.15psokolovskygoxboxlive, i.e. from within opie?
20:16.26goxboxliveor ctrl+alt+backspace
20:16.29goxboxliveyes
20:16.43cr2goxboxlive: can you suspend in opie ?
20:16.46goxboxliveno
20:17.02cr2then it's worth a bug report.
20:17.11cr2i don't understand it too.
20:17.17psokolovskygoxboxlive, cr2: were you ever able to restart or stop via /etc/init.d/opie ?
20:17.29cr2it's just system("apm --suspend")
20:17.38psokolovskycr2, for me, opie suspended well (familiar opie)
20:17.39cr2psokolovsky: yes. multiple times.
20:17.52psokolovskyand well, I trie dit on hx4700 too, of course (ansgtrom)
20:17.53goxboxlivepsok: yes sometimes, but sometimes opie just freezes
20:17.58cr2psokolovsky: is it in odevice_* ?
20:18.02cr2hmm. i think it is.
20:18.16psokolovskycr2, for me, init.d doesn't stop it ;-(
20:18.18goxboxliveAnd it also freeze sometimes with the restart applet
20:18.39goxboxliveThats why i use ctrl+alt+backspace most of the times
20:19.16cr2i usually login over usb and then start/stop opie this way, and strace the opie apps searching for the bugs.
20:20.05goxboxlivecr2: Yes, that seems to work more stable than using the device.
20:20.25goxboxliveWhen it freeze, it's just to start opie again and it works normaly again
20:21.42*** join/#htc-linux g3gg0_ (n=g3gg0@ppp-62-245-209-175.dynamic.mnet-online.de)
20:21.45*** part/#htc-linux g3gg0_ (n=g3gg0@ppp-62-245-209-175.dynamic.mnet-online.de)
20:24.22goxboxliveBut, actually, i  not using Opie so often anymore. Mostly i use GPE (it's slow) and sometimes Qtopia
20:26.57cr2once we will have a barebones phone app for qtopia, i'll move immediately.
20:27.20cr2goxboxlive: can you upload your qtopia image ?
20:27.47cr2btw, you should not install the modules there.
20:28.19goxboxliveyes cr2: I am just completeing a image now. I'll make a tarball of the sd card
20:28.20cr2psokolovsky: do we have a chance to add the mingwce and haret to OE ?
20:28.34cr2goxboxlive: very good.
20:29.13psokolovskycr2, I'd consider that very interesting myself. But we need to think in what way mingwce will be added...
20:36.07goxboxlivekeyled is resuming :-) I have realy missed keyled
20:39.18psokolovskycr2, goxboxlive : do you know how to enable mouse cursor in opie? ;-D
20:39.58goxboxlivei have tried it out before with HID, but it didnt work
20:39.58cr2hmm. compile it with mouse support ?
20:40.28cr2i think jornada720 should support it.
20:40.36goxboxlivecr2: you have to install libstdc6++ or what's the name before you start qtopie. Also install bluez-utils
20:41.04psokolovskycr2, do you known just some conf setting for that? ;-)
20:41.11goxboxliveIt is uploaded now, download it and let me know when you have finished dowmloading and i delete it
20:41.19cr2goxboxlive: which program depends on stdc++, and why ?
20:41.42cr2i thought qt is standalone ?
20:41.52goxboxliveI dont remember, start qtopa without it and check.
20:41.54cr2ok.
20:45.22goxboxliveI havent ried it though, so i dont know if it works
20:45.32goxboxlives/ried/tried/
20:47.04goxboxlivelibstdc++6 is the correct name
20:49.36goxboxliveAlso remember to run ts_calibrate before you attempt to start qtopia
20:49.56goxboxliveF
20:50.15goxboxlivebtw, forget about bluez-utils, it's allready included in the bootstrap-image
20:51.11cr2done.
20:51.18goxboxlivegood
20:51.20cr2why don't you include /etc/pointercal ?
20:51.37cr2where is libstdc++ ipk ?
20:52.03cr2hmm. it is still downloading.
20:52.11goxboxlivetc_calibrate is included
20:52.28goxboxliveto bad, i have deleted it.
20:52.50cr2no, it's going :)
20:52.52goxboxlivelibstdc++6 is in your oe repo
20:53.03goxboxliveok
20:53.06*** join/#htc-linux ellisway (n=ellis@host-87-74-241-174.bulldogdsl.com)
20:53.24cr270%
20:53.57cr2ok.
20:54.00cr277%
20:59.36goxboxliveha, keyboard is working
21:00.49goxboxliveit's a bit buggy, but it works. The buttons are not.
21:11.18goxboxlivecr2: did you get it or not?
21:17.52*** join/#htc-linux lkcl (n=lkcl@5ac5cf85.bb.sky.com)
21:23.15*** join/#htc-linux WizMaui (n=WizMaui@62.112.90.231)
21:31.30*** join/#htc-linux jpatota (n=jpatota@utopia.ccs.neu.edu) [NETSPLIT VICTIM]
21:31.32*** join/#htc-linux Ro_En_PC (n=roen@p54A6733F.dip.t-dialin.net) [NETSPLIT VICTIM]
21:31.33*** join/#htc-linux Hawk||- (n=Hawk@p57A5444C.dip0.t-ipconnect.de) [NETSPLIT VICTIM]
21:31.36*** join/#htc-linux yacc (n=andreas@h1634.serverkompetenz.net) [NETSPLIT VICTIM]
21:32.41*** join/#htc-linux FossiFoo (n=Fossi@e176126134.adsl.alicedsl.de)
21:35.20Hymiehttp://cellphones.engadget.com/2007/01/09/the-apple-iphone/ <-- as someone else said, it is a nice piece of work
21:35.35Hymiebut a shame, such a keyboard would be useless ... and, no UTMS :/
21:39.07pH5and a pretty low resolution screen if that 160dpi number is true
21:47.07Hymiewell... I don't know, I find some of these screen to be overkill
21:47.10kimuSan^http://www.apple.com/iphone/ <- more here
21:47.25cr2Hymie: what cpu is there ?
21:47.30kimuSan^looks nice and cool if it actually runs osx
21:47.32Hymieif you took a 640x480 PDA phone, then held the screen up to your monitor, and filled the monitor space with those screens... you'd have crazy resolution
21:47.54Hymiecr2: I don't think it says on the apple press release report.. Apple dudes don't care probably ;)
21:48.21cr2don't care about apple dudes. care about linux port :)
21:48.26kimuSan^the multitouch screen is waaay cool though
21:48.49Hymiearg, have to sign up to "learn more", and I'm betting that's not helpful "learning more"
21:49.21kimuSan^This device has not been authorized as required by the rules of the Federal Communications Commission.  HEH
21:49.33cr2No stylus. Patented!
21:49.58cr2hm. a route planner will look really funny on such device.
21:50.04Hymiehmm
21:50.08Hymie802.11n
21:50.10Hymiethat's interested
21:50.15HymieI'm prefer UTMS over that, but still
21:50.23Hymieoh, wait
21:50.25Hymiethat's the TV
21:50.26Hymiehehe
21:50.28goxboxliveits not a vga phone, its 320 by 480 at 160 ppi
21:50.38goxboxlivehttp://www.apple.com/iphone/technology/specs.html
21:50.59kimuSan^it nice and slim
21:51.14cr2nonsquare pixels ?
21:51.17goxboxliveyes, it looks nice
21:51.40Hymiewhy everything BUT UTMS!
21:52.08HymieI'd almost consider carrying a bluetooth mini keyboard in my pocket, if this had UTMS + Linux
21:52.39cr2if it's pxa27x then linux should be easy to port.
21:52.51cr2bt and wifi.
21:53.15goxboxlivewhen will it be shipped?
21:53.36kimuSan^data transfer is way to expensive here
21:53.51cr2i wish somebody has posted the motherboard screenshots. or the rom image.
21:53.54kimuSan^goxboxlive: now in the us, later this year europe, 2008 asia
21:54.11Hymiecr2: they'd have to pry a unit from Steve Jobs' hands probably and smash it, to get such shots ;)
21:54.18goxboxlivei c
21:54.58kimuSan^as far as I remember. look at macroumers
21:55.04kimuSan^macrumors
21:55.25psokolovskywoo-hoo, that worked, now opie can be used in qemu ;-)
21:55.27goxboxliveand what will it cost?
21:55.35Hymiepple has selected Cingular as its sole network provider for the phone. The device will become available in June from both Cingular and Apple stores at prices of $499 for the 4GB version and $599 for its 8GB sibling. Both prices are assuming two-year Cingular contracts.
21:55.38kimuSan^499 and 599
21:55.43goxboxliveok
21:55.48kimuSan^2 year contract
21:55.55goxboxlivewow
21:56.06Hymiemaybe 800 no contract
21:56.32goxboxlivei c
21:57.10Hymie#18. Posted at 03:14 PM on Jan 9th 2007 Edit   Reply
21:57.10Hymietotoro
21:57.10HymieI really want to know what CPU is in there...
21:57.12Hymiehehe
21:57.14Hymieso do we ;)
21:57.50Hymiehttp://www.apple.com/iphone/phone/
21:58.53Hymieit is a nice interface
21:59.27goxboxlive~change 499 usd to nkr
22:00.11Hymiehmmmmmmmm
22:00.18goxboxlive~change 499 usd to nok
22:00.21Hymiethe way they show the keyboard
22:00.35Hymieit looks usable from a two thumb perspective
22:00.44Hymiebut, still.. blasted thing takes 1/2 the screen
22:00.53Hymiecrappy for emergency remote ssh usage
22:00.54Hymiealso
22:01.10Hymiewhy does the hermes have the '.' map to '0'
22:01.28Hymieever try to enter an IP address, a number with change in it, anything?
22:08.37*** join/#htc-linux rmoravcik (n=rmoravci@pc-3s0zt5w2e4y0vzmhnrzq3a21zqajzfw.users.student.utc.sk)
22:09.36*** join/#htc-linux g3gg0_ (n=g3gg0@ppp-82-135-65-65.dynamic.mnet-online.de)
22:10.55*** part/#htc-linux g3gg0_ (n=g3gg0@ppp-82-135-65-65.dynamic.mnet-online.de)
22:13.44psokolovskygoxboxlive, still online?
22:13.52goxboxliveyes
22:15.37psokolovskygoxboxlive, so, let's have it settled: for me, both TS and keys in OPIE work without any expicit specification of QWS_MOUSE_PROTO and QWS_KEYBOARD envvars.
22:16.09psokolovskygoxboxlive, if it works for me, it must work for any other of our (hh.org) 2.6 devices. So, I'd like to ask you to test such config.
22:16.52goxboxliveI can test it, i know that the keyboard isent working without it. But the TS i am not sure.
22:17.35psokolovskygoxboxlive, please test. h4000 has to keys event devices (for asic3 and pxa keys) and works perfect.
22:19.54goxboxliveok, booting now
22:22.03psokolovskygoxboxlive, extra confirmation: h4000 with fresh opie-angstrom build resumes just fine.
22:23.34TripleDEShmm you guys compile opie-angstrom from oe? I thought angstrom just supports gpe...
22:23.42goxboxliveIt didnt work. I didnt try the keyboard, but TS where dead, even though /dev/input/touchscreen0 where listed at boot ( QinputDevice)
22:23.56goxboxliveyes, but opie builds
22:24.08TripleDESic :)
22:24.49psokolovskygoxboxlive, impossible ;-I
22:25.15goxboxliveno it's not, it just happend
22:26.07psokolovskygoxboxlive, well, either way, setting those vars in /etc/init.d/opie, and thus having machine overrides for that file in opie-taskbar not suitable. Those vars should be set elsewhere.
22:26.53goxboxliveok
22:27.36goxboxliveWell it's has been this way as long as i can remeber in Opie. But it might just be some patching in qte-mt we miss
22:28.53psokolovskygoxboxlive, ok, I'll have a look at that
22:34.09goxboxliveok
22:35.48goxboxlivesuspend doesnt work for me, but i am not running latest opie image. I builded one today. Gonna try it out tomorrow. But, now it's bedtime. g'noght
23:08.10*** join/#htc-linux WizMaui (n=WizMaui@62.112.90.231)
23:09.32*** join/#htc-linux florian_ (n=fuchs@84.245.174.66)
23:34.06*** join/#htc-linux TripleDES (n=sergio@89.129.129.79)

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