summaryrefslogtreecommitdiff
path: root/tools/release/sims.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/sims.pl')
-rwxr-xr-xtools/release/sims.pl66
1 files changed, 54 insertions, 12 deletions
diff --git a/tools/release/sims.pl b/tools/release/sims.pl
index 79eeb5652a..0481234189 100755
--- a/tools/release/sims.pl
+++ b/tools/release/sims.pl
@@ -4,8 +4,6 @@ use File::Basename;
4use File::Path; 4use File::Path;
5use Cwd; 5use Cwd;
6 6
7require "../builds.pm";
8
9my $verbose, $strip, $update, $doonly, $version; 7my $verbose, $strip, $update, $doonly, $version;
10my @doonly; 8my @doonly;
11 9
@@ -90,7 +88,7 @@ if (!defined($version)) {
90 88
91# made once for all targets 89# made once for all targets
92sub runone { 90sub runone {
93 my ($dir)=@_; 91 my ($dir, $confnum, $extra)=@_;
94 my $a; 92 my $a;
95 93
96 if(@doonly > 0 && !grep(/^$dir$/, @doonly)) { 94 if(@doonly > 0 && !grep(/^$dir$/, @doonly)) {
@@ -102,7 +100,7 @@ sub runone {
102 print "Build in build-$dir\n" if($verbose); 100 print "Build in build-$dir\n" if($verbose);
103 101
104 # build the target 102 # build the target
105 $a = buildit($dir); 103 $a = buildit($dir, $confnum, $extra);
106 104
107 if ($strip) { 105 if ($strip) {
108 print "Stripping binaries\n" if ($verbose); 106 print "Stripping binaries\n" if ($verbose);
@@ -151,11 +149,12 @@ sub runone {
151}; 149};
152 150
153sub buildit { 151sub buildit {
154 my ($target)=@_; 152 my ($target, $confnum, $extra)=@_;
155 153
156 `rm -rf * >/dev/null 2>&1`; 154 `rm -rf * >/dev/null 2>&1`;
157 155
158 my $c = "../tools/configure --type=s --target=$target"; 156 my $c = sprintf('printf "%s\n%ss\n" | ../tools/configure',
157 $confnum, $extra);
159 158
160 print "C: $c\n" if($verbose); 159 print "C: $c\n" if($verbose);
161 `$c`; 160 `$c`;
@@ -167,9 +166,52 @@ sub buildit {
167 `make install 2>/dev/null`; 166 `make install 2>/dev/null`;
168} 167}
169 168
170for my $b (keys %builds) { 169runone("player", "player", '\n');
171 next if ($builds{$b}{status} < 3); # only stable builds 170runone("recorder", "recorder", '\n');
172 next if ($builds{$b}{configname} < 3); # no memsize variants 171#runone("recorder8mb", "recorder", '8\n');
173 172runone("fmrecorder", "fmrecorder", '\n');
174 runone($b); 173#runone("fmrecorder8mb", "fmrecorder", '8\n');
175} 174runone("recorderv2", "recorderv2", '\n');
175runone("ondiosp", "ondiosp", '\n');
176runone("ondiofm", "ondiofm", '\n');
177runone("h100", "h100");
178runone("h120", "h120");
179runone("h300", "h300");
180runone("ipodcolor", "ipodcolor");
181runone("ipodnano", "ipodnano");
182runone("ipod4gray", "ipod4g");
183runone("ipodvideo", "ipodvideo", '32\n');
184#runone("ipodvideo64mb", "ipodvideo", '64\n');
185runone("ipod3g", "ipod3g");
186runone("ipod1g2g", "ipod1g2g");
187runone("iaudiox5", "x5");
188runone("iaudiom5", "m5");
189runone("iaudiom3", "m3");
190runone("ipodmini1g", "ipodmini");
191runone("ipodmini2g", "ipodmini2g");
192runone("h10", "h10");
193runone("h10_5gb", "h10_5gb");
194runone("gigabeatf", "gigabeatf");
195runone("gigabeats", "gigabeats");
196runone("sansae200", "e200");
197runone("sansae200v2", "e200v2");
198runone("sansac200", "c200");
199runone("mrobe500", "mrobe500");
200runone("mrobe100", "mrobe100");
201runone("cowond2", "cowond2");
202runone("clip", "clip");
203runone("zvm30gb", "creativezvm30gb");
204runone("zvm60gb", "creativezvm60gb");
205runone("zenvision", "creativezenvision");
206runone("hdd1630", "hdd1630");
207runone("fuze", "fuze");
208runone("m200v4", "m200v4");
209runone("sa9200", "sa9200");
210runone("sansac200v2", "c200v2");
211runone("yh820", "yh_820");
212runone("yh920", "yh_920");
213runone("yh925", "yh_925");
214runone("ondavx747", "ondavx747");
215runone("ondavx747p", "ondavx747p");
216runone("ondavx777", "ondavx777");
217runone("ifp7xx", "ifp7xx");