summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-07-24 11:14:33 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-07-24 11:16:57 -0400
commita0948ddfa10bec3ef63b517ba905d1c9bd01a3bc (patch)
tree31efdf4d3c44d753b74f982e7fc037506fd325ae
parentfde6eaa8e105eb2a177d826867f8e2fc3e066463 (diff)
downloadrockbox-a0948ddfa10bec3ef63b517ba905d1c9bd01a3bc.tar.gz
rockbox-a0948ddfa10bec3ef63b517ba905d1c9bd01a3bc.zip
Enable building the manual for the FiiO M3K and Shanling Q1
The nightly manual builds previously only included targets that were marked as "stable" -- The M3K and Q1 are not because they lack rbutil integration, but we would like to provide the manual builds regardless. Change-Id: I113e0576753ba6bb1518da2169c1b0b84aebd2f4
-rw-r--r--tools/builds.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/builds.pm b/tools/builds.pm
index 615fed826b..1c2f7f246d 100644
--- a/tools/builds.pm
+++ b/tools/builds.pm
@@ -15,6 +15,7 @@ $releasenotes="/wiki/ReleaseNotes315";
15# icon => 'modelname3', # optional (uses modelname3's icon) 15# icon => 'modelname3', # optional (uses modelname3's icon)
16# voice => 'modelname4' # optional (uses modelname4's voice) 16# voice => 'modelname4' # optional (uses modelname4's voice)
17# release => '3.14', # optional (final release version, if different from above) 17# release => '3.14', # optional (final release version, if different from above)
18# manualok => 1, # optional (builds manual even if target is not stable)
18# } 19# }
19 20
20%builds = ( 21%builds = (
@@ -439,6 +440,7 @@ $releasenotes="/wiki/ReleaseNotes315";
439 'fiiom3k' => { 440 'fiiom3k' => {
440 name => 'FiiO M3K', 441 name => 'FiiO M3K',
441 status => 2, 442 status => 2,
443 manualok => 1, # Remove once status moves to 3
442 }, 444 },
443 'aigoerosq' => { 445 'aigoerosq' => {
444 name => 'AIGO EROS Q / K', 446 name => 'AIGO EROS Q / K',
@@ -459,6 +461,7 @@ $releasenotes="/wiki/ReleaseNotes315";
459 'shanlingq1' => { 461 'shanlingq1' => {
460 name => 'Shanling Q1', 462 name => 'Shanling Q1',
461 status => 2, 463 status => 2,
464 manualok => 1, # Remove once status moves to 3
462 }, 465 },
463); 466);
464 467
@@ -482,7 +485,7 @@ sub usablebuilds {
482 my @list; 485 my @list;
483 486
484 for my $b (sort byname keys %builds) { 487 for my $b (sort byname keys %builds) {
485 push @list, $b if ($builds{$b}{status} >= 2); 488 push @list, $b if ($builds{$b}{status} >= 2 || defined($builds{$b}{manualok}));
486 } 489 }
487 490
488 return @list; 491 return @list;