diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-11-16 03:53:49 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-11-16 03:53:49 +0000 |
| commit | 3114f2c6db0d37f8efdf8c319d11b31d7bfb89c1 (patch) | |
| tree | 8fe93c608ba90c9ea576cf2117c28f59c3bd90a9 | |
| parent | 3fe99aa9bfebab2b8da8fd7729e06f38411ca055 (diff) | |
| download | rockbox-3114f2c6db0d37f8efdf8c319d11b31d7bfb89c1.zip rockbox-3114f2c6db0d37f8efdf8c319d11b31d7bfb89c1.tar.gz rockbox-3114f2c6db0d37f8efdf8c319d11b31d7bfb89c1.tar.bz2 rockbox-3114f2c6db0d37f8efdf8c319d11b31d7bfb89c1.tar.xz | |
get ready for classic_statusbar... get it added to the .zip. buildwps.pl needs fixing to work with .sbs files better
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23648 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/buildzip.pl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl index f04d0ff..26fd217 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -428,6 +428,16 @@ STOP else { print STDERR "No wps module present, can't do the WPS magic!\n"; } + + # until buildwps.pl is fixed, manually copy the classic_statusbar theme across + mkdir "$rbdir/wps/classic_statusbar", 0777; + glob_copy("$ROOT/wps/classic_statusbar/*.bmp", "$rbdir/wps/classic_statusbar"); + if ($swcodec) { + copy("$ROOT/wps/classic_statusbar.sbs", "$rbdir/wps"); + } else { + copy("$ROOT/wps/classic_statusbar-hwcodec.sbs", "$rbdir/wps/classic_statusbar.sbs"); + } + system("touch $rbdir/wps/rockbox_none.sbs"); # and the info file copy("rockbox-info.txt", "$rbdir/rockbox-info.txt"); |