ec8b3d3147
This adds tools/list_targets.pl and tools/build-info.pl. list_targets does exactly what it sounds like - it lists targets by target status. build-info automates the generation of build-info.release for new releases. Change-Id: I4c859fdeb54c8cc645832a7c4192f9d18590031e
28 lines
779 B
Perl
Executable file
28 lines
779 B
Perl
Executable file
#!/usr/bin/perl
|
|
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
#
|
|
# Generate the build-info.release file found on download.rockbox.org
|
|
|
|
require "./builds.pm";
|
|
|
|
print "[release]\n";
|
|
|
|
foreach my $b (&stablebuilds) {
|
|
if(exists($builds{$b}{release})) {
|
|
print "$b=$builds{$b}{release}\n";
|
|
}
|
|
else {
|
|
print "$b=$publicrelease\n";
|
|
}
|
|
}
|
|
|
|
print "[status]\n";
|
|
|
|
foreach my $b (&allbuilds) {
|
|
print "$b=$builds{$b}{status}\n";
|
|
}
|