3 # Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
13 use File
::Copy
; # For move() and copy()
14 use File
::Find
; # For find()
15 use File
::Path
qw(mkpath rmtree); # For rmtree()
18 use Getopt
::Long
qw(:config pass_through); # pass_through so not confused by -DTYPE_STUFF
30 my $target_id; # passed in, not currently used
31 my $rbdir; # can be non-.rockbox for special builds
37 mkpath
($dir, $verbose, 0777);
42 my ($_src, $dest, $opts) = @_;
48 foreach my $src (glob($_src)) {
49 unless ( -d
$src || !(-e
$src)) {
50 system("install $opts \"$src\" \"$dest\"");
51 print "install $opts \"$src\" -> \"$dest\"\n" if $verbose;
58 my ($pattern, $destination) = @_;
59 print "glob_copy: $pattern -> $destination\n" if $verbose;
60 foreach my $path (glob($pattern)) {
61 copy
($path, $destination);
66 my ($pattern, $destination) = @_;
67 print "glob_move: $pattern -> $destination\n" if $verbose;
68 foreach my $path (glob($pattern)) {
69 move
($path, $destination);
75 print "glob_unlink: $pattern\n" if $verbose;
76 foreach my $path (glob($pattern)) {
82 my ($pattern, $destination) = @_;
83 print "find_copyfile: $pattern -> $destination\n" if $verbose;
86 my $source = getcwd
();
87 if ($path =~ $pattern && filesize
($path) > 0 && !($path =~ /$rbdir/)) {
89 print "link $path $destination\n" if $verbose;
90 symlink($source.'/'.$path, $destination.'/'.$path);
92 print "cp $path $destination\n" if $verbose;
93 copy
($path, $destination);
94 chmod(0755, $destination.'/'.$path);
100 sub find_installfile
{
101 my ($pattern, $destination) = @_;
102 print "find_installfile: $pattern -> $destination\n" if $verbose;
105 if ($path =~ $pattern) {
106 print "FIND_INSTALLFILE: $path\n";
107 glob_install
($path, $destination);
114 my ($src, $dest) = @_;
120 my @plugins = ( "games", "apps", "demos", "viewers" );
121 my @userstuff = ( "backdrops", "codepages", "docs", "fonts", "langs", "themes", "wps", "eqs", "icons" );
126 $libdir .= "/lib/rockbox";
127 $userdir .= "/share/rockbox";
129 # for non-app builds we expect the prefix to be the dir above .rockbox
130 $bindir .= "/$rbdir";
131 $libdir = $userdir = $bindir;
133 if ($dest =~ /\/dev\
/null/) {
134 die "ERROR: No PREFIX given\n"
137 if ((!$app) && -e
$bindir && -e
$src && (abs_path
($bindir) eq abs_path
($src))) {
142 unless ($exe eq "") {
143 unless (glob_mkdir
($bindir)) {
146 glob_install
($exe, $bindir, "-m 0775");
150 unless (glob_mkdir
("$libdir/codecs")) {
153 # Android has codecs installed as native libraries so they are not needed
155 if ($modelname !~ /android/) {
156 glob_install
("$src/codecs/*", "$libdir/codecs", "-m 0755");
160 unless (glob_mkdir
("$libdir/rocks")) {
163 foreach my $t (@plugins) {
164 unless (glob_mkdir
("$libdir/rocks/$t")) {
167 glob_install
("$src/rocks/$t/*", "$libdir/rocks/$t", "-m 0755");
171 unless (glob_mkdir
("$libdir/rocks/viewers/lua")) {
174 glob_install
("$src/rocks/viewers/lua/*", "$libdir/rocks/viewers/lua");
176 # all the rest directories
177 foreach my $t (@userstuff) {
178 unless (glob_mkdir
("$userdir/$t")) {
181 glob_install
("$src/$t/*", "$userdir/$t");
184 # wps/ subfolders and bitmaps
185 opendir(DIR
, $src . "/wps");
186 @files = readdir(DIR
);
189 foreach my $_dir (@files) {
190 my $dir = "wps/" . $_dir;
191 if ( -d
"$src/$dir" && $_dir !~ /\
.\
.?
/) {
192 unless (glob_mkdir
("$userdir/$dir")) {
195 glob_install
("$src/$dir/*", "$userdir/$dir");
199 # rest of the files, excluding the binary
201 @files = readdir(DIR
);
204 foreach my $file (grep (/[a-zA-Z]+\.(txt|config|ignore|sh)/,@files)) {
205 glob_install
("$src/$file", "$userdir/");
211 GetOptions
( 'r|root=s' => \
$ROOT,
212 'z|ziptool:s' => \
$ziptool,
213 'm|modelname=s' => \
$modelname, # The model name as used in ARCHOS in the root makefile
214 'i|id=s' => \
$target_id, # The target id name as used in TARGET_ID in the root makefile
215 'o|output:s' => \
$output,
216 'f|fonts=s' => \
$incfonts, # 0 - no fonts, 1 - fonts only 2 - fonts and package
217 'v|verbose' => \
$verbose,
218 'install=s' => \
$install, # install destination
219 'rbdir:s' => \
$rbdir, # If we want to put in a different directory
220 'l|link' => \
$mklinks, # If we want to create links instead of copying files
221 'a|app:s' => \
$app, # Is this an Application build?
224 # GetOptions() doesn't remove the params from @ARGV if their value was ""
225 # Thus we use the ":" for those for which we use a default value in case of ""
226 # and assign the default value afterwards
227 if ($ziptool eq '') {
228 $ziptool = "zip -r9";
231 $output = "rockbox.zip"
237 # Now @ARGV shuold be free of any left-overs GetOptions left
238 ($target, $exe) = @ARGV;
240 my $firmdir="$ROOT/firmware";
241 my $appsdir="$ROOT/apps";
242 my $viewer_bmpdir="$ROOT/apps/plugins/bitmaps/viewer_defaults";
244 my $cppdef = $target;
247 open(GCC
, ">gcctemp");
248 # Get the LCD screen depth and graphical status
251 #ifdef HAVE_LCD_BITMAP
255 LCD Height: LCD_HEIGHT
256 Icon Width: CONFIG_DEFAULT_ICON_WIDTH
257 Icon Height: CONFIG_DEFAULT_ICON_HEIGHT
260 #ifdef HAVE_REMOTE_LCD
261 Remote Depth: LCD_REMOTE_DEPTH
262 Remote Icon Width: CONFIG_REMOTE_DEFAULT_ICON_WIDTH
263 Remote Icon Height: CONFIG_REMOTE_DEFAULT_ICON_HEIGHT
267 #ifdef HAVE_RECORDING
274 my $c="cat gcctemp | gcc $cppdef -I. -I$firmdir/export -E -P -";
276 # print STDERR "CMD $c\n";
280 my ($bitmap, $width, $height, $depth, $swcodec, $icon_h, $icon_w);
281 my ($remote_depth, $remote_icon_h, $remote_icon_w);
285 # print STDERR "DATA: $_";
286 if($_ =~ /^Bitmap: (.*)/) {
289 elsif($_ =~ /^Depth: (\d*)/) {
292 elsif($_ =~ /^LCD Width: (\d*)/) {
295 elsif($_ =~ /^LCD Height: (\d*)/) {
298 elsif($_ =~ /^Icon Width: (\d*)/) {
301 elsif($_ =~ /^Icon Height: (\d*)/) {
304 elsif($_ =~ /^Codec: (\d*)/) {
305 # SWCODEC is 1, the others are HWCODEC
306 $swcodec = ($1 == 1);
308 elsif($_ =~ /^Remote Depth: (\d*)/) {
311 elsif($_ =~ /^Remote Icon Width: (\d*)/) {
314 elsif($_ =~ /^Remote Icon Height: (\d*)/) {
317 if($_ =~ /^Recording: (.*)/) {
324 return ($bitmap, $depth, $width, $height, $icon_w, $icon_h, $recording,
325 $swcodec, $remote_depth, $remote_icon_w, $remote_icon_h);
330 my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
331 $atime,$mtime,$ctime,$blksize,$blocks)
336 sub create_failsafefiles
{
337 my ($dir, $remote_depth) = @_;
338 my $text = "# Dummy file to allow Rockbox to reset to the default skin config.
339 # Do not edit this file. It's never actually loaded by Rockbox.";
340 open (FOO
, ">$dir/wps/rockbox_failsafe.wps");
343 open (FOO
, ">$dir/wps/rockbox_failsafe.sbs");
346 open (FOO
, ">$dir/wps/rockbox_failsafe.fms");
350 open (FOO
, ">$dir/wps/rockbox_failsafe.rwps");
353 open (FOO
, ">$dir/wps/rockbox_failsafe.rsbs");
356 open (FOO
, ">$dir/wps/rockbox_failsafe.rfms");
360 open (FOO
, ">$dir/themes/rockbox_failsafe.cfg");
362 # This config has been autogenerated to reload the failsafe setup
363 wps: $dir/wps/rockbox_failsafe.wps
364 sbs: $dir/wps/rockbox_failsafe.sbs
365 fms: $dir/wps/rockbox_failsafe.fms
370 rwps: $dir/wps/rockbox_failsafe.rwps
371 rsbs: $dir/wps/rockbox_failsafe.rsbs
372 rfms: $dir/wps/rockbox_failsafe.rfms
378 font: 08-Schumacher-Clean.fnt
379 foreground color: 000000
380 background color: B6C6E5
381 selector type: bar (inverse)
389 my ($image, $fonts)=@_;
390 my $libdir = $install;
391 my $temp_dir = ".rockbox";
393 print "buildzip: image=$image fonts=$fonts\n" if $verbose;
395 my ($bitmap, $depth, $width, $height, $icon_w, $icon_h, $recording,
396 $swcodec, $remote_depth, $remote_icon_w, $remote_icon_h) =
399 # print "Bitmap: $bitmap\nDepth: $depth\nSwcodec: $swcodec\n";
404 glob_mkdir
($temp_dir);
407 # always disable fonts on non-bitmap targets
411 glob_mkdir
("$temp_dir/fonts");
412 chdir "$temp_dir/fonts";
413 my $cmd = "$ROOT/tools/convbdf -f $ROOT/fonts/*bdf >/dev/null 2>&1";
414 print($cmd."\n") if $verbose;
419 # fonts-only package, return
424 # create the file so the database does not try indexing a folder
425 open(IGNORE
, ">$temp_dir/database.ignore") || die "can't open database.ignore";
428 # the samsung ypr0 has a loader script that's needed in the zip
429 if ($modelname =~ /samsungypr0/) {
430 glob_copy
("$ROOT/utils/ypr0tools/rockbox.sh", "$temp_dir/");
433 glob_mkdir
("$temp_dir/langs");
434 glob_mkdir
("$temp_dir/rocks");
435 glob_mkdir
("$temp_dir/rocks/games");
436 glob_mkdir
("$temp_dir/rocks/apps");
437 glob_mkdir
("$temp_dir/rocks/demos");
438 glob_mkdir
("$temp_dir/rocks/viewers");
441 glob_mkdir
("$temp_dir/recpresets");
445 glob_mkdir
("$temp_dir/eqs");
447 glob_copy
("$ROOT/apps/eqs/*.cfg", "$temp_dir/eqs/"); # equalizer presets
450 glob_mkdir
("$temp_dir/wps");
451 glob_mkdir
("$temp_dir/themes");
453 open(THEME
, ">$temp_dir/themes/rockbox_default_icons.cfg");
455 # this config file was auto-generated to make it
456 # easy to reset the icons back to default
458 # taken from apps/gui/icon.c
459 viewers iconset: /$rbdir/icons/viewers.bmp
461 # taken from apps/gui/icon.c
462 remote viewers iconset: /$rbdir/icons/remote_viewers.bmp
469 glob_mkdir
("$temp_dir/codepages");
472 system("$ROOT/tools/codepages");
475 system("$ROOT/tools/codepages -m");
478 glob_move
('*.cp', "$temp_dir/codepages/");
480 if($bitmap && $depth > 1) {
481 glob_mkdir
("$temp_dir/backdrops");
484 glob_mkdir
("$temp_dir/codecs");
486 # Android has codecs installed as native libraries so they are not needed
488 if ($modelname !~ /android/) {
489 find
(find_copyfile
(qr/.*\.codec/, abs_path
("$temp_dir/codecs/")), 'apps/codecs');
492 # remove directory again if no codec was copied
493 rmdir("$temp_dir/codecs");
495 find
(find_copyfile
(qr/\.(rock|ovl|lua)/, abs_path
("$temp_dir/rocks/")), 'apps/plugins');
497 # exclude entries for the image file types not supported by the imageviewer for the target.
498 my $viewers = "$ROOT/apps/plugins/viewers.config";
499 my $c="cat $viewers | gcc $cppdef -I. -I$firmdir/export -E -P -include config.h -";
501 open VIEWERS
, "$c|" or die "can't open viewers.config";
502 my @viewers = <VIEWERS
>;
505 open VIEWERS
, ">$temp_dir/viewers.config" or
506 die "can't create $temp_dir/viewers.config";
508 foreach my $line (@viewers) {
509 if ($line =~ /([^,]*),([^,]*),/) {
510 my ($ext, $plugin)=($1, $2);
511 my $r = "${plugin}.rock";
517 # strip off the last slash and file name part
518 $dir =~ s/(.*)\/(.*)/$1/;
519 # store the file name part
522 # get .ovl name (file part only)
524 $oname =~ s/\.rock$/.ovl/;
526 # print STDERR "$ext $plugin $dir $name $r\n";
528 if(-e
"$temp_dir/rocks/$name") {
529 if($dir ne "rocks") {
530 # target is not 'rocks' but the plugins are always in that
532 move
("$temp_dir/rocks/$name", "$temp_dir/rocks/$r");
536 elsif(-e
"$temp_dir/rocks/$r") {
537 # in case the same plugin works for multiple extensions, it
538 # was already moved to the viewers dir
542 if(-e
"$temp_dir/rocks/$oname") {
543 # if there's an "overlay" file for the .rock, move that as
545 move
("$temp_dir/rocks/$oname", "$temp_dir/rocks/$dir");
551 open CATEGORIES
, "$ROOT/apps/plugins/CATEGORIES" or
552 die "can't open CATEGORIES";
553 my @rock_targetdirs = <CATEGORIES
>;
555 foreach my $line (@rock_targetdirs) {
556 if ($line =~ /([^,]*),(.*)/) {
557 my ($plugin, $dir)=($1, $2);
558 move
("$temp_dir/rocks/${plugin}.rock", "$temp_dir/rocks/$dir/${plugin}.rock");
559 if(-e
"$temp_dir/rocks/${plugin}.ovl") {
560 # if there's an "overlay" file for the .rock, move that as
562 move
("$temp_dir/rocks/${plugin}.ovl", "$temp_dir/rocks/$dir");
564 if(-e
"$temp_dir/rocks/${plugin}.lua") {
565 # if this is a lua script, move it to the appropriate dir
566 move
("$temp_dir/rocks/${plugin}.lua", "$temp_dir/rocks/$dir/");
571 glob_unlink
("$temp_dir/rocks/*.lua"); # Clean up unwanted *.lua files (e.g. actions.lua, buttons.lua)
574 glob_mkdir
("$temp_dir/icons");
575 copy
("$viewer_bmpdir/viewers.${icon_w}x${icon_h}x$depth.bmp", "$temp_dir/icons/viewers.bmp");
577 copy
("$viewer_bmpdir/remote_viewers.${remote_icon_w}x${remote_icon_h}x$remote_depth.bmp", "$temp_dir/icons/remote_viewers.bmp");
581 copy
("$ROOT/apps/tagnavi.config", "$temp_dir/");
582 copy
("$ROOT/apps/plugins/disktidy.config", "$temp_dir/rocks/apps/");
585 copy
("$ROOT/apps/plugins/sokoban.levels", "$temp_dir/rocks/games/sokoban.levels"); # sokoban levels
586 copy
("$ROOT/apps/plugins/snake2.levels", "$temp_dir/rocks/games/snake2.levels"); # snake2 levels
587 copy
("$ROOT/apps/plugins/rockbox-fonts.config", "$temp_dir/rocks/viewers/");
590 if(-e
"$temp_dir/rocks/demos/pictureflow.rock") {
591 copy
("$ROOT/apps/plugins/bitmaps/native/pictureflow_emptyslide.100x100x16.bmp",
592 "$temp_dir/rocks/demos/pictureflow_emptyslide.bmp");
595 $pf_logo = "pictureflow_logo.100x18x16.bmp";
597 $pf_logo = "pictureflow_logo.193x34x16.bmp";
599 copy
("$ROOT/apps/plugins/bitmaps/native/$pf_logo",
600 "$temp_dir/rocks/demos/pictureflow_splash.bmp");
603 create_failsafefiles
($temp_dir, $remote_depth);
606 # image is blank when this is a simulator
607 if( filesize
("rockbox.ucl") > 1000 ) {
608 copy
("rockbox.ucl", "$temp_dir/rockbox.ucl"); # UCL for flashing
610 if( filesize
("rombox.ucl") > 1000) {
611 copy
("rombox.ucl", "$temp_dir/rombox.ucl"); # UCL for flashing
614 # Check for rombox.target
615 if ($image=~/(.*)\.(\w+)$/)
617 my $romfile = "rombox.$2";
618 if (filesize
($romfile) > 1000)
620 copy
($romfile, "$temp_dir/$romfile");
625 glob_mkdir
("$temp_dir/docs");
630 copy
("$ROOT/docs/$_", "$temp_dir/docs/$_.txt");
633 copy
("$ROOT/docs/profontdoc.txt", "$temp_dir/docs/profontdoc.txt");
635 for(("sample.colours",
638 copy
("$ROOT/docs/$_", "$temp_dir/docs/$_");
641 # Now do the WPS dance
643 my $wps_build_cmd="perl $ROOT/wps/wpsbuild.pl ";
644 $wps_build_cmd=$wps_build_cmd."-v " if $verbose;
645 $wps_build_cmd=$wps_build_cmd." --tempdir=$temp_dir --rbdir=$rbdir -r $ROOT -m $modelname $ROOT/wps/WPSLIST $target";
646 print "wpsbuild: $wps_build_cmd\n" if $verbose;
647 system("$wps_build_cmd");
648 print "wps_build_cmd: done\n" if $verbose;
651 print STDERR
"No wps module present, can't do the WPS magic!\n";
654 # until buildwps.pl is fixed, manually copy the classic_statusbar theme across
655 mkdir "$temp_dir/wps/classic_statusbar", 0777;
656 glob_copy
("$ROOT/wps/classic_statusbar/*.bmp", "$temp_dir/wps/classic_statusbar");
659 copy
("$ROOT/wps/classic_statusbar.sbs", "$temp_dir/wps");
660 } elsif ($depth > 1) {
661 copy
("$ROOT/wps/classic_statusbar.grey.sbs", "$temp_dir/wps/classic_statusbar.sbs");
663 copy
("$ROOT/wps/classic_statusbar.mono.sbs", "$temp_dir/wps/classic_statusbar.sbs");
666 copy
("$ROOT/wps/classic_statusbar.112x64x1.sbs", "$temp_dir/wps/classic_statusbar.sbs");
668 if ($remote_depth != $depth) {
669 copy
("$ROOT/wps/classic_statusbar.mono.sbs", "$temp_dir/wps/classic_statusbar.rsbs");
671 copy
("$temp_dir/wps/classic_statusbar.sbs", "$temp_dir/wps/classic_statusbar.rsbs");
673 copy
("$temp_dir/wps/rockbox_none.sbs", "$temp_dir/wps/rockbox_none.rsbs");
676 copy
("rockbox-info.txt", "$temp_dir/rockbox-info.txt");
678 # copy the already built lng files
679 glob_copy
('apps/lang/*lng', "$temp_dir/langs/");
681 # copy the .lua files
682 glob_mkdir
("$temp_dir/rocks/viewers/lua/");
683 glob_copy
('apps/plugins/lua/*.lua', "$temp_dir/rocks/viewers/lua/");
686 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
692 #$date=sprintf("%04d%02d%02d", $year,$mon, $mday);
693 #$shortdate=sprintf("%02d%02d%02d", $year%100,$mon, $mday);
695 # made once for all targets
697 my ($target, $fonts)=@_;
699 # Strip the leading / from $rbdir unless we are installing an application
700 # build - the layout is different (no .rockbox, but bin/lib/share)
701 unless ($app && $install) {
702 $rbdir = substr($rbdir, 1);
705 # build a full install .rockbox ($rbdir) directory
706 buildzip
($target, $fonts);
711 # Don't include image file in fonts-only package
714 if($target && ($target !~ /(mod|ajz|wma)\z/i)) {
715 # On some targets, the image goes into .rockbox.
716 copy
("$target", ".rockbox/$target");
723 symlink("$cwd/.rockbox", "$install/.rockbox");
724 print "link .rockbox $install\n" if $verbose;
726 make_install
(".rockbox", $install) or die "MKDIRFAILED\n";
728 print "rm .rockbox\n" if $verbose;
732 unless (".rockbox" eq $rbdir) {
735 move
(".rockbox", $rbdir);
736 print "mv .rockbox $rbdir\n" if $verbose;
738 system("$ziptool $output $rbdir $target >/dev/null");
739 print "$ziptool $output $rbdir $target >/dev/null\n" if $verbose;
741 print "rm $rbdir\n" if $verbose;
746 # not specified, guess!
747 if($target =~ /(recorder|ondio)/i) {
750 elsif($target =~ /iriver/i) {
751 $exe = "rockbox.iriver";
757 elsif(($exe =~ /rockboxui/)) {
758 # simulator, exclude the exe file
761 elsif($exe eq "librockbox.so") {
762 # android, exclude the binary
766 runone
($exe, $incfonts);