1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Solomon Peachy 2021-07-24 11:14:33 -04:00
parent fde6eaa8e1
commit a0948ddfa1

View file

@ -15,6 +15,7 @@ $releasenotes="/wiki/ReleaseNotes315";
# icon => 'modelname3', # optional (uses modelname3's icon) # icon => 'modelname3', # optional (uses modelname3's icon)
# voice => 'modelname4' # optional (uses modelname4's voice) # voice => 'modelname4' # optional (uses modelname4's voice)
# release => '3.14', # optional (final release version, if different from above) # release => '3.14', # optional (final release version, if different from above)
# manualok => 1, # optional (builds manual even if target is not stable)
# } # }
%builds = ( %builds = (
@ -439,6 +440,7 @@ $releasenotes="/wiki/ReleaseNotes315";
'fiiom3k' => { 'fiiom3k' => {
name => 'FiiO M3K', name => 'FiiO M3K',
status => 2, status => 2,
manualok => 1, # Remove once status moves to 3
}, },
'aigoerosq' => { 'aigoerosq' => {
name => 'AIGO EROS Q / K', name => 'AIGO EROS Q / K',
@ -459,6 +461,7 @@ $releasenotes="/wiki/ReleaseNotes315";
'shanlingq1' => { 'shanlingq1' => {
name => 'Shanling Q1', name => 'Shanling Q1',
status => 2, status => 2,
manualok => 1, # Remove once status moves to 3
}, },
); );
@ -482,7 +485,7 @@ sub usablebuilds {
my @list; my @list;
for my $b (sort byname keys %builds) { for my $b (sort byname keys %builds) {
push @list, $b if ($builds{$b}{status} >= 2); push @list, $b if ($builds{$b}{status} >= 2 || defined($builds{$b}{manualok}));
} }
return @list; return @list;