diff options
| author | Jonas Häggqvist <rasher@rasher.dk> | 2009-06-20 11:48:41 +0000 |
|---|---|---|
| committer | Jonas Häggqvist <rasher@rasher.dk> | 2009-06-20 11:48:41 +0000 |
| commit | ba97d7d29b83f10c6c28f7052a274b6f6ca66ad0 (patch) | |
| tree | aeec1750b1bf5bd5e0ed5c7efac1d6522fc3486b /tools | |
| parent | 78c3f1c8b32d7a043b5928daf131d4ce128ec2ee (diff) | |
| download | rockbox-ba97d7d29b83f10c6c28f7052a274b6f6ca66ad0.zip rockbox-ba97d7d29b83f10c6c28f7052a274b6f6ca66ad0.tar.gz rockbox-ba97d7d29b83f10c6c28f7052a274b6f6ca66ad0.tar.bz2 rockbox-ba97d7d29b83f10c6c28f7052a274b6f6ca66ad0.tar.xz | |
Add some more sims, and fix a bug which would make it also build c200 if you asked for c200v2.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21383 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/release/sims.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 42ade17..e7687ad 100755 --- a/tools/release/sims.pl +++ b/tools/release/sims.pl @@ -91,7 +91,7 @@ sub runone { my ($dir, $confnum, $extra)=@_; my $a; - if(@doonly > 0 && !grep(/$dir/, @doonly)) { + if(@doonly > 0 && !grep(/^$dir$/, @doonly)) { return; } @@ -204,3 +204,8 @@ runone("zvm60gb", "creativezvm60gb"); runone("hdd1630", "hdd1630"); runone("fuze", "fuze"); runone("m200v4", "m200v4"); +runone("sa9200", "sa9200"); +runone("sansac200v2", "c200v2"); +runone("yh820", "yh_820"); +runone("yh920", "yh_920"); +runone("yh925", "yh_925"); |