From 0f820d6ed7439ccf9144fd045d1840dfe5562d9d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 3 Aug 2005 21:31:51 +0000 Subject: Increased maximum file size for models with LCD height larger than 64 to 10000 bytes. Also adjusted the buildzip script to dynamically figure out the maximum buffer size for the particular build that the zip is made for. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7280 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/font.h | 8 ++++++-- tools/buildzip.pl | 29 +++++++++++++++++++++-------- 2 files changed, 27 insertions(+), 10 deletions(-) diff --git a/firmware/export/font.h b/firmware/export/font.h index 01751ad..beb6347 100644 --- a/firmware/export/font.h +++ b/firmware/export/font.h @@ -26,9 +26,13 @@ #if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR) -/* max static loadable fonts buffer*/ +/* max static loadable font buffer size */ #ifndef MAX_FONT_SIZE -#define MAX_FONT_SIZE 4000 /* max total fontsize allocation*/ +#if LCD_HEIGHT > 64 +#define MAX_FONT_SIZE 10000 +#else +#define MAX_FONT_SIZE 4000 +#endif #endif /* diff --git a/tools/buildzip.pl b/tools/buildzip.pl index a75f424..bdad0fc 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -14,6 +14,10 @@ if($ARGV[0] eq "-v") { shift @ARGV; } +my $target = $ARGV[0]; +my $cppdef = $target; + +my $exe = $ARGV[1]; sub filesize { my ($filename)=@_; @@ -95,13 +99,26 @@ sub buildzip { closedir DIR; my $maxfont; - open(HEADER, "<$ROOT/firmware/export/font.h"); - while(
) { - if(/^\#define MAX_FONT_SIZE[ \t]*(\d+)/) { + + open(SIZE, ">ziptemp"); + print SIZE <) { + if($_ =~ /^Font Size We Want: (\d*)/) { $maxfont = $1; + last; } } - close(HEADER); + close(GETSIZE); + unlink("ziptemp"); die "no decent max font size" if ($maxfont < 2000); for(@fonts) { @@ -182,10 +199,6 @@ sub runone { ($type eq "player")?0:1); }; -my $target = $ARGV[0]; - -my $exe = $ARGV[1]; - if(!$exe) { # not specified, guess! if($target =~ /(recorder|ondio)/i) { -- cgit v1.1