summaryrefslogtreecommitdiffstats
path: root/tools/list_targets.pl
blob: 039c14f0db0e5b3b246a1b1eaacf851ceab56450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/perl
#             __________               __   ___.
#   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
#   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
#   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
#   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
#                     \/            \/     \/    \/            \/
#
# List all targets in builds.pm, categorized by target status.

require "./builds.pm";

print "Stable:\n";

for my $b (&stablebuilds) {
    print $builds{$b}{name} , "\n";
}

print "Unstable:\n";
for my $b (&usablebuilds) {
    print $builds{$b}{name} , "\n";
}

print "Unusable:\n";
for my $b (&allbuilds) {
        print $builds{$b}{name} , "\n" if($builds{$b}{status} == 1);
}