From 637f93074ebf9214c77af0147169c729e162b6fa Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Wed, 19 Jun 2024 17:26:47 -0400 Subject: tools: Clean out some historical cruft from 'sims.pl' It's intended to build all of the Windows Simulator builds in one fell swoop but has bitrotten a bit. Correct some of the glaring problems. Change-Id: I6073af629d2698624036ccf303a5d18398cefdc0 --- tools/release/sims.pl | 45 +++++++++++++++------------------------------ 1 file changed, 15 insertions(+), 30 deletions(-) (limited to 'tools/release/sims.pl') diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 190516907e..18893885b2 100755 --- a/tools/release/sims.pl +++ b/tools/release/sims.pl @@ -22,9 +22,8 @@ while (scalar @ARGV > 0) { print <))[0]; chomp($AS); (my $striptool = $AS) =~ s/^export AS=(.*)as$/$1strip/; - + $cmd = "find \\( -name 'rockboxui*' -o -iname '*dll' -o -name '*.rock' -o -name '*.codec' \\) -exec $striptool '{}' ';'"; print("$cmd\n") if ($verbose); `$cmd`; @@ -192,25 +191,19 @@ sub buildit { for my $b (sort byname keys %builds) { if ($builds{$b}{status} >= 2) { - # ipodvideo64mb uses the ipodvideo simulator - # sansae200r uses the sansae200 simulator - if ($b ne 'ipodvideo64mb' && $b ne 'sansae200r') - { - if ($builds{$b}{ram} ne '') - { - # These builds need the ram size sent to configure - runone($b, $builds{$b}{ram} . '\n'); - } - else - { - runone($b); - } - } + if ($builds{$b}{ram} ne '') + { + # These builds need the ram size sent to configure + runone($b, $builds{$b}{ram} . '\n'); + } + else + { + runone($b); + } } } #The following ports are in the unusable category, but the simulator does build -runone("mini2440"); runone("ondavx747"); runone("ondavx747p"); runone("ondavx777"); @@ -218,11 +211,3 @@ runone("sansam200v4"); runone("zenvision"); runone("zenvisionm30gb"); runone("zenvisionm60gb"); -runone("creativezenxfi2"); -runone("creativezenxfi3"); -runone("sonynwze360"); -runone("sonynwze370"); -runone("creativezenxfi"); -runone("creativezen"); -runone("creativezenmozaic"); -runone("xduoox3"); -- cgit v1.2.3