IRC log of #maemo for Thursday, 2015-07-23

*** githogori has quit IRC00:05
*** futpib has quit IRC00:08
ZetaRThere is a bug with optifying claws-mail-pgp-plugins on the N900. It ends up moving the file to /opt, creating a link to it, and then at some point the original file gets replaced with a circular link to itself.00:11
*** SpeedEvil has quit IRC00:18
*** SpeedEvil has joined #maemo00:19
*** geaaru has quit IRC00:27
*** LauRoman|Alt has quit IRC00:31
*** ccnnjj has joined #maemo00:39
DocScrutinizer05ouch00:50
DocScrutinizer05excellent spotting00:51
ZetaRIt looks like it installs the files to /opt properly, and then in post install replaces them with symbolic links pointing to where it just installed them. It will probably work fine if the post-install optify is removed.00:53
DocScrutinizer05yep, optifying stuff in /opt is contraproductive00:56
*** M4rtinK has quit IRC00:56
DocScrutinizer05probably they ran optify on the build before packaging it, incl the optify hook00:57
ZetaRIn the post-install it says before the optify function "# Added by maemo-optify, with apologies.", so it looks like it was added after.00:58
ZetaRIf it was auto-added to a bunch of packages, it should probably include a check to make sure it isn't creating symbolic links for a file which is already getting installed to /opt00:59
ZetaRThis might not be the only package that is broken this way.01:00
DocScrutinizer05I dunno if it's auto-added or that's an option you hand to the builder01:00
DocScrutinizer05I rather guess the latter01:01
ZetaRYour guess is better than mine; I don't really know much about the package install process.01:01
DocScrutinizer05you prepare some file that has a number of info about author, package name, package icon, description, and prolly also whether to run optify on it or not01:04
ZetaRWell, I dissected the package and didn't find anything pertaining to it other than a defined optify function in the "postinst" file.01:06
ZetaRShould I contact the maintainer, or does someone here have the ability to fix the package?01:07
DocScrutinizer05  /debian/control01:09
DocScrutinizer05prolly is that file01:09
DocScrutinizer05only maintainer may fix a package01:10
ZetaRI don't see anything in it that mentions /opt or optify, unless you count "Priority: optional".01:10
ZetaROkay. I will send the maintainer an email.01:10
DocScrutinizer05ugh  /debian/rules01:11
ZetaRNo /debian/rules file in the package. Only ones are the installed files, and control, md5sums, and postinst.01:12
DocScrutinizer05sure, in the package are not instructions how to build the üackage01:14
KotCzarnybut he wonders how it can be possible that it mangles on install01:15
DocScrutinizer05starhash-enabler-for assistent-upload.tar.bz2/utar://starhash-enabler_0.1.tar.gz/utar://starhash-enabler/debian/rules01:17
DocScrutinizer05KotCzarny: because it's optified twice, once pre-build and once at install-time01:19
DocScrutinizer05the install-time optification seems to be auto-added by autobuilder to the postinst file, according to instructions given to the autobuilder in one of the files I mentioned above01:21
DocScrutinizer05actually install-time optification is preferable over build-time optification since it allows easy deoptification on devices that have a different partitioning scheme01:23
DocScrutinizer05though I guess the main reason been to allow optification of already installed packages from pre-optification (PR1.1) times01:24
*** erlehmann has quit IRC01:26
*** norly has quit IRC01:27
ZetaRThough, it will make install fail if you don't have much space on /. And you end up writing to the NAND unnecessarily.01:28
ZetaREmail sent to maintainer.01:30
*** githogori has joined #maemo01:31
DocScrutinizer05for a temporary "fix" rename the on-device optify function that's called in postinst and instead have an empty (only shebang) shellscript named like the optify function01:33
DocScrutinizer05before installing01:33
DocScrutinizer05I'm doing same with docpurge permanently01:33
ZetaRSince there are only a few files, I will probably just move the files to their proper location manually rather than repackaging the deb file.01:34
DocScrutinizer05who said repackaging?01:35
ZetaRI mean editing it as an archive.01:35
DocScrutinizer05nobody suggested that either01:36
*** M4rtinK has joined #maemo01:36
ZetaRI don't understand your suggestion then. Why would I edit postinst if I am not going to use it as a deb file?01:37
DocScrutinizer05or is optify literally a function() in postinst, rather than a executable called by postinst?01:37
ZetaRIt is literally a function().01:37
DocScrutinizer05duh, crap01:38
ZetaRIt is also the only thing in postinst, so I don't really need it.01:38
gregoaecho auto >> debian/optify01:39
DocScrutinizer05I thought it calls sth like /usr/sbin/maemo-optify-lib.sh01:39
gregoa(in the source package)01:39
ZetaRNope, it doesn't call anything except standard POSIX stuff.01:40
DocScrutinizer05gregoa: it double-optifies, rendering the /opt/*/* files as links pointing to themselves01:43
DocScrutinizer05gregoa: so rather rm debian/optify, but prior to upload to autobuilder01:45
DocScrutinizer05I guess...01:45
DocScrutinizer05or remove the line "echo auto >> debian/optify" from some file01:46
DocScrutinizer05meh, no idea, I never looked into all that01:47
DocScrutinizer05ZetaR: anyway then the easiest fix is prolly to extract the files missing in /opt (resp that got replaced by auto referential links) from claws.deb with mc and copy them to where they belong to01:49
*** MoritzJT has joined #maemo01:50
ZetaRRight, that is what I am doing now.01:51
*** M4rtinK has quit IRC01:51
DocScrutinizer05(cd "/" && tar cf - "$f") | (cd "/opt/maemo/" && tar xf -);  ln -s "/opt/maemo/$f" "/$f"01:56
DocScrutinizer05hmmmm01:56
DocScrutinizer05where $f = $101:57
*** MoritzJT has quit IRC01:57
*** MoritzJT has joined #maemo01:58
DocScrutinizer05in postinst. That's pretty weird, I don't think postinst gets called for each file of a package01:58
*** MoritzJT has quit IRC01:58
ZetaRIt is a function with no call to it in postinst.01:59
ZetaRSo it only defines optify()01:59
DocScrutinizer05oooh even weirder01:59
DocScrutinizer05so wtf?01:59
ZetaRI have no idea.01:59
DocScrutinizer05gregoa: http://repository.maemo.org/extras-devel/pool/fremantle/free/c/claws-mail/claws-mail-pgp-plugins_3.7.3-1maemo4_armel.deb02:00
DocScrutinizer05gregoa: any idea?02:01
DocScrutinizer05it's already "optified" in package:  http://wstaw.org/m/2015/07/23/plasma-desktopal1947.png02:04
DocScrutinizer05who the fuck calls a function optify () {...} in postinstall?02:12
KotCzarnyclueless people?02:13
DocScrutinizer05no02:13
DocScrutinizer05people can't call functions, programs call functions02:13
KotCzarnyindirectly02:13
ZetaRLol.02:14
KotCzarnyalso, who asks for person02:14
DocScrutinizer05I mean, dpkg calls postinst I'd guess. But how would dpkg have an idea of a function named optify() ?02:14
DocScrutinizer05I thought dpkg calls postinst as a shellscript and that's it02:15
ZetaR"The maemo-optify tool helps developers to prepare Debian packages that use /opt. This tool moves selected files inside the package to locations under /opt, and will symbolically link from the original location to the new place of the file. It is available on gitorious as well as in Extras-devel" From https://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Packaging,_Deploying_and_Distributing/Installing_under_opt_and_MyDocs02:16
DocScrutinizer05yeah02:16
ZetaRIt says in postinst that optify() : "# Added by maemo-optify, with apologies."02:16
DocScrutinizer05never thought they patched dpkg to add optify02:16
*** pentanol has joined #maemo02:18
*** vectis3 has joined #maemo02:27
ZetaRSeems to be working after moving files around.02:29
DocScrutinizer05\o/02:29
ZetaRI haven't tested it yet, but I will work on that next.02:30
DocScrutinizer05I'm even more puzzled since the dang function starts with a "if [ -h $f ]"02:30
ZetaRYou missed a "!".02:30
DocScrutinizer05yeah, meant that02:30
DocScrutinizer05it shpouldn't touch the symlinks anyway02:30
ZetaRSo it only moves it around if it exists and is not a symbolic link.02:30
DocScrutinizer05http://wstaw.org/m/2015/07/23/plasma-desktopfM1947.png02:31
DocScrutinizer05so who the heck is ruining that package?02:32
DocScrutinizer05after installation02:32
DocScrutinizer05and how?02:32
*** vectis has quit IRC02:32
KotCzarnydoes apt have logging function?02:32
ZetaRThere is this weird file: "/var/log/maemo-optify-boottime.log"02:35
DocScrutinizer05the function supposed to work on dirs?02:40
DocScrutinizer05if [ -d "/$f" ]02:40
DocScrutinizer05in package the files are symlinked, not the complete dir02:41
DocScrutinizer05http://wstaw.org/m/2015/07/23/plasma-desktopal1947.png02:41
DocScrutinizer05this is the root cause of the problem, the devel symlinked the files, then optify rushing over it and copying&symlinking the complete dir02:48
*** vakkov has quit IRC02:48
KotCzarnyso, optify fail?02:49
DocScrutinizer05incl the symlinks in that dir02:49
DocScrutinizer05no, packager/developer fail02:49
DocScrutinizer05or optify actually been added to the package later on, by somebody who had no clue that it's not applicable to that particular package02:50
KotCzarnyhmm, i think i did the same, but without adding optify02:51
ZetaRIt sounds like it was added, because there is actually a comment about it being added.02:51
DocScrutinizer05maybe the package is pre-optification time02:51
DocScrutinizer05ZetaR: yes, I guess autobuilder adds that comment to every optified package02:51
KotCzarnyand it didnt behave like this02:51
DocScrutinizer05the question is who instructed autobuilder to optify that package02:52
KotCzarnymine is in non-free, to autobuilder didnt f*ck up mine02:52
KotCzarny:)02:52
KotCzarnys/to /so /02:52
*** rm_work is now known as rm_work|away02:53
DocScrutinizer05if this package is from pre-optify times back when PR1.0 was recent OS version, I could see somebody adding a tag "optify please" to *all* packages in repo when they introduced optification in PR1.1 or PR1.1.1 or PR1.202:54
DocScrutinizer05not realizing that this particular package already had its own "optification" implemented02:55
DocScrutinizer05anyway, mystery 7/8 solved02:57
DocScrutinizer05the remaining 1/8 I tend to blame to maem flavor of apt02:57
DocScrutinizer05would be interesting to check if dpkg also does that optify() call02:58
ZetaRhttps://bugs.maemo.org/show_bug.cgi?id=770702:58
povbotBug 7707: maemo-optify-deb produces recursive symlink for plugins in derivative packages02:58
ZetaRClaws-mail plugins are named as an example of this bug02:59
ZetaRAlso, manually unpacking and copying the files is the recommended work around since 2010.03:01
KotCzarnyone could say this package is unmaintained03:02
ZetaRBBL folks. I hope this doesn't take another 5 years to get sorted out. :P03:04
*** xes_ has joined #maemo03:04
KotCzarnyfind a maintainer03:04
KotCzarnyotherwise no one would fix it03:05
KotCzarny(people are lazy)03:05
*** xes has quit IRC03:06
DocScrutinizer05ZetaR: (bug7707) yeah and Package importedSystem2010-01-02 05:23 UTC for claws03:07
DocScrutinizer05the fix is to build it anew with fixed maemo-optify-deb03:08
DocScrutinizer05it's a package zombie from maemo pleozaen03:09
*** Kabouik has quit IRC03:12
*** Kabouik has joined #maemo03:14
DocScrutinizer05ohmy, the last 4 or 5 comments on 7707 are so depressing03:19
KotCzarny:)03:20
DocScrutinizer05freemangordon: could you check what version of maemo-optify-deb (or whatever the name) is used on autobuilder?03:21
DocScrutinizer05seems Marius Vollmer https://bugs.maemo.org/show_bug.cgi?id=7707#c17 dropped the ball03:22
povbotBug 7707: maemo-optify-deb produces recursive symlink for plugins in derivative packages03:22
DocScrutinizer05actually wtf is wrong with http://maemo.org/packages/view/conboy/ repo? check 0.7.0 vs 0.4.0 and "latest version" for fremantle03:27
*** erlehmann has joined #maemo03:33
*** beford has joined #maemo03:47
*** stryngs has quit IRC04:06
*** stryngs has joined #maemo04:08
*** Humpelst1lzchen has joined #maemo04:27
*** Humpelstilzchen has quit IRC04:30
*** ccnnjj has quit IRC05:25
*** pentanol has quit IRC05:28
*** pentanol has joined #maemo05:39
*** peetah has quit IRC05:46
*** RedW has quit IRC05:49
*** RedW has joined #maemo05:51
*** lxp has joined #maemo06:02
*** peetah has joined #maemo06:03
*** lxp1 has quit IRC06:04
*** erlehmann has left #maemo06:23
*** vakkov has joined #maemo06:34
*** Roth has joined #maemo06:44
*** FlameReaper-PC has joined #maemo06:46
*** povbot has joined #maemo06:58
*** pentanol has quit IRC07:03
*** pentanol has joined #maemo07:03
*** endsormeans has joined #maemo07:08
*** protem has joined #maemo07:17
endsormeansKotczarny: ping07:23
*** bugzy has joined #maemo07:24
*** KotCzarny has quit IRC07:36
*** endsormeans has quit IRC07:43
R0b0t1what version of libusb does 0xfffff need to compile?07:46
*** disco_stu has quit IRC07:51
*** antix_ has joined #maemo08:00
*** rm_work|away is now known as rm_work08:01
*** antix_ has quit IRC08:02
*** disco_stu has joined #maemo08:05
*** tanty_off is now known as tanty08:07
*** Roth has quit IRC08:10
*** n7903 has joined #maemo08:26
n7903hi08:26
n7903peo08:26
n7903people08:26
n7903toc08:27
n7903toc08:27
Sicelo?08:30
*** Kabouik_ has joined #maemo08:31
*** Kabouik has quit IRC08:32
*** n7903 has quit IRC08:43
*** futpib has joined #maemo09:07
*** xes_ has quit IRC09:17
*** KotCzarny has joined #maemo09:43
*** protem has quit IRC09:50
*** vectis3 has quit IRC10:00
*** LauRoman|Alt has joined #maemo10:02
*** futpib has quit IRC10:07
*** Fiorenza has joined #maemo10:07
Fiorenza~flashing10:07
infoboti guess maemo-flashing is http://wiki.maemo.org/Updating_the_tablet_firmware, or - on linux PC - download&extract http://maemo.cloud-7.de/maemo5/patches_n_tools/maemo-my-private-workdir.tgz, cd into it, do sudo ./flash-it-all.sh10:07
FiorenzaHi, cannot find the file maemo-my-private-workdir.tgz10:14
FiorenzaWhere can I download it, please ?10:15
Fiorenza~tabletsdev ~combined ~emmc ~flasher sdk10:16
Fiorenza~tabletsdev10:16
infoboti guess tabletsdev is http://tablets-dev.nokia.com/  http://wiki.maemo.org/Tabletsdev ,  http://tabletsdev.maemo.org (all defunct, thanks Nokia) or the nice site http://www.fladnag.net/downloads/telephone/n900/tools/, or http://www.mmnt.net/db/0/0/93.81.63.203/repositories/skeiron.org/skeiron.org/tablets-dev/maemo_dev_env_downloads10:16
KotCzarnyhttp://maemo.cloud-7.de/maemo5/patches_n_tools/10:16
KotCzarnytry this way10:16
Fiorenzait works, thanks !10:17
FiorenzaIs there another O.S. I can install on my N900 ?10:17
KotCzarnydepends10:17
FiorenzaSomeone has tried Firefox OS ?10:17
KotCzarnydo you need all functionalities?10:17
KotCzarnylike phone etc10:17
KotCzarnyif you only need wifi, then yes, there are choices10:18
*** heroux has quit IRC10:18
*** heroux has joined #maemo10:19
KotCzarnyotherwise you are stuck to fremantle (and to some extent chroot based distros)10:19
FiorenzaI need to phone, whatsapp, calendar, address book10:19
FiorenzaHow does flash-it-all.sh work ? I connect my N900 via USB to my Linux PC and then I run the script ?10:23
KotCzarnyopen it in some editor? maybe there are comments inside10:24
KotCzarnyor some readme in the package10:24
FiorenzaOk, I'm looking it.10:24
KotCzarnybut i guess you just start it and read what it says10:24
KotCzarnyit was meant to flash many n900 with as little user inteaction as possible10:24
FiorenzaYes, I'm reading the script: it tell when I have to remove the battery and what should I do.10:27
FiorenzaOk. Thanks. If I cannot resolve my whatsapp problem with Yappari, I'll have to buy a new phone, so I can use N900 as a tablet: so, what OS can I install ?10:29
KotCzarnyfor yappari then just update to newest version10:29
KotCzarnyit was changing much lately10:29
FiorenzaI just did it, but I don't receive messages from other, while I can send.10:30
KotCzarnyand you can write to yappari developer (either via talk.maemo.org page about your problem or here on irc 'ceene')10:30
KotCzarnywhat version do you have?10:30
FiorenzaIt is strange, but I receive the messages of the group10:30
FiorenzaI have the latest version of Yappari: 2.0.1510:31
FiorenzaBut I installed a patch on my N900 to resolve the problem of Gmail: I cannot read messages any more10:31
FiorenzaSo I wanted to reset N900 to have a clean behaviour...maybe it is the problem.10:32
*** vectis has joined #maemo10:34
*** pentanol has quit IRC10:34
*** beford has quit IRC10:41
*** beford has joined #maemo10:42
*** darkschneider has quit IRC10:42
*** darkschneider has joined #maemo10:42
bencohthe latest yappari version might still be in -devel10:45
bencohhm, nevermind, promoted in -testing10:45
FiorenzaIt is 2.0.15 version ?10:46
bencohlooks like it is http://maemo.org/packages/view/yappari/10:48
FiorenzaIn fact. I think it is my N900 problem, probably I installed something wrong. For this I want to reflash it and install new version of Yappari.10:50
*** vectis has quit IRC10:53
*** cpt_nemo has quit IRC11:00
*** eMHa_ has joined #maemo11:07
*** geaaru has joined #maemo11:10
*** APic has quit IRC11:13
Fiorenza~flasher11:16
infobotrumour has it, flasher is at http://www.jedge.com/n810/flasher/maemo_flasher-3.5_2.5.2.2.tar.gz (also .exe!), or http://www.chakra-project.org/ccr/packages.php?ID=5027 or generally http://www.google.com/search?q=maemo_flasher-3.5_2.5.2.2.tar.gz.   HARMattan(N9): https://aur.archlinux.org/packages/fl/flasher-harmattan/flasher-harmattan.tar.gz, or -- list of filenames/md5sums: http://pastebin.com/sYKdNJSH, or http://galif.eu/nokia/11:16
*** Kabouik has joined #maemo11:21
sixwheeledbeastKotCzarny: Re: no access to m.o, was a router glitch in the end BTW, just rebooted.11:25
*** N-Mi has joined #maemo11:25
KotCzarny:)11:25
sixwheeledbeastjabber stopped working and then more ports stopped working slowly.11:26
*** Kabouik_ has quit IRC11:26
*** vakkov has quit IRC11:26
*** vakkov has joined #maemo11:26
*** tanty is now known as tanty_off11:40
*** tanty_off is now known as tanty11:43
*** N-Mi has quit IRC11:46
*** N-Mi has joined #maemo12:01
*** Oksana has quit IRC12:08
*** sparetire_ has quit IRC12:09
*** Oksana has joined #maemo12:10
*** cpt_nemo has joined #maemo12:17
*** xes has joined #maemo12:36
*** Kabouik_ has joined #maemo12:45
*** troulouliou_div2 has joined #maemo12:47
*** troulouliou_div2 has quit IRC12:49
*** erlehmann has joined #maemo13:15
ceeneFiorenza: which patch is that for gmail that you installed?13:20
ceenei don't see how can that affect to yappari13:20
ceene~repos13:31
infobotextra, extra, read all about it, repos is deb http://mirrors.muarf.org/maemo/apt-mirror/mirror/downloads.maemo.nokia.com/fremantle/ssu/apps/ ./;; deb http://mirrors.muarf.org/maemo/apt-mirror/mirror/downloads.maemo.nokia.com/fremantle/ssu/mr0/ ./13:31
KotCzarny~maemo-repos13:31
infobot[maemo-repos] http://wiki.maemo.org/Repository#List_of_Maemo_repositories13:31
*** geaaru has quit IRC13:31
ceenecool, thanks13:33
ceenei'm going to post there my mirror :)13:33
KotCzarnyadd proper comments13:34
KotCzarnyhmm, someone duplicated muarf entry13:35
KotCzarnyahm, its for app manager13:35
bencoh"slow, but better than nothing" is it that slow ?13:35
KotCzarnybencoh: you've said it i think13:35
bencohI said it was slow ?13:35
KotCzarnyi mioght be wrong, my memory is flunky sometimes13:36
bencohit's hosted behind FTTH at 100mbps13:36
KotCzarnyno limiting?13:36
bencohthat should be way more than any n900 could ever need :p13:36
KotCzarny:)13:37
KotCzarnysome people use wget -r etc13:37
bencohno rate-limit no13:37
KotCzarnyi can remove that comment13:37
ceenei'm editing it right now to add my repos13:37
ceeneso i can remove that comment myself13:38
bencohI don't really mind it, but I was just wondering whether someone experienced some issue13:38
KotCzarnyceene, just remove comment about being slow13:38
KotCzarnyleave the rest13:38
ceeneok13:38
KotCzarnyunless muarf gets the 'official' status13:38
bencohit wont :)13:39
ceenehttp://wiki.maemo.org/Repository#fremantle_repos_.28copy.26paste_sources.list.2913:39
ceenethere :)13:39
*** odin_ has joined #maemo13:41
KotCzarny:)13:42
ceeneit's hosted on the university13:43
ceenei don't know which connection we have here13:43
ceenebut i'm sure it's fast enough13:43
*** geaaru has joined #maemo13:44
*** MoritzJT has joined #maemo13:44
KotCzarnyi wouldnt mind if you guys added n8x0 repos too, at least for diablo13:46
bencohunfortunately I never mirrored it13:46
ceeneit was http://catalogue.tableteer.nokia.com/?13:47
ceenei didn't mirror it neither :(13:47
bencohwonder if there is some mirror out there13:47
bencohmaybe someone has an offline copy13:48
ceeneif it appears i wouldn't mind hosting it too13:48
bencohsame13:49
KotCzarnyi have a mirror of chinook and part of diablo13:51
KotCzarnymirrored it when before diablo came out13:52
ceeneif you want to upload it i can set something up13:53
*** Kabouik__ has joined #maemo14:05
*** erlehmann_ has joined #maemo14:06
KotCzarnywill get around it later14:07
KotCzarnyluckily its mostly unneeded stuff14:08
*** erlehmann has quit IRC14:08
KotCzarnybut having firmware images handy is ncie14:08
KotCzarny*nice14:08
*** Kabouik has quit IRC14:08
*** erlehmann_ is now known as erlehmann14:10
*** RzR has quit IRC14:19
*** RzR has joined #maemo14:19
*** RzR has quit IRC14:19
*** RzR has joined #maemo14:19
*** MoritzJT has quit IRC14:22
*** MoritzJT has joined #maemo14:25
*** erlehmann_ has joined #maemo14:26
*** arossdotme has quit IRC14:28
*** erlehmann has quit IRC14:29
*** FlameReaper-PC has quit IRC14:30
*** erlehmann_ is now known as erlehmann14:33
*** netkat has quit IRC14:38
*** arossdotme has joined #maemo14:41
*** darkschneider has quit IRC14:42
*** darkschneider has joined #maemo14:42
*** tanty is now known as tanty_off14:43
*** Kabouik_ has quit IRC14:44
*** netkat has joined #maemo14:44
*** Kabouik has joined #maemo14:45
*** erlehmann has quit IRC14:58
*** erlehmann has joined #maemo15:00
*** erlehmann has quit IRC15:04
*** LauRoman has joined #maemo15:10
*** erlehmann has joined #maemo15:11
*** mavhc has quit IRC15:11
*** mavhc has joined #maemo15:13
*** mavhk has joined #maemo15:16
*** mhlavink has quit IRC15:21
*** mhlavink has joined #maemo15:23
*** FlameReaper-PC has joined #maemo15:44
*** shaggycat has joined #maemo15:52
shaggycatHi all15:52
shaggycatI have a problem: Sorry, it seems that you are using an IP address or a proxy that is listed in the forum anti spam blacklist. Feel free to contact our staff on irc freenode #maemo channel.15:52
shaggycat77.246.99.7015:52
shaggycatAlso I try to use tor for read forum, and also can't :(15:53
shaggycatPlease delist my office IP address15:53
*** beford has quit IRC15:54
bencohxes: ^15:55
warfareI could do something about it but I don't have the right ssh keys on my work machine.15:56
*** slacko25328 has joined #maemo16:14
sixwheeledbeastthat IP has been used for brute force attacks in the past according to search engines16:15
KotCzarnybad office, bad!16:15
L29Ahgood tmo, good!16:17
KotCzarnyyeah, google says this ip has some bad people behind16:25
*** L29Ah has left #maemo16:31
KotCzarnyhmm16:33
KotCzarnyhow come i see powertop reporting 1150mhz while i have max set to 500?16:33
ShadowJKpowertop doesn't work with kernel power16:34
bencohhmmm ... which part of doesnt work ?16:35
ShadowJKfrequencies16:36
*** erlehmann has quit IRC16:38
*** slacko25328 has quit IRC16:39
KotCzarnycould be just cosmetic, because time_in_state shows ok16:41
KotCzarnythough otoh it doesnt enter 125mhz, hmm16:41
*** troulouliou_div2 has joined #maemo16:47
*** L29Ah has joined #maemo16:57
KotCzarnyhmm, anyone got a clue why non mafw apps get interrupted on events like window change, blank/unblank etc? omp seems to be unaffected, anything else (panucci, oscp, mplayer) does17:00
*** BCMM has joined #maemo17:01
KotCzarnybah, even gstreamer17:04
*** Smily has quit IRC17:04
*** ccnnjj has joined #maemo17:06
*** Smily has joined #maemo17:08
ShadowJK125MHz is broken, iirc.17:13
KotCzarnyfor now it's as broken as 'not using it at all by cpufreq'17:14
ShadowJK125 MHz has nevee been used by N90017:15
KotCzarnyi remember some people saying that they've used it. were they misinformed?17:15
ShadowJKThey might've tried to use it, yeah17:15
ShadowJKI remember it said it's unstable17:16
KotCzarnyfor me it's just not entering it at all, even with setting scaling_min_freq ok. was it some patch in kernelpower?17:17
ShadowJKcould be. freemangordon might know17:18
*** L29Ah has left #maemo17:18
bencohKotCzarny: changing window doesnt stop/pause gst-launch here, but I can see a glitch17:24
*** L29Ah has joined #maemo17:24
bencohI think it does something with the video surface17:24
KotCzarnybencoh, i don't mean 'stop', but 'click'17:24
bencohthen I've experienced that as well under some conditions, yeah17:25
KotCzarnyfunny thing is that system media player is unaffected17:25
bencoh(and I still think it's related to the way surfaces are handled)17:25
bencohhmm, iirc system media player pauses when switching window17:25
KotCzarnytry omp17:26
bencohoh, omp17:26
bencohwhat about cutetube ?17:26
KotCzarnydidnt try as i dont use it17:27
*** eMHa_ has quit IRC17:44
KotCzarnybencoh, it somehow boils down to find out what tricks mafw uses17:45
*** troulouliou_div2 has quit IRC17:45
*** BCMM has quit IRC18:04
*** Fiorenza has quit IRC18:08
*** erlehmann has joined #maemo18:17
*** dreamer has quit IRC18:19
*** dreamer has joined #maemo18:19
*** lexik is now known as fsociety18:23
*** fsociety is now known as lexik18:24
*** Kabouik has quit IRC18:37
*** darkschneider has quit IRC18:42
*** darkschneider has joined #maemo18:42
*** andril has joined #maemo18:50
*** Pali has joined #maemo18:51
*** troulouliou_div2 has joined #maemo19:13
L29AhKotCzarny: renice?19:19
L29Ahi suggest cute gui animations are niced so a user won't scream that n900 is slow in blogs scaring nokia customers away19:20
bencohwhat do you want to renice ?19:20
KotCzarnyl29ah: nope19:21
KotCzarnyit's something at system level, maybe pulseaudio19:21
KotCzarnyrenicing doesnt do a thing19:21
KotCzarnyand its not cpu starvage19:21
KotCzarnyas i can do some cpu intensive ops without glitches19:21
L29Ahrtprio?19:22
KotCzarnyjust do the test and run mplayer19:22
KotCzarnythen just blank/unblank screen19:22
KotCzarnyor switch windows19:22
bencohKotCzarny: I dont think it's pulseaudio but a change in the video sink (probably the underlying surface) and audio/video sync is responsible for the audio "click"19:23
KotCzarnyno, its just as if audio thread was blocked for some time19:24
KotCzarnysometime short, sometimes a bit longer19:24
KotCzarnybut never happens for mafw (omp)19:24
*** andril has quit IRC19:25
sixwheeledbeastKotCzarny: I use 125Mhz with no noticeable issues19:39
L29Ahso?19:40
sixwheeledbeast125Mhz-600Mhz SR19:40
KotCzarnyswb: problem is i can set 125 as min, but kernel doesnt go there19:40
sixwheeledbeastavoid_frequencies setting in kp19:41
KotCzarnyhmm19:41
KotCzarnywhere to find it in /sys/ ?19:41
sixwheeledbeast125000 is set as avoid you have to remove this19:41
sixwheeledbeastI find it19:41
sixwheeledbeastmomplz19:41
KotCzarny /sys/./devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies19:42
sixwheeledbeastyep19:43
KotCzarnyso, i just echo "" into the file19:43
sixwheeledbeastecho > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies19:43
KotCzarnywe shall see19:43
sixwheeledbeastalso I use with echo 1 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/ignore_nice_load19:44
KotCzarnythat mean everything >0 ?19:44
KotCzarnyor >=019:44
sixwheeledbeastblank, so removes content19:45
KotCzarnyi mean, when set to 1, which priorities are ignored19:46
sixwheeledbeastoh19:46
sixwheeledbeastnot sure I remember it being a "thing" for running 125 sucessfully.19:48
KotCzarnyuhum19:48
bencohKotCzarny: it is "blocked" because it needs to be kept in sync with video19:51
bencohafaiu19:52
bencohI havent really investigated much into this19:52
KotCzarnybencoh, but omp somehow manages it19:52
sixwheeledbeastKotCzarny: " ignore_nice_load > When set to 0, all processes are counted towards the cpu utilization value.  When set to 1, the processes that are run with a 'nice' value will not count "19:54
KotCzarnyso >019:54
KotCzarnybecause by default you get prio019:55
*** RzR is now known as rZr20:14
*** eMHa_ has joined #maemo20:16
*** eMHa__ has joined #maemo20:18
*** troulouliou_div2 has quit IRC20:20
*** eMHa_ has quit IRC20:21
*** eMHa__ has quit IRC20:22
*** eMHa__ has joined #maemo20:22
*** vectis has joined #maemo20:37
KotCzarnybencoh: still, solving that mafw audio trick is more important to me20:46
*** L29Ah has quit IRC20:52
*** LauRoman has quit IRC20:59
*** futpib has joined #maemo21:02
*** FlameReaper-PC has quit IRC21:09
*** LauRoman has joined #maemo21:09
*** erlehmann has left #maemo21:25
*** geaaru has quit IRC21:28
*** Mekkis has quit IRC21:31
*** xes_ has joined #maemo21:34
*** xes has quit IRC21:36
*** LauRoman|Alt has quit IRC21:39
*** L29Ah has joined #maemo21:42
*** andril has joined #maemo21:47
vectis /msg NickServ VERIFY REGISTER vectis fufpaedpytki21:47
keriogood job21:50
vectis:D21:51
*** sparetire_ has joined #maemo21:52
KotCzarny:>21:52
*** xes_ has quit IRC22:14
*** xes has joined #maemo22:14
*** L29Ah has left #maemo22:22
*** Wizzup has quit IRC22:30
*** vectis has quit IRC22:33
*** norly has joined #maemo22:35
*** L29Ah has joined #maemo22:35
*** Wizzup has joined #maemo22:37
*** Mekkis has joined #maemo22:41
*** Mekkis has quit IRC22:46
*** rZr is now known as RzR22:50
*** LauRoman|Alt has joined #maemo22:52
*** andril has quit IRC22:57
*** L29Ah has left #maemo22:59
*** L29Ah has joined #maemo23:07
*** heroux has quit IRC23:13
*** heroux has joined #maemo23:14
*** Mekkis has joined #maemo23:19
*** Mekkis has quit IRC23:24
*** vectis3 has joined #maemo23:25
*** M4rtinK has joined #maemo23:30
*** arcean has joined #maemo23:39
*** vakkov has quit IRC23:51
*** Mekkis has joined #maemo23:59
*** Mekkis has quit IRC23:59

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