summaryrefslogtreecommitdiff
path: root/tools/list_targets.pl
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-06-30 16:24:05 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-06-30 16:25:58 -0400
commit6f1e67e5e318ba2fd0f5ec1892c7b6633ec6521c (patch)
treed1828071b2cdaa40d38635a7fdc872b73d14308d /tools/list_targets.pl
parent1c3f77eccd6bdb02aed68fab35ae94d4f6680303 (diff)
downloadrockbox-6f1e67e5e318ba2fd0f5ec1892c7b6633ec6521c.tar.gz
rockbox-6f1e67e5e318ba2fd0f5ec1892c7b6633ec6521c.zip
builds: Add an explicit 'simbuilds' list
It includes all targets that have a working simulator build. * All stable targets except those that are flagged as bad * All unstable targets that are flagged as good Change-Id: Id0e20a10af72236c819077f919ee5cc168ebf14e
Diffstat (limited to 'tools/list_targets.pl')
-rwxr-xr-xtools/list_targets.pl17
1 files changed, 14 insertions, 3 deletions
diff --git a/tools/list_targets.pl b/tools/list_targets.pl
index 039c14f0db..9785bb5f22 100755
--- a/tools/list_targets.pl
+++ b/tools/list_targets.pl
@@ -10,18 +10,29 @@
10 10
11require "./builds.pm"; 11require "./builds.pm";
12 12
13print "Retired:\n";
14
15for my $b (&stablebuilds) {
16 print " " , $builds{$b}{name} , "\n" if($builds{$b}{status} == 0);
17}
18
13print "Stable:\n"; 19print "Stable:\n";
14 20
15for my $b (&stablebuilds) { 21for my $b (&stablebuilds) {
16 print $builds{$b}{name} , "\n"; 22 print " " , $builds{$b}{name} , "\n" if($builds{$b}{status} != 0);
17} 23}
18 24
19print "Unstable:\n"; 25print "Unstable:\n";
20for my $b (&usablebuilds) { 26for my $b (&usablebuilds) {
21 print $builds{$b}{name} , "\n"; 27 print " " , $builds{$b}{name} , "\n";
22} 28}
23 29
24print "Unusable:\n"; 30print "Unusable:\n";
25for my $b (&allbuilds) { 31for my $b (&allbuilds) {
26 print $builds{$b}{name} , "\n" if($builds{$b}{status} == 1); 32 print " " , $builds{$b}{name} , "\n" if($builds{$b}{status} == 1);
33}
34
35print "Simulators:\n";
36for my $b (&simbuilds) {
37 print " " , $builds{$b}{name} , "\n";
27} 38}