diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-07 01:23:13 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-07 01:23:13 +0000 |
| commit | 5621fd393a4445645b07bb2e89d89d23bb9a6473 (patch) | |
| tree | b2b46a056ea1ae599e0a99118ddacdf72a6dac4a /tools | |
| parent | 580b1a5c4b305c7cb320415267c5e1b88b053948 (diff) | |
| download | rockbox-5621fd393a4445645b07bb2e89d89d23bb9a6473.zip rockbox-5621fd393a4445645b07bb2e89d89d23bb9a6473.tar.gz rockbox-5621fd393a4445645b07bb2e89d89d23bb9a6473.tar.bz2 rockbox-5621fd393a4445645b07bb2e89d89d23bb9a6473.tar.xz | |
Build pictureflow using overlay on lowmem targets, support JPEG AA in PF on all targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20864 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/buildzip.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl index ea902dd..6b90dfa 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -326,6 +326,11 @@ STOP if ($line =~ /([^,]*),(.*)/) { my ($plugin, $dir)=($1, $2); move("$rbdir/rocks/${plugin}.rock", "$rbdir/rocks/$dir/${plugin}.rock"); + if(-e "$rbdir/rocks/${plugin}.ovl") { + # if there's an "overlay" file for the .rock, move that as + # well + move("$rbdir/rocks/${plugin}.ovl", "$rbdir/rocks/$dir"); + } } } |