From cdce4ddf0d3400bb8c448f61ea4459045ea9c216 Mon Sep 17 00:00:00 2001 From: Alex Parker Date: Sun, 20 Feb 2011 20:07:41 +0000 Subject: [PATCH] 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 --- tools/release/bins.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/release/bins.pl b/tools/release/bins.pl index f45450a90d..99982be41a 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 { -- 2.11.4.GIT