maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   Help You. Identify the non-optified apps. (https://talk.maemo.org/showthread.php?t=37629)

fnordianslip 2009-12-20 21:06

Re: Help You. Identify the non-optified apps.
 
Might it be the case that du follows links into other file-systems and includes the size of their contents?

kwotski 2009-12-20 23:04

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by fnordianslip (Post 435696)
Might it be the case that du follows links into other file-systems and includes the size of their contents?

The -x switch is supposed to make it not do that.

Quote:

-x, --one-file-system
skip directories on different file systems

Maybe that's not operational here, where du is just a symlink to busybox. But it claims to support the switch:

Quote:

~ $ du --help
BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso26+0m5) multi-call binary

Usage: du [-aHLdclsxhmk] [FILE]...

mikkov 2009-12-20 23:11

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by roamerjiang (Post 435436)
i just reinstalled the mplayer, and then uninstalled it again from application manager, but result is still the same. any suggestion that i can uninstall it properly? thank you very much because my fbreader also get same problem :(

Maybe you should show step by step what is the problem? According to your previous message package was properly uninstalled.

roamerjiang 2009-12-21 03:27

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by mikkov (Post 435831)
Maybe you should show step by step what is the problem? According to your previous message package was properly uninstalled.

thanks for your reply. I'm sorry that i'm quite new to linux system. how can i show it step by step? or is there any command link i can use in xterminal to do that?

kwotski 2009-12-21 08:17

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by roamerjiang (Post 435997)
thow can i show it step by step?

I think he's just asking for you to explain what your problem is, slowly and thoroughly, one step at a time.

If you read the posts above, it's been said a couple of times that the dpkg output you posted looks normal. i.e. the "problem" is not visible.

Corso85 2009-12-21 14:16

Re: Help You. Identify the non-optified apps.
 
I've completed the list of non-opt usage in the first post. Hope it's useful for some

fatalsaint 2009-12-21 19:19

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by roamerjiang (Post 435414)
~ $ dpkg -l mplayer
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==============-==============-============================================
rc mplayer 1.0svn4 The Ultimate Movie Player port for N900

Maybe I can help you guys here. If you are receiving this information when using dpkg then mplayer is removed from your system. That first field that says "RC" means that the package was removed, but configuration files left.

If dpkg --purge was used to remove the package, or the package was never installed, then the first two letters would be "un". If the package is installed, you would see "ii".

Another, more english way to view this, is using:

Code:

~$ dpkg --status xserver-xephyr
Package: xserver-xephyr
Status: unknown ok not-installed
Priority: optional
Section: x11

Pay attention to the status line... "not-installed". Evidently I don't have xserver-xephyr installed on my desktop. So those of you that are thinking mplayer did not remove from your system.. please try this command, or verify that your -l command says "rc" or "un". Either of these will indicated that yes, it has been removed.

emesem 2009-12-22 07:14

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by kwotski (Post 435824)
The -x switch is supposed to make it not do that.

Maybe that's not operational here, where du is just a symlink to busybox. But it claims to support the switch:

I changed your script, so that the line
$du = `du -s /$_`;
now is
$du = `du -xs /$_`;

But it looks like "du" still follows the links. I tried in on mc which I manually moved away from rootfs. Although I'm not sure what your script does at that point of time - or in which directory "du" thinks it is.

Sorry, but I don't know perl - the only thing is that I heard people say it is a write only language (no read ;)).

So, does anyone now, how to modify that script to don't follow symbolic links?

SubCore 2009-12-22 10:43

Re: Help You. Identify the non-optified apps.
 
"du" does NOT follow symbolic links, i just tested it.

btw, -P is the du-switch to deactivate symlinks, but it's not present on the tablet, and it's supposed to be default anyways.

what makes you say that du follows links? any hard evidence?

kwotski 2009-12-22 11:06

Re: Help You. Identify the non-optified apps.
 
I didn't actually test this before posting the script, because I assumed du behaviour would be normal (i.e. don't follow symlinks) but here's a quick test which seems to show it is normal:

Quote:

~# mkdir ttt
~# ln -s /usr/share ttt/test
~# ln -s /usr/share test2
~# du -s /usr/share
76716 /usr/share
~# du -s ttt test2 /usr/share
0 ttt
0 test2
76716 /usr/share
~#
the -x switch is not relevant to symlinks in particular. It's to tell du not to look at disk usage on separate filesystems which are mounted under the directory it's looking at.

So

