diff options
| author | Alex Parker <rockbox@aeparker.com> | 2011-02-20 20:07:41 +0000 |
|---|---|---|
| committer | Alex Parker <rockbox@aeparker.com> | 2011-02-20 20:07:41 +0000 |
| commit | cdce4ddf0d3400bb8c448f61ea4459045ea9c216 (patch) | |
| tree | 8e07a67a061060fb496451152858fea826fb56c9 | |
| parent | 745406a9f034b4314a8a482a904335916b70ea79 (diff) | |
| download | rockbox-cdce4ddf0d3400bb8c448f61ea4459045ea9c216.zip rockbox-cdce4ddf0d3400bb8c448f61ea4459045ea9c216.tar.gz rockbox-cdce4ddf0d3400bb8c448f61ea4459045ea9c216.tar.bz2 rockbox-cdce4ddf0d3400bb8c448f61ea4459045ea9c216.tar.xz | |
Also build and keep elfs zip file for the release.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29362 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/release/bins.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/release/bins.pl b/tools/release/bins.pl index f45450a..99982be 100755 --- a/tools/release/bins.pl +++ b/tools/release/bins.pl @@ -50,14 +50,18 @@ sub runone { my $o="build-$dir/rockbox.zip"; my $map="build-$dir/rockbox-maps.zip"; + my $elf="build-$dir/rockbox-elfs.zip"; if (-f $o) { my $newo="output/rockbox-$dir-$version.zip"; my $newmap="output/rockbox-$dir-$version-maps.zip"; + my $newelf="output/rockbox-$dir-$version-elfs.zip"; system("mkdir -p output"); system("mv $o $newo"); print "moved $o to $newo\n" if($verbose); system("mv $map $newmap"); print "moved $map to $newmap\n" if($verbose); + system("mv $elf $newelf"); + print "moved $elf to $newelf\n" if($verbose); } print "remove all contents in build-$dir\n" if($verbose); @@ -117,6 +121,9 @@ sub buildit { print "Run 'make mapzip'\n" if($verbose); `make mapzip`; + + print "Run 'make elfzip'\n" if($verbose); + `make elfzip`; } sub buildfonts { |