2004-05-21 19:05:27 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
2004-08-24 15:13:08 +00:00
|
|
|
$ROOT="..";
|
|
|
|
|
|
|
|
if($ARGV[0] eq "-r") {
|
|
|
|
$ROOT=$ARGV[1];
|
|
|
|
shift @ARGV;
|
|
|
|
shift @ARGV;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $verbose;
|
|
|
|
if($ARGV[0] eq "-v") {
|
|
|
|
$verbose =1;
|
|
|
|
shift @ARGV;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-24 09:38:26 +00:00
|
|
|
sub filesize {
|
|
|
|
my ($filename)=@_;
|
|
|
|
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
|
|
|
|
$atime,$mtime,$ctime,$blksize,$blocks)
|
|
|
|
= stat($filename);
|
|
|
|
return $size;
|
|
|
|
}
|
|
|
|
|
2004-05-21 19:05:27 +00:00
|
|
|
sub buildlangs {
|
|
|
|
my ($outputlang)=@_;
|
2004-08-24 15:13:08 +00:00
|
|
|
my $dir = "$ROOT/apps/lang";
|
2004-05-21 19:05:27 +00:00
|
|
|
opendir(DIR, $dir);
|
|
|
|
my @files = grep { /\.lang$/ } readdir(DIR);
|
|
|
|
closedir(DIR);
|
|
|
|
|
|
|
|
for(@files) {
|
|
|
|
my $output = $_;
|
|
|
|
$output =~ s/(.*)\.lang/$1.lng/;
|
|
|
|
print "lang $_\n" if($verbose);
|
2004-08-24 15:13:08 +00:00
|
|
|
system ("$ROOT/tools/binlang $dir/english.lang $dir/$_ $outputlang/$output >/dev/null 2>&1");
|
2004-05-21 19:05:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub buildzip {
|
|
|
|
my ($zip, $image, $notplayer)=@_;
|
|
|
|
|
|
|
|
# remove old traces
|
|
|
|
`rm -rf .rockbox`;
|
|
|
|
|
|
|
|
mkdir ".rockbox", 0777;
|
|
|
|
mkdir ".rockbox/langs", 0777;
|
|
|
|
mkdir ".rockbox/rocks", 0777;
|
|
|
|
`find . -name "*.rock" ! -empty | xargs --replace=foo cp foo .rockbox/rocks/`;
|
|
|
|
|
2004-08-24 15:13:08 +00:00
|
|
|
open VIEWERS, "$ROOT/apps/plugins/viewers.config" or
|
2004-07-13 09:45:39 +00:00
|
|
|
die "can't open viewers.config";
|
|
|
|
@viewers = <VIEWERS>;
|
|
|
|
close VIEWERS;
|
|
|
|
|
|
|
|
open VIEWERS, ">.rockbox/viewers.config" or
|
|
|
|
die "can't create .rockbox/viewers.config";
|
|
|
|
mkdir ".rockbox/viewers";
|
|
|
|
for (@viewers) {
|
|
|
|
if (/,(.+),/) {
|
|
|
|
if(-e ".rockbox/rocks/$1") {
|
2004-05-21 21:01:20 +00:00
|
|
|
`mv .rockbox/rocks/$1 .rockbox/viewers`;
|
2004-07-13 09:45:39 +00:00
|
|
|
print VIEWERS $_;
|
2004-05-21 21:01:20 +00:00
|
|
|
}
|
|
|
|
}
|
2004-07-13 09:45:39 +00:00
|
|
|
}
|
|
|
|
close VIEWERS;
|
|
|
|
|
|
|
|
if($notplayer) {
|
2004-08-24 15:13:08 +00:00
|
|
|
`cp $ROOT/apps/plugins/sokoban.levels .rockbox/`; # sokoban levels
|
|
|
|
`cp $ROOT/apps/plugins/snake2.levels .rockbox/`; # snake2 levels
|
2004-05-21 21:01:20 +00:00
|
|
|
|
2004-05-21 19:05:27 +00:00
|
|
|
mkdir ".rockbox/fonts", 0777;
|
|
|
|
|
2004-08-24 15:13:08 +00:00
|
|
|
opendir(DIR, "$ROOT/fonts") || die "can't open dir fonts";
|
|
|
|
my @fonts = grep { /\.bdf$/ && -f "$ROOT/fonts/$_" } readdir(DIR);
|
2004-05-21 19:05:27 +00:00
|
|
|
closedir DIR;
|
|
|
|
|
2004-08-24 09:38:26 +00:00
|
|
|
my $maxfont;
|
2004-08-24 15:13:08 +00:00
|
|
|
open(HEADER, "<$ROOT/firmware/export/font.h");
|
2004-08-24 09:38:26 +00:00
|
|
|
while(<HEADER>) {
|
|
|
|
if(/^\#define MAX_FONT_SIZE[ \t]*(\d+)/) {
|
|
|
|
$maxfont = $1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(HEADER);
|
|
|
|
die "no decent max font size" if ($maxfont < 2000);
|
|
|
|
|
2004-05-21 19:05:27 +00:00
|
|
|
for(@fonts) {
|
|
|
|
my $f = $_;
|
|
|
|
|
|
|
|
print "FONT: $f\n" if($verbose);
|
|
|
|
my $o = $f;
|
|
|
|
$o =~ s/\.bdf/\.fnt/;
|
2004-08-24 15:13:08 +00:00
|
|
|
my $cmd ="$ROOT/tools/convbdf -s 32 -l 255 -f -o \".rockbox/fonts/$o\" \"$ROOT/fonts/$f\" >/dev/null 2>&1";
|
2004-05-21 19:05:27 +00:00
|
|
|
print "CMD: $cmd\n" if($verbose);
|
|
|
|
`$cmd`;
|
2004-08-24 09:38:26 +00:00
|
|
|
|
|
|
|
# no need to add fonts we cannot load anyway
|
|
|
|
my $fontsize = filesize(".rockbox/fonts/$o");
|
|
|
|
if($fontsize > $maxfont) {
|
|
|
|
unlink(".rockbox/fonts/$o");
|
|
|
|
}
|
2004-05-21 19:05:27 +00:00
|
|
|
}
|
|
|
|
|
2004-06-14 15:04:46 +00:00
|
|
|
if($image) {
|
|
|
|
# image is blank when this is a simulator
|
2004-09-06 07:05:12 +00:00
|
|
|
if( filesize("rockbox.ucl") > 1000 ) {
|
|
|
|
`cp rockbox.ucl .rockbox/`; # UCL for flashing
|
|
|
|
}
|
|
|
|
if( filesize("rombox.ucl") > 1000) {
|
|
|
|
`cp rombox.ucl .rockbox/`; # UCL for flashing
|
|
|
|
}
|
2004-06-14 15:04:46 +00:00
|
|
|
}
|
2004-05-21 19:05:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mkdir ".rockbox/docs", 0777;
|
|
|
|
for(("BATTERY-FAQ",
|
|
|
|
"CUSTOM_CFG_FORMAT",
|
|
|
|
"CUSTOM_WPS_FORMAT",
|
|
|
|
"FAQ",
|
|
|
|
"NODO",
|
|
|
|
"TECH")) {
|
2004-08-24 15:13:08 +00:00
|
|
|
`cp $ROOT/docs/$_ .rockbox/docs/$_.txt`;
|
2004-05-21 19:05:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# now copy the file made for reading on the unit:
|
|
|
|
#if($notplayer) {
|
|
|
|
# `cp $webroot/docs/Help-JBR.txt .rockbox/docs/`;
|
|
|
|
#}
|
|
|
|
#else {
|
|
|
|
# `cp $webroot/docs/Help-Stu.txt .rockbox/docs/`;
|
|
|
|
#}
|
|
|
|
|
|
|
|
buildlangs(".rockbox/langs");
|
|
|
|
|
|
|
|
`find .rockbox | zip $zip -@ >/dev/null`;
|
|
|
|
|
2004-06-14 15:04:46 +00:00
|
|
|
if($image) {
|
|
|
|
`zip $zip $image`;
|
|
|
|
}
|
2004-05-21 19:05:27 +00:00
|
|
|
|
|
|
|
# remove the .rockbox afterwards
|
|
|
|
`rm -rf .rockbox`;
|
|
|
|
}
|
|
|
|
|
|
|
|
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
|
|
|
|
localtime(time);
|
|
|
|
|
|
|
|
$mon+=1;
|
|
|
|
$year+=1900;
|
|
|
|
|
|
|
|
$date=sprintf("%04d%02d%02d", $year,$mon, $mday);
|
|
|
|
$shortdate=sprintf("%02d%02d%02d", $year%100,$mon, $mday);
|
|
|
|
|
|
|
|
# made once for all targets
|
|
|
|
sub runone {
|
|
|
|
my ($type, $target)=@_;
|
|
|
|
|
|
|
|
# build a full install zip file
|
|
|
|
buildzip("rockbox.zip", $target,
|
|
|
|
($type eq "player")?0:1);
|
|
|
|
};
|
|
|
|
|
2004-06-14 15:04:46 +00:00
|
|
|
my $target = $ARGV[0];
|
|
|
|
|
|
|
|
my $exe = "";
|
|
|
|
|
|
|
|
if($target !~ /sim/i) {
|
|
|
|
# not a simulator
|
|
|
|
if($target =~ /recorder/i) {
|
|
|
|
$exe = "ajbrec.ajz";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$exe = "archos.mod";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($target =~ /recorder/i) {
|
|
|
|
runone("recorder", $exe);
|
2004-05-21 19:05:27 +00:00
|
|
|
}
|
|
|
|
else {
|
2004-06-14 15:04:46 +00:00
|
|
|
runone("player", $exe);
|
2004-05-21 19:05:27 +00:00
|
|
|
}
|
|
|
|
|