du -s /

would give the disk usage for everything under / including /home and /home/user/MyDocs, which are separate filesystems, but

du -sx /

would only give the disk usage for the filesystem that / was part of.

Or, to give another example:

Quote:

# du -s /home
2195060 /home
~# du -sx /home
204468 /home
The first result is bigger because it's counting /home/user/MyDocs. The second result doesn't look at that, because it's a separate mount to /home, and the -x switch has been given.

So in short ;) the script shouldn't need any change to do the Right Thing in relation to symlinks :)

Edit: :o :o Nope, it did the Wrong Thing in relation to symlinked directories. Please get the new version (from the original place) if you're having trouble with that.

SubCore 2009-12-22 11:08

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by kwotski (Post 434974)
Yeah, there's something kind of puzzling about the root fs. It's supposed to be < 256M, right?

j.s already said it, but here a link with a detailed explanation for this discrepancy:
http://www.linux-mtd.infradead.org/f...ml#L_df_report

"df" only reports the physically allocated memory and does not account for the compression that's taking place.
"du" however reports the actual size of the files, and not their compressed, physical size.
Thus, "du" will always report a higher usage than "df".

kwotski 2009-12-22 12:19

Re: Help You. Identify the non-optified apps.
 
Thanks for the interesting link. Just one minor nitpick (I can't help myself ;) )

Quote:

Originally Posted by SubCore (Post 437362)
"du" however reports the actual size of the files

Well, kind of. du is supposed to report the disk allocation associated with the file. On an ext3 filesystem where the block size is 4k, even a 1 byte file will have a 4k block allocated to it, and du will show this.

On a compressed filesystem, this might be misleading because the "4k block" has only a virtual existence and doesn't reflect the actual disk usage associated with the file. At least as I understand it.

You can see this below. ls shows the file size (1 byte) whereas du shows (what it thinks is) the disk allocation..

~# echo > testfile
~# ls -l testfile
-rw-r--r-- 1 root root 1 Dec 22 12:18 testfile
~# du -h testfile
4.0k testfile

jukey 2009-12-22 12:30

Re: Help You. Identify the non-optified apps.
 
Hi,
thanks for the long list of non-optified applications. There is a list in the wiki where the applications should be added to track which are already optified for which are already exististing bug reports and so on:

http://wiki.maemo.org/Opt_Problem/Non-Optified_packages

For example fennec/firefox and vagalume are optified after reporting and a lot of other developers which are contacted are aware of the problem and will optify their packages.

Thank you,
Uwe

emesem 2009-12-23 06:34

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by SubCore (Post 437341)
"du" does NOT follow symbolic links, i just tested it.

btw, -P is the du-switch to deactivate symlinks, but it's not present on the tablet, and it's supposed to be default anyways.

what makes you say that du follows links? any hard evidence?

I confirm the "du" behavior.

What I did is:
I put the perl script on my device. I run it:
Code:

ssh root@mydevice
mentionedPerlScript.pl /var/lib/dpkg/info/*.md5sums > /home/user/apps/nonOptified.txt

Then I look at the output and get (for mc as an example):
Code:

mc : 4.00K        /usr/share/applications/hildon/mc.desktop
mc : 4.00K        /usr/share/icons/hicolor/64x64/apps/mc.png
mc : 68.00K        /usr/share/locale/az/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/be/LC_MESSAGES/mc.mo
mc : 80.00K        /usr/share/locale/bg/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/ca/LC_MESSAGES/mc.mo
mc : 72.00K        /usr/share/locale/cs/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/da/LC_MESSAGES/mc.mo
mc : 72.00K        /usr/share/locale/de/LC_MESSAGES/mc.mo
mc : 8.00K        /usr/share/locale/el/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/es/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/eu/LC_MESSAGES/mc.mo
mc : 20.00K        /usr/share/locale/fi/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/fr/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/hu/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/it/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/ja/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/ko/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/lt/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/lv/LC_MESSAGES/mc.mo
mc : 84.00K        /usr/share/locale/mn/LC_MESSAGES/mc.mo
mc : 72.00K        /usr/share/locale/nl/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/no/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/pl/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/pt/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/pt_BR/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/ro/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/ru/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/sk/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/sl/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/sr/LC_MESSAGES/mc.mo
mc : 68.00K        /usr/share/locale/sv/LC_MESSAGES/mc.mo
mc : 12.00K        /usr/share/locale/ta/LC_MESSAGES/mc.mo
mc : 64.00K        /usr/share/locale/tr/LC_MESSAGES/mc.mo
mc : 76.00K        /usr/share/locale/uk/LC_MESSAGES/mc.mo
mc : 80.00K        /usr/share/locale/vi/LC_MESSAGES/mc.mo
mc : 48.00K        /usr/share/locale/wa/LC_MESSAGES/mc.mo
mc : 60.00K        /usr/share/locale/zh_CN/LC_MESSAGES/mc.mo
mc : 56.00K        /usr/share/locale/zh_TW/LC_MESSAGES/mc.mo
mc : 8.00K        /usr/share/mc/extfs/README
mc : 4.00K        /usr/share/mc/extfs/bpp
mc : 12.00K        /usr/share/mc/extfs/rpm
mc : 12.00K        /usr/share/mc/extfs/trpm
mc : 4.00K        /usr/share/mc/extfs/u7z
mc : 4.00K        /usr/share/mc/extfs/a
mc : 12.00K        /usr/share/mc/extfs/apt
mc : 4.00K        /usr/share/mc/extfs/audio
mc : 8.00K        /usr/share/mc/extfs/deb
mc : 4.00K        /usr/share/mc/extfs/deba
mc : 12.00K        /usr/share/mc/extfs/debd
mc : 12.00K        /usr/share/mc/extfs/dpkg
mc : 4.00K        /usr/share/mc/extfs/iso9660
mc : 4.00K        /usr/share/mc/extfs/hp48
mc : 4.00K        /usr/share/mc/extfs/lslR
mc : 8.00K        /usr/share/mc/extfs/mailfs
mc : 12.00K        /usr/share/mc/extfs/patchfs
mc : 4.00K        /usr/share/mc/extfs/rpms
mc : 4.00K        /usr/share/mc/extfs/ualz
mc : 4.00K        /usr/share/mc/extfs/uar
mc : 4.00K        /usr/share/mc/extfs/uarj
mc : 4.00K        /usr/share/mc/extfs/uha
mc : 4.00K        /usr/share/mc/extfs/ulha
mc : 4.00K        /usr/share/mc/extfs/urar
mc : 16.00K        /usr/share/mc/extfs/uzip
mc : 4.00K        /usr/share/mc/extfs/uzoo
mc : 4.00K        /usr/share/mc/bin/mc.csh
mc : 4.00K        /usr/share/mc/bin/mc.sh
mc : 4.00K        /usr/share/mc/bin/mc-wrapper.csh
mc : 4.00K        /usr/share/mc/bin/mc-wrapper.sh
mc : 4.00K        /usr/share/mc/mc.hint
mc : 4.00K        /usr/share/mc/mc.hint.cs
mc : 4.00K        /usr/share/mc/mc.hint.es
mc : 4.00K        /usr/share/mc/mc.hint.hu
mc : 4.00K        /usr/share/mc/mc.hint.it
mc : 4.00K        /usr/share/mc/mc.hint.nl
mc : 4.00K        /usr/share/mc/mc.hint.pl
mc : 8.00K        /usr/share/mc/mc.hint.ru
mc : 8.00K        /usr/share/mc/mc.hint.sr
mc : 8.00K        /usr/share/mc/mc.hint.uk
mc : 4.00K        /usr/share/mc/mc.hint.zh
mc : 12.00K        /usr/share/mc/mc.menu.sr
mc : 160.00K        /usr/share/mc/mc.hlp.es
mc : 140.00K        /usr/share/mc/mc.hlp.hu
mc : 136.00K        /usr/share/mc/mc.hlp.it
mc : 156.00K        /usr/share/mc/mc.hlp.pl
mc : 284.00K        /usr/share/mc/mc.hlp.ru
mc : 240.00K        /usr/share/mc/mc.hlp.sr
mc : 128.00K        /usr/share/mc/mc.hlp
mc : 4.00K        /usr/share/mc/syntax/ada95.syntax
mc : 4.00K        /usr/share/mc/syntax/aspx.syntax
mc : 12.00K        /usr/share/mc/syntax/assembler.syntax
mc : 8.00K        /usr/share/mc/syntax/c.syntax
mc : 4.00K        /usr/share/mc/syntax/changelog.syntax
mc : 8.00K        /usr/share/mc/syntax/cs.syntax
mc : 20.00K        /usr/share/mc/syntax/css.syntax
mc : 20.00K        /usr/share/mc/syntax/d.syntax
mc : 4.00K        /usr/share/mc/syntax/diff.syntax
mc : 4.00K        /usr/share/mc/syntax/dos.syntax
mc : 4.00K        /usr/share/mc/syntax/eiffel.syntax
mc : 12.00K        /usr/share/mc/syntax/fortran.syntax
mc : 4.00K        /usr/share/mc/syntax/html.syntax
mc : 4.00K        /usr/share/mc/syntax/idl.syntax
mc : 4.00K        /usr/share/mc/syntax/java.syntax
mc : 8.00K        /usr/share/mc/syntax/js.syntax
mc : 12.00K        /usr/share/mc/syntax/latex.syntax
mc : 4.00K        /usr/share/mc/syntax/lisp.syntax
mc : 4.00K        /usr/share/mc/syntax/lsm.syntax
mc : 8.00K        /usr/share/mc/syntax/lua.syntax
mc : 4.00K        /usr/share/mc/syntax/m4.syntax
mc : 4.00K        /usr/share/mc/syntax/mail.syntax
mc : 4.00K        /usr/share/mc/syntax/makefile.syntax
mc : 8.00K        /usr/share/mc/syntax/ml.syntax
mc : 8.00K        /usr/share/mc/syntax/nroff.syntax
mc : 12.00K        /usr/share/mc/syntax/octave.syntax
mc : 12.00K        /usr/share/mc/syntax/pascal.syntax
mc : 12.00K        /usr/share/mc/syntax/perl.syntax
mc : 320.00K        /usr/share/mc/syntax/php.syntax
mc : 4.00K        /usr/share/mc/syntax/po.syntax
mc : 12.00K        /usr/share/mc/syntax/povray.syntax
mc : 12.00K        /usr/share/mc/syntax/python.syntax
mc : 8.00K        /usr/share/mc/syntax/ruby.syntax
mc : 12.00K        /usr/share/mc/syntax/sh.syntax
mc : 8.00K        /usr/share/mc/syntax/smalltalk.syntax
mc : 4.00K        /usr/share/mc/syntax/slang.syntax
mc : 8.00K        /usr/share/mc/syntax/spec.syntax
mc : 20.00K        /usr/share/mc/syntax/sql.syntax
mc : 8.00K        /usr/share/mc/syntax/swig.syntax
mc : 4.00K        /usr/share/mc/syntax/syntax.syntax
mc : 4.00K        /usr/share/mc/syntax/tcl.syntax
mc : 12.00K        /usr/share/mc/syntax/texinfo.syntax
mc : 4.00K        /usr/share/mc/syntax/unknown.syntax
mc : 4.00K        /usr/share/mc/syntax/xml.syntax
mc : 4.00K        /usr/share/doc-base/MC-FAQ
mc : 4.00K        /usr/share/menu/mc
mc : 0.00K        /usr/bin/mc
mc : 4.00K        /usr/bin/mcmfmt
mc : 4.00K        /usr/bin/mcview-debian
mc : 4.00K        /usr/bin/mcedit-debian
mc : 8.00K        /usr/libexec/mc/cons.saver
mc : total non-opt usage: 4.48M

Then I checked /usr/share/mc (which holds some 2xx kb files). So I did:
Code:

ls -l /usr/share/mc
lrwxrwxrwx    1 root    root          18 Dec 21 18:35 /usr/share/mc -> /home/usr/share/mc

Code:

df /usr/share
rootfs                  233224    147480    81460  64% /

Code:

df /usr/share/mc
/dev/mmcblk0p1        27871100    914160  25541160  3% /home

Code:

du -sch /home/usr/share/mc
2.1M    /home/usr/share/mc

Contrary to
Code:

l /usr/bin/mc
lrwxrwxrwx    1 root    root          16 Dec 21 19:46 /usr/bin/mc -> /home/usr/bin/mc

Code:

l -h /home/usr/bin/mc
-rwxr-xr-x    1 root    root      773.3k Oct 10 11:46 /home/usr/bin/mc

The linked file /usr/bin/mc is given with 0 size. But all files that are in a linked folder show up with a size (even though they are on a different file system). My expectation would be - that there are also shown as zero sized, because they are not on rootfs. So assume, there is something wrong?

kwotski 2009-12-23 09:01

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by emesem (Post 438655)
I confirm the "du" behavior.

Yep, that's definitely a problem with the script. (du is behaving as expected, but the script doesn't take account of symlinked directories). I'll try and fix soon. In the meantime, anyone else.. please feel free :)

kwotski 2009-12-23 10:35

Re: Help You. Identify the non-optified apps.
 
1 Attachment(s)
Ok, here's an amended version of the script which tries to check for symlinked directories (by parsing the output of ls -l .. yuck!) ... recursively and with caching. May well be full of holes.. feedback welcome :)

I've put the extension as .txt to allow file-upload.

Edit: I've also updated the original script where first posted between [code] tags, above.

SubCore 2009-12-23 11:01

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by kwotski (Post 438836)
Ok, here's an amended version of the script which tries to check for symlinked directories (by parsing the output of ls -l .. yuck!) ... recursively and with caching. May well be full of holes.. feedback welcome :)

instead of parsing for "->", you can just use this file test function:
Code:

if -l $file
that's probably more reliable :)

i'll give your script a go a bit later when i have more time.

kwotski 2009-12-23 11:08

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by SubCore (Post 438867)
instead of parsing for "->", you can just use this file test function:
Code:

if -l $file
that's probably more reliable :)

Actually, I do use that, but I need to find where it is linked to :)

SubCore 2009-12-23 11:28

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by kwotski (Post 438874)
Actually, I do use that, but I need to find where it is linked to :)

ah yes, i'm sorry, should've read your script more careful. :)

for parsing the target of a link, there's a dedicated command available: readlink

Code:

~ $ readlink /opt
/home/opt


emesem 2009-12-25 07:29

Re: Help You. Identify the non-optified apps.
 
Thank you for the rework. Also thank you for the effort you invest (script size doubled).

Unfortunately I still see some issues :( (and I still did not learn perl ;)).

The mc package (which I moved away and linked it) seems to be handled correctly now. Thank you :).

But now I just saw the following thing.

Report from the actual script version; from your original post (which I used):

Code:

adblock-plus-1.0 : 84.00K        /home/user/.mozilla/microb/adblockplus/patterns.ini
adblock-plus-1.0 : 4.00K        /home/user/.mozilla/microb/adblockplus/patterns-backup1.ini
adblock-plus-1.0 : 20.00K        /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/components/nsAdblockPlus.js
adblock-plus-1.0 : 1.31M        /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/chrome/adblockplus.jar
adblock-plus-1.0 : 4.00K        /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/install.js
adblock-plus-1.0 : 8.00K        /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/chrome.manifest
adblock-plus-1.0 : 4.00K        /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/install.rdf
adblock-plus-1.0 : 4.00K        /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/defaults/preferences/adblockplus.js
adblock-plus-1.0 : total non-opt usage: 1.43M

Code:

l /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/chrome/adblockplus.jar
-rw-r--r--    1 root    root      1367870 Oct 15 09:08 /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/chrome/adblockplus.jar

Code:

df /home/user/.mozilla/microb/extensions/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}/chrome/adblockplus.jar
Filesystem          1k-blocks      Used Available Use% Mounted on
/dev/mmcblk0p1        27871100    989128  25466192  4% /home

So I guess there are more filesystem checks needed. Because for me it looks like the addblock-plus reported by the script are not on rootfs. For me "optified" means more "not on rootfs" than in a specific directory. Maybe thats where my problem comes from ^^.

But I would tend to say adblock-plus-1.0 is optified, though it is not in /opt.

Sorry for that trouble :o.

kwotski 2009-12-25 16:37

Re: Help You. Identify the non-optified apps.
 
Quote:

Originally Posted by emesem (Post 441169)
Sorry for that trouble :o.

Not at all.. Thanks for the QA ;)

It's because when the file isn't a symlink, I'm only checking for /opt. I should also check for /home too.

I've amended the version in my original post, linked above.

I'll amend the attached version probably later today or tomorrow.

Really, it's just changing the line

unless(/^opt/ or /^usr\/share\/(man|doc)\//) {

to

unless(/^opt/ or /^home/ or /^usr\/share\/(man|doc)\//) {

Hope that works. Happy holidays! :)

aironeous 2009-12-25 20:23

Re: Help You. Identify the non-optified apps.
 
Please someone sticky this thread and keep it maintained so that we all know when we get our n900 what's gonna eat up our 256rom.
The list of apps not following guidelines to be optified needs to be posted somewhere and stickied.
How will new users reverse the damage?
Can you say with 100% certainty anything in a repo that is not extras testing or extras devel is optified?
Is that the basic rule here?


All times are GMT. The time now is 17:17.

vBulletin® Version 3.8.8