summaryrefslogtreecommitdiff
path: root/tools/release/sims.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/sims.pl')
-rwxr-xr-xtools/release/sims.pl28
1 files changed, 8 insertions, 20 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");