summaryrefslogtreecommitdiff
path: root/tools/release
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release')
-rwxr-xr-xtools/release/sims.pl28
-rwxr-xr-xtools/release/voices.pl13
2 files changed, 15 insertions, 26 deletions
diff --git a/tools/release/sims.pl b/tools/release/sims.pl
index 2cf5c4f45a..10cf950c53 100755
--- a/tools/release/sims.pl
+++ b/tools/release/sims.pl
@@ -188,26 +188,14 @@ sub buildit {
188 `make install 2>/dev/null`; 188 `make install 2>/dev/null`;
189} 189}
190 190
191for my $b (sort byname keys %builds) { 191for my $b (sort &simbuilds) {
192 if ($builds{$b}{status} > 0 && $builds{$b}{status} >= 2) 192 if ($builds{$b}{ram} ne '')
193 { 193 {
194 if ($builds{$b}{ram} ne '') 194 # These builds need the ram size sent to configure
195 { 195 runone($b, $builds{$b}{ram} . '\n');
196 # These builds need the ram size sent to configure 196 }
197 runone($b, $builds{$b}{ram} . '\n'); 197 else
198 } 198 {
199 else 199 runone($b);
200 {
201 runone($b);
202 }
203 } 200 }
204} 201}
205
206#The following ports are in the unusable category, but the simulator does build
207runone("ondavx747");
208runone("ondavx747p");
209runone("ondavx777");
210runone("sansam200v4");
211runone("zenvision");
212runone("zenvisionm30gb");
213runone("zenvisionm60gb");
diff --git a/tools/release/voices.pl b/tools/release/voices.pl
index 42bf533118..1b08123673 100755
--- a/tools/release/voices.pl
+++ b/tools/release/voices.pl
@@ -68,12 +68,13 @@ sub buildit {
68# run make in tools first to make sure they're up-to-date 68# run make in tools first to make sure they're up-to-date
69`(cd tools && make ) >/dev/null 2>&1`; 69`(cd tools && make ) >/dev/null 2>&1`;
70 70
71my $home=$ENV{'HOME'}; 71if (!defined($ENV{'POOL'}) {
72 72 my $home=$ENV{'HOME'};
73my $pool="$home/tmp/rockbox-voices-$version/voice-pool"; 73 my $pool="$home/tmp/rockbox-voices-$version/voice-pool";
74`mkdir -p $pool`; 74 `mkdir -p $pool`;
75`rm -f $pool/*`; 75 $ENV{'POOL'}="$pool";
76$ENV{'POOL'}="$pool"; 76}
77# `rm -f $pool/*`;
77 78
78`mkdir -p $outdir`; 79`mkdir -p $outdir`;
79 80