autoconf.pl: Add support for build folders with screen resolution (e.g. build-android-320x480).

Change-Id: If2ab767f44db604177a0028e86100633631ca8b8
This commit is contained in:
Thomas Martitz 2013-03-16 22:30:46 +01:00
parent d220940443
commit 0d5883d07a
1 changed files with 25 additions and 3 deletions

View File

@ -30,7 +30,7 @@ my @dirs = split(/\//, $builddir);
my $test = pop(@dirs);
sub doconfigure {
my ($target, $type) = @_;
my ($target, $type, $width, $height) = @_;
if (!exists($builds{$target})) {
for $key (keys(%builds)) {
if ($key =~ $target) {
@ -40,9 +40,23 @@ sub doconfigure {
}
}
$command = "${srcdir}/configure --type=${type} --target=${target}";
if (defined $width) {
$command .= " --lcdwidth=${width}";
}
if (defined $height) {
$command .= " --lcdheight=${height}";
}
%typenames = ("n" => "Normal", "s" => "Simulator", "b" => "Bootloader" );
unless (@ARGV[0] eq "-y") {
print "Rockbox autoconf: \n\tTarget: $target \n\tType: $typenames{$type} \nCorrect? [Y/n] ";
$prompt = "Rockbox autoconf: \n\tTarget: $target \n\tType: $typenames{$type} \n";
if (defined $width) {
$prompt .= "\tLCD width: $width\n";
}
if (defined $height) {
$prompt .= "\tLCD height: $height\n";
}
print $prompt . "Correct? [Y/n] ";
chomp($response = <>);
if ($response eq "") {
$response = "y";
@ -69,7 +83,15 @@ sub buildtype {
return $build;
}
if ($test =~ /(.*)-(.*)/)
if ($test =~ /(.*)-(.*)-([0-9]+)x([0-9]+)/)
{
if (buildtype($2)) {
doconfigure($1, buildtype($2), $3, $4);
} elsif (buildtype($1)) {
doconfigure($2, buildtype($1), $3, $4);
}
}
elsif ($test =~ /(.*)-(.*)/)
{
if (buildtype($2)) {
doconfigure($1, buildtype($2));