forked from len0rd/rockbox
Rename targets to be consistent in all places. (FS #10819). Take 2.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23883 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ee15637749
commit
c0740440ac
148 changed files with 3364 additions and 3434 deletions
|
|
@ -16,7 +16,7 @@ if($ARGV[0]) {
|
|||
|
||||
# made once for all targets
|
||||
sub runone {
|
||||
my ($dir, $select, $newl)=@_;
|
||||
my ($dir)=@_;
|
||||
my $a;
|
||||
|
||||
if($doonly && ($doonly ne $dir)) {
|
||||
|
|
@ -28,7 +28,7 @@ sub runone {
|
|||
print "Build in buildv-$dir\n" if($verbose);
|
||||
|
||||
# build the manual(s)
|
||||
$a = buildit($dir, $select, $newl);
|
||||
$a = buildit($dir);
|
||||
|
||||
chdir "..";
|
||||
|
||||
|
|
@ -50,13 +50,11 @@ sub runone {
|
|||
};
|
||||
|
||||
sub buildit {
|
||||
my ($dir, $select, $newl)=@_;
|
||||
my ($model)=@_;
|
||||
|
||||
`rm -rf * >/dev/null 2>&1`;
|
||||
|
||||
# V (voice), F (festival), L (lame), [blank] (English)
|
||||
my $c = sprintf('printf "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure',
|
||||
$select, $newl?'\n':"");
|
||||
my $c = "../tools/configure --type=av --target=$model --language=0 --tts=f";
|
||||
|
||||
print "C: $c\n" if($verbose);
|
||||
`$c`;
|
||||
|
|
@ -75,31 +73,8 @@ my $pool="$home/tmp/rockbox-voices-$version/voice-pool";
|
|||
`rm -f $pool/*`;
|
||||
$ENV{'POOL'}="$pool";
|
||||
|
||||
runone("player", "player", 1);
|
||||
runone("recorder", "recorder", 1);
|
||||
runone("fmrecorder", "fmrecorder", 1);
|
||||
runone("recorderv2", "recorderv2", 1);
|
||||
runone("ondiosp", "ondiosp", 1);
|
||||
runone("ondiofm", "ondiofm", 1);
|
||||
runone("h100", "h100");
|
||||
runone("h120", "h120");
|
||||
runone("h300", "h300");
|
||||
runone("ipodcolor", "ipodcolor");
|
||||
runone("ipodnano", "ipodnano");
|
||||
runone("ipod4gray", "ipod4g");
|
||||
runone("ipodvideo", "ipodvideo", 1);
|
||||
runone("ipod3g", "ipod3g");
|
||||
runone("ipod1g2g", "ipod1g2g");
|
||||
runone("iaudiox5", "x5");
|
||||
runone("iaudiom5", "m5");
|
||||
runone("iaudiom3", "m3");
|
||||
runone("ipodmini2g", "ipodmini2g");
|
||||
runone("ipodmini1g", "ipodmini");
|
||||
runone("h10", "h10");
|
||||
runone("h10_5gb", "h10_5gb");
|
||||
runone("gigabeatf", "gigabeatf");
|
||||
runone("sansae200", "e200");
|
||||
runone("sansac200", "c200");
|
||||
runone("mrobe100", "mrobe100");
|
||||
#runone("cowond2", "cowond2");
|
||||
for my $b (&stablebuilds) {
|
||||
next if ($builds{$b}{configname} < 3); # no variants
|
||||
|
||||
runone($b);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue