IRC log of #maemo for Monday, 2015-12-14

jonwilSicello: In regards to wl1251-cal, I too observed the problem with the MAC address and I dont know why it isn't working. It should be a drop-in replacement for the stock widget.00:02
Siceloworks fine when you run it manually though00:02
jonwilyeah its weird00:02
bencohSicelo: 720p playback isn't related to gpu afaict (but to DSP)00:02
*** rd_ has joined #maemo00:03
bencoh(a TI C64+ on both chips)00:03
freemangordon:nod:00:03
Siceloah00:03
freemangordonbut on N9 it runs on higher freqs00:03
bencohwhich explains why n9 can play higher res/profile00:04
SiceloN9 is really nice device.00:04
bencohwith no keyboard and a capacitive screen, but yeah00:05
bencoh(I feel like we've already discussed that quite a few times :D)00:05
Sicelo:)00:05
Siceloanyone here with N9? what pdf reader you use?00:06
Siceloor epubs00:06
jonwilSicelo: the script for wl1251-cal is the same as the one that comes with the stock widget00:06
*** vectis3 has joined #maemo00:07
*** aloril has quit IRC00:07
Sicelojonwil: ok. i guess for time being one has to remember to run wl1251-cal after every reboot00:08
jonwilor (like I did) downgrade it back to stock00:09
jonwilfreemangordon: ping00:10
freemangordonjonwil: pong00:10
*** shentey has quit IRC00:11
Siceloah .. there is pdf reader in N9, just called Documents.00:11
*** shentey has joined #maemo00:11
*** rd_ has quit IRC00:11
*** shentey has quit IRC00:12
*** aloril has joined #maemo00:12
jonwilwhats this you were talking to merlin1991 about earlier? pap_enabled gconf key?00:12
freemangordonPali: ^^^00:13
*** Bratch has joined #maemo00:24
*** l_bratch has quit IRC00:24
*** Bratch has quit IRC00:25
*** Bratch has joined #maemo00:26
*** futpib has quit IRC00:28
Palifreemangordon: that cloned library has problem in function iap_dialog_private_key_pw_send_reply()00:35
Paliin that function it crashes00:35
freemangordonlemme check00:35
freemangordonwhat crash?00:35
freemangordonsegfault?00:35
Paliyes, from syslog looks like segfault00:35
freemangordonPali: maybe  dbus_message_append_args is called with wrong parameters, lemme check00:39
*** krnlyng has quit IRC00:40
freemangordonPali: can't see anything wrong, could you debug it?00:42
Paliwill try00:42
Palifreemangordon: quick debug: looks like dbus_message_append_args crashing00:45
freemangordonthought so, but can't see why00:45
PaliI added syslog() call before and after dbus_message_append_args()00:45
Palibefore I got output, after not00:46
SiceloPali: before you disappear .. mind to share details of the WPA-EAP auto-connect method? which file to hex-patch, and change which bytes to what?00:49
PaliSicelo: looks like it is not so easy, as I thought00:49
freemangordonPali: could you share the code you work with?00:49
PaliI will push code to github00:51
Sicelook. goodnight.00:51
*** krnlyng has joined #maemo00:53
Palifreemangordon: https://github.com/community-ssu/connui-conndlgs-wlan00:53
freemangordonok00:55
freemangordonPali: try to use DBUS_TYPE_INVALID instead of NULL for the last parameter00:59
Palialready tried :-(00:59
freemangordonI wonder if those string parameters should be send by address, but all of the examples I look at do it01:00
Paligoing to start whole process under gdb01:02
Pali/usr/bin/maemo-summoner is launcher for .launch applications right?01:02
freemangordonwhy not just attach to it?01:03
Paligdb --args /usr/bin/maemo-summoner  /usr/bin/osso-connectivity-ui-conndlgs.launch01:03
freemangordonPali: simply attach gdb to already running process01:03
Palibecause that maemo-launcher doing some special relocation01:03
Paliand debugging is not possible01:03
freemangordonit is here01:03
Paliaddresses in gdb  are not correct01:03
freemangordonI've never had any problems01:03
Palimaemo-summoner is needed01:03
freemangordonok01:03
PaliIIRC01:03
freemangordonI always attach to the needed process01:04
freemangordonthe bigger PID of both01:04
freemangordonnever had any problems01:04
Pali#0  0x400e94d4 in strlen () from /lib/libc.so.6; warning: Unable to fetch general register.; Cannot access memory at address 0x400e94d001:06
Palino more backtrace output01:06
freemangordonhmm, maybe that buffer should be 42, not 41 bytes long01:07
freemangordonI don't know that maemosec_certman_key_id_to_str function01:07
freemangordonhmm, no, it is ok https://github.com/community-ssu/maemo-security-certman/blob/master/include/maemosec_certman.h#L9501:10
Paliok, that strlen comes from /usr/lib/libdbus-1.so.301:10
PaliI already looked into certman source and it check len against MAEMOSEC_KEY_ID_STR_LEN01:10
Pali41 is OK01:10
freemangordonwell, it is either that password is not initialized or those string parameters should e passed as char*, not char**01:11
Paliiap_conndlg 2.88+0m5[10259]: iap_dialog_private_key_pw_send_reply: buf='<correct_hash>' password='' ok=001:14
Palipassworrd is emtpy (which I set empty)01:14
Paliand hash is also correct01:14
freemangordonPali: maybe add another const char *tmp = buf; and use &tmp instead of &buf for the firs string argument01:15
freemangordonPali: did you try ^^^?01:23
Palinow going01:23
freemangordonsee http://dbus.sourcearchive.com/documentation/1.2.4/dbus-message_8c-source.html01:24
freemangordonsearch for "@warning in C, given"01:24
Palihelped!01:25
Palino crash01:25
freemangordonthe fuck, never knew that for gcc "&array == array" :(01:27
Palinow I remind that there is such problem01:28
freemangordonPali: BTW, why did you push .so files?01:29
Palibecause we need to package all files01:30
Palicannot replace one in deb package easily01:30
freemangordonah, I see01:30
freemangordonI guess I'll have to RE the others as well :)01:30
freemangordonPali: and how did you get those 3 nokia commits?01:31
PaliI have script deb2dsc01:32
Paliit convert binary deb package to debian source package01:32
freemangordonok :)01:32
Paliand next I have script which import dsc packages into git history01:32
Pali:-)01:32
freemangordongood to know, will ask for it the next time I am REing some package :)01:33
PaliI think I told you this year(s) ago :-)01:33
*** githogori has quit IRC01:33
freemangordonCan't remember01:34
freemangordonanyway, time to have some rest, night01:34
Palinow I fixed that freezing bug :-)01:35
Paligoing to push commits to github01:35
*** LjL has quit IRC01:46
*** LjL has joined #maemo01:47
PaliFIXED! https://github.com/community-ssu/connui-conndlgs-wlan/commit/2a4b91162e05710ee187fbcc56c1293b5c74716901:50
PaliSicelo: now when user close password input dialog for EAP-TLS certificate password, then Maemo show error message connection failed01:51
Paliand does not freeze and crash whole Maemo system!01:51
Palifreemangordon: thanks for clonning that binary!01:51
freemangordonPali: you're welcome01:51
freemangordonI'll try to find time to clone the other plugins as well01:52
Palinow second part, support for EAP-TLS certificates without password... but later01:52
Palinow going sleeping...01:52
freemangordonyeah, me too :)01:52
Palihttps://bugs.maemo.org/show_bug.cgi?id=157401:54
povbot_Bug 1574: Certificate Manager and WLAN EAP-TLS01:54
Palihttps://bugs.maemo.org/show_bug.cgi?id=339901:55
povbot_Bug 3399: Will not auto connect to WPA-Enterprise01:55
Palihttps://bugs.maemo.org/show_bug.cgi?id=163501:55
povbot_Bug 1635: Eduroam (EAP-TTLS+PAP) WiFi auth01:55
Palithese 3 another bugs (reported in 2007!) we could fix in CSSU01:56
Palilast is just setting one gconf key (this can be done in cssu metapackage)01:56
*** Pali has quit IRC02:06
*** xorly has quit IRC02:11
*** andril has joined #maemo02:19
*** florian has quit IRC02:25
*** andril has quit IRC02:28
*** Oksanaa has joined #maemo02:29
*** andril has joined #maemo02:29
*** krnlyng has quit IRC02:41
*** githogori has joined #maemo02:43
*** krnlyng has joined #maemo02:55
*** drathir has quit IRC02:56
*** Oksanaa has quit IRC03:03
*** drathir has joined #maemo03:12
*** auenfx4 has quit IRC03:19
*** auenfx4 has joined #maemo03:19
*** eMHa has joined #maemo04:05
*** eMHa__ has quit IRC04:09
*** Kabouik has joined #maemo04:10
*** Kabouik__ has quit IRC04:13
*** Oksana has joined #maemo04:24
*** Humpelstilzchen has quit IRC04:29
*** Kabouik_ has joined #maemo04:30
*** Defiant has joined #maemo04:30
*** Oksana has quit IRC04:31
*** Oksana has joined #maemo04:31
*** Kabouik has quit IRC04:33
*** krnlyng has quit IRC04:39
*** Roth has joined #maemo04:48
*** krnlyng has joined #maemo04:51
*** lxp has quit IRC05:05
*** hubutm20 has joined #maemo05:55
*** krnlyng has quit IRC06:10
*** andril has quit IRC06:19
*** Roth_ has joined #maemo06:33
*** andril has joined #maemo06:35
*** Roth has quit IRC06:35
*** Trizt has quit IRC06:36
*** Trizt has joined #maemo06:37
*** ender| has quit IRC06:37
*** jake42 has quit IRC06:37
*** gregoa has quit IRC06:37
*** HRH_H_Crab has quit IRC06:38
*** gregoa has joined #maemo06:38
*** HRH_H_Crab has joined #maemo06:38
*** ender| has joined #maemo06:39
*** krnlyng has joined #maemo06:39
*** andril has quit IRC06:47
*** Vajb has joined #maemo07:32
*** infobot has quit IRC08:19
*** rd_ has joined #maemo08:26
*** Roth_ has quit IRC08:29
*** eMHa has quit IRC08:36
*** jake42 has joined #maemo08:37
*** peetah has quit IRC08:39
*** krnlyng has quit IRC08:43
*** krnlyng has joined #maemo08:57
*** eMHa has joined #maemo09:03
*** rd_ has quit IRC09:06
*** rd_ has joined #maemo09:12
brolin_empeyKotCzarny: I finally built minicom for Cygwin by myself.  Most of the work was in preparing the build environment, specifically determining which packages are needed and installing the missing packages.09:14
KotCzarnygood09:14
KotCzarnyas a bonus you have cygwin buildenv ready too09:15
*** rd_ has quit IRC09:27
brolin_empeyKotCzarny: Yes, even though I have used the same Cygwin installations for years.  I had to use the Cygwin installation on my desktop computer at ${WORK} because my Cygwin installation on my desktop computer at ${HOME} is borked:  basically, I can still mostly/somewhat use it with the packages already installed but I cannot install additional packages.  IIRC, I cannot update the currently-installed packages either because the package installation/upgrade09:31
brolin_empeyprocess hangs.09:31
KotCzarnyi think there is apt-cyg or cygapt that eases the package manipulation09:32
KotCzarnyunsupported by cygwin devs, but does its job well09:33
*** futpib has joined #maemo09:35
*** futpib has quit IRC09:46
*** xorly has joined #maemo09:48
*** japa-fi has joined #maemo10:00
*** jonwil has quit IRC10:20
*** florian has joined #maemo10:32
*** eijk_ has joined #maemo10:43
*** krnlyng has quit IRC10:44
*** rd_ has joined #maemo10:51
*** xorly has quit IRC10:54
*** krnlyng has joined #maemo10:57
*** geaaru has joined #maemo11:02
*** rm_you has joined #maemo11:17
*** N-Mi_ has joined #maemo11:24
*** jon_y has quit IRC11:29
*** jonwil has joined #maemo11:30
Sicelofennec - how would i stop it creating many tabs?11:32
*** freemangordon_ has joined #maemo11:33
Siceloasking again.. as freemangordon_ just joined :)11:34
Sicelofennec - how would i stop it creating many tabs?11:34
freemangordon_no idea :)11:34
*** freemangordon_ has quit IRC11:35
KotCzarnyhttp://codeverge.com/netscape.mozilla.general/how-to-disable-tabbed-browsing-with/1468748  maybe this one?11:35
*** freemangordon_ has joined #maemo11:35
freemangordon_never used it for anything but some experiments11:36
SiceloKotCzarny: looking ... it's not that i don't want tabs to work, but fennec seems to prefer to create news tabs. i would like to 'tell' it when to create a new tab11:37
KotCzarnyyou can try some old 'tab mix plus' extension then11:37
KotCzarnybut dont know how many of the firefox settings are in fennec11:37
Sicelobrowser.link.open_newwindow seems to be what i'm looking for .. it's 3 in fennec. changing it to 1 to see if problem solved11:43
Sicelogreat. seems to work11:46
*** rd_ has quit IRC11:48
Siceloworking much nicer now .. no heavy lag like before11:50
*** xorly has joined #maemo11:54
*** xorly has quit IRC11:59
jonwilfreemangordon: ping12:10
*** sparetire_ has quit IRC12:17
*** rd_ has joined #maemo12:28
freemangordon_jonwil: pong12:28
* jonwil has done some work on connui-conndlgs-wlan12:30
freemangordon_great12:31
freemangordon_I saw your commits from this morning, is it something new?12:31
freemangordon_BTW I will RE some more plugins, they are too easy to distribute them in binary12:32
bencohSicelo: is fennec really usable?12:32
* freemangordon_ is going to have something to eat, bbl12:32
jonwilI am about to have a go at some of the connui-conndlgs-wlan plugins12:33
Sicelofor my needs, i guess .. i don't use it too much also, but at times i need a page which it opens better12:33
*** freemangordon_ has quit IRC12:37
*** japa-fi has left #maemo12:40
jonwilor maybe not, they aren't as simple as I thought :)12:44
jonwilWill let freemagnrdon deal with them :)12:44
*** lxp has joined #maemo12:55
*** rd_ has quit IRC13:08
*** freemangordon_ has joined #maemo13:30
freemangordon_jonwil: which ones? (to not work on the same plugins)13:30
*** krnlyng has quit IRC13:46
freemangordonjonwil: I started work on iap_dialog_gtc_challenge13:51
jonwilNot planning to work on any of them, I decided not to13:54
freemangordonjonwil: any clue what is libcomapp-dev?13:55
jonwilI did add some functions needed by connui-conndlgs-wlan to libconnui-dev13:55
freemangordoncertman applet needs it13:56
jonwilOnly function I wasn't able to figure out is iap_scan_start_for_network_types in lobconnui.so13:56
jonwillibconnui.so13:56
jonwillibcomap code is in the Fremantle SDK13:56
jonwilso you can get libcomap-dev from there13:56
jonwilthe package isn't there but the code in there will build it13:57
freemangordonoh, I see13:57
jonwilbut yeah other than iap_scan_start_for_network_types I figured out all the functions called by connui-conndlgs-wlan13:58
*** krnlyng has joined #maemo13:58
freemangordonmaybe we should RE it as well13:59
freemangordonlibconnui that is13:59
jonwilbe my guest, its a big chunk of code14:01
freemangordon:)14:01
jonwilalthough IMO we should be working on things that are actually necessary (like pulseaudio-nokia) rather than connectivity UI that is being cloned for the sake of cloning it :)14:02
jonwilconnui-conndlgs-wlan at least has some bugs we want to fix14:04
freemangordonI need some rest from PA, (and some free time to work on it)14:04
jonwilok :)14:04
jonwilconnui-conndlgs-wlan seems like a good way to go then :)14:04
freemangordonyeah :)14:06
jonwilreverse engineering libconnui on the other hand seems like wasted effort to me14:06
jonwilcloning it that is14:06
jonwilreverse engineering the missing functions on the other hand is useful14:06
jonwilbut yeah at this point I am going to stop fiddling with the connectivity UI stuff14:11
* jonwil has run out of things to do again14:31
jonwilwell things for N900 that is14:31
bencohwhat about libcodelock/devlock?14:31
bencohdid you manage to RE it?14:32
jonwilhttps://github.com/community-ssu/codelockui/ is as far as I got with codelockui14:32
jonwiland there is no real point cloning libdevlock, its just a lib for dealing with the device lock in CAL and not worth REing (nothing in it we need to change)14:33
jonwilhttps://github.com/community-ssu/libdevlock-dev is the dev package I made for libdevlock though14:34
jonwilall the "interesting" stuff is also the hard stuff14:35
jonwillike hildon-plugins-notify-sv14:35
jonwilI did just figure out why my wl1251-cal clone is broken though :)14:38
jonwilgoing to fix it now :)14:39
freemangordon:)14:58
*** Kabouik has joined #maemo15:00
*** Kabouik_ has quit IRC15:03
jonwilfixed :)15:07
jonwilso now I am running new wl1251-cal on my phone again :)15:08
jonwilno more problems with bogus mac address15:08
jonwiland with that I have done everything I can think of that I am able to do15:08
jonwilso I am back to having nothing to do :P15:08
jonwilactually no, I will go zzz since its late :)15:08
jonwilcya later15:08
*** jonwil has quit IRC15:08
*** peetah has joined #maemo15:11
*** Kabouik_ has joined #maemo15:35
*** Kabouik has quit IRC15:38
*** krnlyng has quit IRC15:45
*** Kabouik has joined #maemo15:51
*** Kabouik_ has quit IRC15:54
*** krnlyng has joined #maemo15:59
*** sparetire_ has joined #maemo16:06
*** Kabouik_ has joined #maemo16:06
*** Kabouik has quit IRC16:08
*** jon_y has joined #maemo16:18
*** freemangordon_ has quit IRC16:30
*** Kabouik has joined #maemo16:33
*** Kabouik_ has quit IRC16:35
*** xorly has joined #maemo16:45
*** florian has quit IRC17:36
*** krnlyng has quit IRC17:46
*** krnlyng has joined #maemo18:00
*** freemangordon has quit IRC18:28
*** freemangordon has joined #maemo18:31
*** eMHa has quit IRC18:31
*** N-Mi_ has quit IRC18:43
*** N-Mi has joined #maemo18:43
*** N-Mi has joined #maemo18:43
*** stryngs has quit IRC18:51
*** eMHa has joined #maemo18:54
*** lobito1 has joined #maemo18:55
*** lobito has quit IRC18:56
*** DrCode has quit IRC19:10
*** eijk_ has quit IRC19:12
*** florian has joined #maemo19:20
*** basiaf has quit IRC19:46
*** krnlyng has quit IRC19:46
*** Humpelstilzchen has joined #maemo19:48
*** Defiant has quit IRC19:50
*** futpib has joined #maemo19:53
*** darkschneider has quit IRC20:00
*** darkschneider has joined #maemo20:00
*** krnlyng has joined #maemo20:02
*** stryngs has joined #maemo20:14
*** basiaf has joined #maemo20:21
*** basiaf has quit IRC20:21
*** tg has quit IRC20:22
*** Pali has joined #maemo20:31
*** tg has joined #maemo20:32
freemangordonPali: could you pull the latest connui-conndlgs-wlan to see if I didn't break anything21:07
*** SAiF has joined #maemo21:17
*** M4rtinK has joined #maemo21:21
*** Kabouik has quit IRC21:30
*** Kabouik has joined #maemo21:32
*** sunshavi has joined #maemo21:43
*** Kabouik_ has joined #maemo21:44
*** Kabouik has quit IRC21:46
*** Venusaur has quit IRC21:46
*** krnlyng has quit IRC21:47
*** Venusaur has joined #maemo21:50
*** M4rtinK has quit IRC21:52
*** geaaru has quit IRC21:55
*** tm has quit IRC22:00
*** krnlyng has joined #maemo22:00
*** tm has joined #maemo22:03
*** rd_ has joined #maemo22:04
*** M4rtinK has joined #maemo22:10
*** SmilybOrg is now known as Smily22:21
*** M4rtinK has quit IRC22:22
*** lxp has quit IRC22:27
*** lxp has joined #maemo22:28
*** Vajb has quit IRC22:36
*** ced117 has joined #maemo22:37
*** Kabouik has joined #maemo22:39
*** Kabouik_ has quit IRC22:41
*** Kabouik_ has joined #maemo22:50
*** jonwil has joined #maemo22:50
jonwilhi22:51
jonwilpali: ping22:51
*** rd_ has quit IRC22:51
*** SpeedEvil has quit IRC22:52
*** Kabouik has quit IRC22:53
*** SpeedEvil has joined #maemo22:53
*** capitanocrunch has joined #maemo23:03
*** rd_ has joined #maemo23:04
*** tanty is now known as tanty_off23:06
*** capitanocrunch has left #maemo23:08
*** Kabouik has joined #maemo23:15
*** Kabouik_ has quit IRC23:17
*** Kabouik_ has joined #maemo23:19
*** Kabouik has quit IRC23:21
*** M4rtinK has joined #maemo23:27
*** DrCode has joined #maemo23:29
*** sunshavi has quit IRC23:30
*** Kabouik has joined #maemo23:37
*** sunshavi has joined #maemo23:37
*** Kabouik_ has quit IRC23:39
*** SpeedEvil has quit IRC23:43
*** SpeedEvil has joined #maemo23:44
*** krnlyng has quit IRC23:48

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!