Some fixes to make the release scripts actually work. These are not necessarily very clean, and the ipod video build is still problematic due to bins.pl not handling variants properly, but at least the scripts now do something

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_5@24492 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2010-02-03 19:24:35 +00:00
parent 6f4c356418
commit 5e412a87a0
3 changed files with 10 additions and 7 deletions

View file

@ -1,6 +1,6 @@
$publicrelease="3.4"; $publicrelease="3.5";
$releasedate="September 24, 2009"; $releasedate="February 3, 2010";
$releasenotes="/wiki/ReleaseNotes34"; $releasenotes="/wiki/ReleaseNotes35";
%builds = ( %builds = (
'archosav300' => { 'archosav300' => {

View file

@ -2,6 +2,8 @@
$version="3.5"; $version="3.5";
require "tools/builds.pm";
my $verbose; my $verbose;
if($ARGV[0] eq "-v") { if($ARGV[0] eq "-v") {
$verbose =1; $verbose =1;
@ -57,7 +59,7 @@ sub buildit {
`rm -rf * >/dev/null 2>&1`; `rm -rf * >/dev/null 2>&1`;
my $c = "../tools/configure --target=$target --type=m"; my $c = "echo|../tools/configure --target=$target --type=m";
print "C: $c\n" if($verbose); print "C: $c\n" if($verbose);
`$c`; `$c`;
@ -73,7 +75,7 @@ sub buildit {
`(cd tools && make ) >/dev/null 2>&1`; `(cd tools && make ) >/dev/null 2>&1`;
for my $b (&stablebuilds) { for my $b (&stablebuilds) {
next if ($builds{$b}{configname} < 3); # no variants #next if ($builds{$b}{configname} < 3); # no variants
runone($b); runone($b);
} }

View file

@ -1,4 +1,5 @@
#!/usr/bin/perl #!/usr/bin/perl
require "tools/builds.pm";
$version="3.5"; $version="3.5";
@ -54,7 +55,7 @@ sub buildit {
`rm -rf * >/dev/null 2>&1`; `rm -rf * >/dev/null 2>&1`;
my $c = "../tools/configure --type=av --target=$model --language=0 --tts=f"; my $c = "echo|../tools/configure --type=av --target=$model --language=0 --tts=f";
print "C: $c\n" if($verbose); print "C: $c\n" if($verbose);
`$c`; `$c`;
@ -74,7 +75,7 @@ my $pool="$home/tmp/rockbox-voices-$version/voice-pool";
$ENV{'POOL'}="$pool"; $ENV{'POOL'}="$pool";
for my $b (&stablebuilds) { for my $b (&stablebuilds) {
next if ($builds{$b}{configname} < 3); # no variants #next if ($builds{$b}{configname} < 3); # no variants
runone($b); runone($b);
} }