os/mm/mmtestenv/mmtesttools/Build/mmbuildrom.pl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtesttools/Build/mmbuildrom.pl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,682 @@
     1.4 +# Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +# All rights reserved.
     1.6 +# This component and the accompanying materials are made available
     1.7 +# under the terms of "Eclipse Public License v1.0"
     1.8 +# which accompanies this distribution, and is available
     1.9 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +#
    1.11 +# Initial Contributors:
    1.12 +# Nokia Corporation - initial contribution.
    1.13 +#
    1.14 +# Contributors:
    1.15 +#
    1.16 +# Description:
    1.17 +# mmrombuild.pl
    1.18 +# 
    1.19 +#
    1.20 +
    1.21 +use strict;
    1.22 +use warnings;
    1.23 +use Env qw(EPOCROOT);
    1.24 +use File::Copy;
    1.25 +
    1.26 +# literals
    1.27 +my $auto_param =  "-a";
    1.28 +my $dp_param   =  "-d";
    1.29 +my $wdp_param  =  "-w";
    1.30 +my $all_param  =  "-f";
    1.31 +my $help_param =  "-h";
    1.32 +my $icl_param  =  "-i";
    1.33 +my $plus_icl_param = "+i";
    1.34 +my $keep_param =  "-k";
    1.35 +my $mmf_param  =  "-m";
    1.36 +my $nand_param =  "-n";
    1.37 +my $addnl_param = "-p";
    1.38 +my $test_param =  "-t";
    1.39 +my $extra_param = "-x";
    1.40 +my $gce_param  =  "-g";
    1.41 +my $eabi_param =  "-eabi";
    1.42 +my $h2_param =    "-h2";
    1.43 +my $h4_param =    "-h4";
    1.44 +my $h6_param =    "-h6";
    1.45 +my $lab_param =    "-lab";
    1.46 +my $lbk_param =   "-lbk";
    1.47 +my $x86_param =   "-x86pc";
    1.48 +my $ne_param =    "-ne";
    1.49 +my $smp_param =    "-smp";
    1.50 +my $uni_param =    "-uni";
    1.51 +
    1.52 +my $KRomDir     = "epoc32\\rom";
    1.53 +my $KLubbockImg = "la_001.techview.IMG";
    1.54 +my $KH2Img =      "om_001.techview.IMG";
    1.55 +my $KH4Img =      "h4hrp_001.techview.IMG";
    1.56 +my $KH4RofsImg =      "h4hrp_001.techview.rofs.IMG";
    1.57 +my $KH6Img =      "34xx_sdp_001.techview.IMG";
    1.58 +my $KH6NandImg =	"34xx_sdp_001.techview.nand.IMG";
    1.59 +my $KH6NandRofsImg =	"34xx_sdp_001.techview.nand.rofs.IMG";
    1.60 +my $KLabImg =      "lab_001.techview.IMG";
    1.61 +my $KLabNandImg =	"lab_001.techview.nand.IMG";
    1.62 +my $KLabNandRofsImg =	"lab_001.techview.nand.rofs.IMG";
    1.63 +my $KH4NandImg =  "h4hrp_001.techview.nand.img";
    1.64 +my $KH4NandRofsImg = "h4hrp_001.techview.nand.rofs.img";
    1.65 +my $KH6NandBootLoader =	"h6.nandloader.reltest.img";
    1.66 +my $KLabNandBootLoader =	"lab_001.nandloader.reltest.img";
    1.67 +my $KH4NandBootLoader = "h4.nandloader.reltest.img";
    1.68 +my $KMmcBootLoader = "h4.mmcloader.reltest.img";
    1.69 +my $CoreImg =     "core.img";
    1.70 +my $Rofs1Img =    "rofs1.img";
    1.71 +my $KBinName	= 'sys$rom.bin'; # be careful about '$'
    1.72 +my $KZipName	= 'sys$rom.zip'; # be careful about '$'
    1.73 +my $KX86Img     =  "x86pc_001.techview.IMG";
    1.74 +my $KNEImg     =  "NE1_TB_001.techview.IMG";
    1.75 +
    1.76 +my $extras = "";
    1.77 +my $gce = "";
    1.78 +my $test = "";
    1.79 +my $component = "";
    1.80 +my $keep = "";
    1.81 +my $auto = "";
    1.82 +my $eabi = "";
    1.83 +my $addnl_ibys = "";
    1.84 +my $dp = "";
    1.85 +my $wdp = "";
    1.86 +my $nand = "";
    1.87 +my $img = "";
    1.88 +my $target = ""; # default target is h6 but start as blank so we can distinguish multiple target requests
    1.89 +my $default_target = "h6";
    1.90 +my $arm = "";
    1.91 +my $smp = "";
    1.92 +my $uni = "";
    1.93 +my $wrong_ne_param = 0;
    1.94 +my $include_icl_tests = "";
    1.95 +
    1.96 +my $eka2IdentifyFile  = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build
    1.97 +my $PlatSecIdentifyFile  = "$ENV{EPOCROOT}epoc32\\release\\armv5\\udeb\\mmfdevsoundproxy.dll"; # if file present, is a build with platsec
    1.98 +my $StreamingCafIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\armv5\\udeb\\sraserver.exe";
    1.99 +
   1.100 +my $OptionalFile = "";
   1.101 +# if any of these .iby files are present, then we'll add them to the ROM.
   1.102 +my @OptionalFiles = ("$ENV{EPOCROOT}epoc32\\rom\\include\\XviDPU.iby",
   1.103 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\XviDhw.iby",
   1.104 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\oggvorbiscodec.iby",
   1.105 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\omxoggvorbiscodec.iby",
   1.106 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\pvopt.iby",
   1.107 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\pvtestsopt.iby",
   1.108 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\RtaUtils.iby",
   1.109 +			       "$ENV{EPOCROOT}epoc32\\rom\\include\\TestExecute.iby",
   1.110 +				   "$ENV{EPOCROOT}epoc32\\rom\\include\\streamingcaf.iby");
   1.111 +
   1.112 +my $OggVorbisCodecPresent = 0;
   1.113 +
   1.114 +my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build";
   1.115 +my $targetToolsExists = 0;
   1.116 +if (-d $targetToolsDir)
   1.117 +	{
   1.118 +	$targetToolsExists = 1;
   1.119 +	print "TargetTools directory exists: $targetToolsDir\n"
   1.120 +	}
   1.121 +
   1.122 +# main:
   1.123 +	{
   1.124 +	# Process command-line
   1.125 +
   1.126 +	&ReadArgs();
   1.127 +	
   1.128 +	&ProcessArgs();
   1.129 +	
   1.130 +	&BuildRom();
   1.131 +	}
   1.132 +
   1.133 +#
   1.134 +# Subroutines
   1.135 +#
   1.136 +
   1.137 +sub ReadArgs()
   1.138 +	{
   1.139 +	while (@ARGV)
   1.140 +		{
   1.141 +		my $param = $ARGV[0]; shift @ARGV; # grab first param and shift along
   1.142 +		
   1.143 +		if ($param eq "") # ignore blank parameters
   1.144 +			{
   1.145 +			next;
   1.146 +			}
   1.147 +
   1.148 +		if ($param eq $icl_param || 
   1.149 +		    $param eq $mmf_param || $param eq $all_param)
   1.150 +			{
   1.151 +			$component = $param;
   1.152 +			}
   1.153 +		elsif ($param eq $plus_icl_param)
   1.154 +			{
   1.155 +			$include_icl_tests = $param;
   1.156 +			}
   1.157 +		elsif ($param eq $test_param)
   1.158 +			{
   1.159 +			$test = $param;
   1.160 +			}
   1.161 +		elsif ($param eq $extra_param)
   1.162 +			{
   1.163 +			$extras = $param;
   1.164 +			}
   1.165 +		elsif ($param eq $gce_param)
   1.166 +			{
   1.167 +			$gce = $param;
   1.168 +			}
   1.169 +		elsif ($param eq $auto_param)
   1.170 +			{
   1.171 +			$auto = $param;
   1.172 +			}
   1.173 +		elsif ($param eq $eabi_param)
   1.174 +			{
   1.175 +			$eabi = $param;
   1.176 +			}
   1.177 +		elsif ($param eq $dp_param)
   1.178 +			{
   1.179 +			$dp = $param;
   1.180 +			$nand = $param; # demand paging implies nand
   1.181 +			}
   1.182 +		elsif ($param eq $wdp_param)
   1.183 +			{
   1.184 +			$wdp = $param;
   1.185 +			$dp = $param; # writable data paging implies standard demand paging
   1.186 +			}
   1.187 +		elsif ($param eq $nand_param)
   1.188 +			{
   1.189 +			$nand = $param;
   1.190 +			}
   1.191 +		elsif ($param eq $addnl_param)
   1.192 +			{
   1.193 +			$addnl_ibys .= " " . $ARGV[0]; shift @ARGV; # grab next param and shift along
   1.194 +			}
   1.195 +		elsif ($param eq $h2_param)
   1.196 +			{
   1.197 +			&Usage() if ($target ne "");
   1.198 +			$target = "h2";
   1.199 +			$eabi = $eabi_param; # H2 always EABI
   1.200 +			}
   1.201 + 		elsif ($param eq $h4_param)
   1.202 + 			{
   1.203 +			&Usage() if ($target ne "");
   1.204 +			$target = "h4";
   1.205 + 			$eabi = $eabi_param; # H4 always EABI
   1.206 + 			}
   1.207 + 		elsif ($param eq $h6_param)
   1.208 +			{
   1.209 +			&Usage() if ($target ne "");
   1.210 +			$target = "h6";
   1.211 +			$eabi = $eabi_param; # H6 always EABI
   1.212 +			}
   1.213 +		elsif ($param eq $lab_param)
   1.214 +			{
   1.215 +			&Usage() if ($target ne "");
   1.216 +			$target = "lab";
   1.217 +			$eabi = $eabi_param; # Lab always EABI
   1.218 +			}
   1.219 +		elsif ($param eq $lbk_param)
   1.220 +			{
   1.221 +			&Usage() if ($target ne "");
   1.222 +			$target = "lbk";
   1.223 +			}
   1.224 +		elsif ($param eq $x86_param)
   1.225 +			{
   1.226 +			&Usage() if ($target ne "");
   1.227 +			&Usage() if (($eabi ne "") || ($nand ne ""));
   1.228 +			$target = "x86";
   1.229 +			}			
   1.230 +		elsif ($param eq $ne_param)
   1.231 +			{
   1.232 +			&Usage() if ($target ne "");
   1.233 +			&Usage() if ($nand ne "");
   1.234 +			$target = "naviengine";
   1.235 +			$eabi = $eabi_param; # NaviEngine always EABI
   1.236 +			}
   1.237 +		elsif ($param eq $smp_param)
   1.238 +			{
   1.239 +			# Only NaviEngine can be configured to build SMP enabled image
   1.240 +			&Usage() if ($target ne "naviengine");
   1.241 +			$smp = "smp";
   1.242 +			}						
   1.243 +		elsif ($param eq $uni_param)
   1.244 +			{
   1.245 +			# '-uni'-flag valid only for NaviEngine
   1.246 +			&Usage() if ($target ne "naviengine");
   1.247 +			$uni = "uni";
   1.248 +			}									
   1.249 +		elsif ($param eq $help_param)
   1.250 +			{
   1.251 +			&Usage();
   1.252 +			}
   1.253 +		else
   1.254 +			{
   1.255 +			# unknown setting
   1.256 +			&Usage();
   1.257 +			}
   1.258 +		}
   1.259 +	&CheckArgs();
   1.260 +	}
   1.261 +
   1.262 +sub CheckArgs()
   1.263 +	{
   1.264 +	# check that the arguments make sense
   1.265 +	
   1.266 +	$target = $default_target if ($target eq "");
   1.267 +	
   1.268 +	}
   1.269 +	
   1.270 +sub ProcessArgs()
   1.271 +	{
   1.272 +	if ($target eq "h2")
   1.273 +		{
   1.274 +		$img = $KH2Img;
   1.275 +		}
   1.276 +	elsif ($target eq "lkb")
   1.277 +		{
   1.278 +		$img = $KLubbockImg;
   1.279 +		}
   1.280 +	elsif ($target eq "h4")
   1.281 +		{
   1.282 +		$img = $KH4Img if ($nand eq "");
   1.283 +		$img = $KH4NandImg if ($nand ne "");
   1.284 +		}
   1.285 +	elsif ($target eq "h6")
   1.286 +		{
   1.287 +		$img = $KH6Img;
   1.288 +		}
   1.289 +	elsif ($target eq "lab")
   1.290 +		{
   1.291 +		$img = $KLabImg;
   1.292 +		}
   1.293 +	elsif ($target eq "x86")
   1.294 +		{
   1.295 +		$img = $KX86Img;
   1.296 +		}	
   1.297 +	elsif ($target eq "naviengine")
   1.298 +		{
   1.299 +		$img = $KNEImg;
   1.300 +		}			
   1.301 +	else
   1.302 +		{
   1.303 +		die "Internal error: unknown image type";
   1.304 +		}	
   1.305 +	if($target eq "naviengine" && $smp eq "" && $uni eq "" )
   1.306 +		{
   1.307 +		$wrong_ne_param = 1;
   1.308 +		&Usage();
   1.309 +		}
   1.310 +	if($target eq "h2" || $target eq "lkb" || $target eq "h4" || $target eq "naviengine" || $target eq "h6" || $target eq "lab")
   1.311 +		{
   1.312 +		# procedure to build arm target different so identify a ARM based target
   1.313 +		$arm ="arm";
   1.314 +		}
   1.315 +	}
   1.316 +	
   1.317 +sub BuildRom()
   1.318 +	{
   1.319 +	my $command;
   1.320 +	# note from build 4713 -D_STARTUPMODE5 is replaced with -D_SSMSTARTUPMODE=5. Don't mix
   1.321 +	if($target ne "naviengine")
   1.322 +		{
   1.323 +		$command = "tools\\buildrom -D__NOWATCHER__ -D_DEBUG -D_SSMSTARTUPMODE=5";
   1.324 +		}
   1.325 +	else
   1.326 +		{
   1.327 +		#Currently startupmode flag is not used for NaviEngine.
   1.328 +		$command = "tools\\buildrom -D_DEBUG";
   1.329 +		$command .= " -DSYMBIAN_MDASOUNDADAPTER_FORCE_STEREO";
   1.330 +		}		
   1.331 +	if($target ne "x86" && $target ne "naviengine")
   1.332 +		{
   1.333 +		$command .= " -D_SERIAL_DOWNLOAD";
   1.334 +		}
   1.335 +	if($smp ne "")
   1.336 +		{
   1.337 +		$command .= " -DSMP";
   1.338 +		}
   1.339 +	if($uni ne "")
   1.340 +		{
   1.341 +		#Use Flexible Memory Model for UniCore
   1.342 +		#Until base have fixed the issue related to this keep commented out.
   1.343 +		#$command .= " -DWITH_FLEXIBLE_MM";
   1.344 +		}
   1.345 +	
   1.346 +	$command .= " -D_NAND2" if ($nand ne "" && $arm ne "");
   1.347 +	$command .= " -DUSE_24BPP_DISPLAY_VARIANT" if ($target eq "h6" || "lab");
   1.348 +	if($wdp ne "")
   1.349 +		{
   1.350 +		$command .= " -DWITH_FLEXIBLE_MM -DUSE_SDIO_SD_MMC -D_INTERNAL_MMC -DUSE_DATA_PAGING"
   1.351 +		}
   1.352 +	$command .= " -DSYMBIAN_BASE_USE_GCE -DSYMBIAN_GRAPHICS_USE_GCE" if ($gce ne "");
   1.353 +
   1.354 +	# Needed to prevent Xml.iby errors if these flags are added to techview.oby for example, then remove them here
   1.355 +	$command .= " -DSYMBIAN_EXCLUDE_LIBXML2 -DSYMBIAN_EXCLUDE_LIBXML2_SAX_CPARSER_PLUGIN -DSYMBIAN_EXCLUDE_LIBXML2_DOM_XPATH_API";
   1.356 +	
   1.357 +	# select instruction set type, only applicable for ARM based platforms
   1.358 +	#The below flags are currently not used for NaviEngine
   1.359 +	if($arm ne "" && $target ne "naviengine")
   1.360 +	{
   1.361 +	if ($eabi ne "" || -f $eka2IdentifyFile)
   1.362 +		{
   1.363 +		$command .= " -DRVCT -D_EABI=ARMV5";
   1.364 +		}
   1.365 +	else
   1.366 +		{
   1.367 +		$command .= " -D_THUMB";
   1.368 +		}
   1.369 +	}	
   1.370 +
   1.371 +	# Use the default FeatureManager database, not yet supported for x86
   1.372 +	if($arm ne "")
   1.373 +		{
   1.374 +		$command .= " -fm=$ENV{EPOCROOT}epoc32\\rom\\include\\featuredatabase.xml"; 
   1.375 +		}
   1.376 +	else
   1.377 +		{
   1.378 +		$command .= ' -nofm'; #-fm option not supported as of 0708.
   1.379 +		}
   1.380 +	
   1.381 +	# select development board (now we build h4 by default)
   1.382 +	if ($target eq "lbk")
   1.383 +		{
   1.384 +		$command .= " lubbock";
   1.385 +		}
   1.386 + 	elsif ($target eq "h2")
   1.387 + 		{
   1.388 + 		$command .= " h2";
   1.389 + 		}
   1.390 +	 elsif ($target eq "x86")
   1.391 + 		{
   1.392 + 		$command .= " x86pc";
   1.393 + 		}	
   1.394 + 	elsif ($target eq "naviengine")
   1.395 + 		{
   1.396 + 		$command .= " naviengine";
   1.397 + 		}	
   1.398 + 	elsif ($target eq "h6")
   1.399 + 		{
   1.400 + 		$command .= " pagedrom" if ($dp ne "");
   1.401 + 		$command .= " 34xx_sdp";
   1.402 + 		}
   1.403 +	elsif ($target eq "lab")
   1.404 + 		{
   1.405 + 		$command .= " pagedrom" if ($dp ne "");
   1.406 + 		$command .= " lab";
   1.407 + 		}
   1.408 + 	elsif ($target eq "h4")
   1.409 + 		{
   1.410 + 		$command .= " pagedrom" if ($dp ne "");
   1.411 +	 	$command .= " h4hrp";
   1.412 + 		}
   1.413 +	else
   1.414 +		{
   1.415 +		die "target does not exist!!"
   1.416 +		}
   1.417 +		
   1.418 +	# devkit.oby not included for NaviEngine currently	
   1.419 +	if($target ne "naviengine")
   1.420 +		{
   1.421 +		$command .= " devkit";
   1.422 +		}
   1.423 +	$command .= " techview";
   1.424 +	
   1.425 +	$command .= " misc.iby";
   1.426 +	
   1.427 +	# use platform security, if appropriate
   1.428 +	if (-f $PlatSecIdentifyFile)
   1.429 +		{
   1.430 +		$command .= " platsec";
   1.431 +		}
   1.432 +
   1.433 +	if ($extras ne "")
   1.434 +		{
   1.435 +		$command .= " mmfOpt.iby" ; # mmfOpt.iby should include optional stuff
   1.436 +		$command .= " iclOpt.iby" ; # iclOpt.iby should include optional stuff
   1.437 +		$command .= " miscOpt.iby" ; # miscOpt.iby should include optional stuff
   1.438 +		
   1.439 +		if ($test ne "")
   1.440 +			{
   1.441 +			$command .= " mmfOptTest.iby" ; # mmfOptTest.iby should include tests of optional stuff
   1.442 +			$command .= " iclOptTest.iby" if $include_icl_tests ne ""; # iclOptTest.iby should include tests of optional stuff
   1.443 +			$command .= " miscOptTests.iby"; # miscOptTests.iby should include tests of optional stuff
   1.444 +			}
   1.445 +			
   1.446 +		# Open source code delivered separately to Symbian OS
   1.447 +		foreach $OptionalFile (@OptionalFiles)
   1.448 +			{
   1.449 +			if (-f $OptionalFile)
   1.450 +				{
   1.451 +				$OptionalFile =~ s/^.*\\//; # get only the filename
   1.452 +				
   1.453 +				if ($OptionalFile eq "oggvorbiscodec.iby" 
   1.454 +					|| $OptionalFile eq "omxoggvorbiscodec.iby")
   1.455 +					{
   1.456 +					$OggVorbisCodecPresent = 1;
   1.457 +					}
   1.458 +				
   1.459 +				$command .= " ";
   1.460 +				$command .= $OptionalFile;
   1.461 +				}
   1.462 +			else
   1.463 +				{
   1.464 +				print "**** WARNING: $OptionalFile not added to ROM ****\n"
   1.465 +				}
   1.466 +			}
   1.467 +
   1.468 +		# Add oggvorbis to ROM only if oggvorbiscodec and omxoggvorbiscodec exist to prevent ROM build errors
   1.469 +		if ($OggVorbisCodecPresent)
   1.470 +			{
   1.471 +			$command .= " oggvorbis.iby";
   1.472 +			}
   1.473 +		}
   1.474 +	
   1.475 +	if ($gce ne "")
   1.476 +		{
   1.477 +		$command .= " videorenderer.iby";
   1.478 +		
   1.479 +		if ($test ne "")
   1.480 +			{
   1.481 +			$command .= " tsu_mmf_videorenderer.iby";
   1.482 +			}
   1.483 +		}
   1.484 +	
   1.485 +	if ($test ne "")
   1.486 +		{
   1.487 +		if ($component eq $icl_param)
   1.488 +			{
   1.489 +			$command .= " iclIntTests.iby";
   1.490 +			$command .= " iclUnitTests.iby";
   1.491 +			}
   1.492 +		elsif ($component eq $mmf_param)
   1.493 +			{
   1.494 +			$command .= " mmfUnitTests.iby";
   1.495 +			if ($extras eq "")
   1.496 +				{
   1.497 +				$command .= " mmfNotOptTest.iby";
   1.498 +				}
   1.499 +			}
   1.500 +		else
   1.501 +			{ 
   1.502 +			# -f or default
   1.503 +			$command .= " MiscUnitTests.iby";
   1.504 +			$command .= " MiscIntTests.iby";
   1.505 +			$command .= " MMFUnitTests.iby";
   1.506 +			$command .= " MMFIntTests.iby";
   1.507 +			$command .= " ICLUnitTests.iby" if $include_icl_tests ne "";
   1.508 +			$command .= " ICLIntTests.iby" if $include_icl_tests ne "";
   1.509 +			if ($targetToolsExists)
   1.510 +				{
   1.511 +				$command .= " ExtraMultimediaTests.iby ecam.iby";
   1.512 +				$command .= " timageviewer.iby timagedisplay.iby tphotoeditor.iby timagetran.iby" if $include_icl_tests ne "";
   1.513 +				}
   1.514 +			if ($extras eq "")
   1.515 +				{
   1.516 +				$command .= " mmfNotOptTest.iby";
   1.517 +				}
   1.518 +			}
   1.519 +		}
   1.520 +	if ($targetToolsExists)
   1.521 +		{
   1.522 +		if ($auto ne "") 
   1.523 +			{
   1.524 +			$command .= " MMAutoExec.iby";
   1.525 +			}
   1.526 +		}
   1.527 +
   1.528 +	#pvdecoderaac.iby is somehow not getting included into naviengine roms, the way it is in case of H4 and the rest.
   1.529 +	if($target eq "naviengine")
   1.530 +		{
   1.531 +		$command .= " pvdecoderaac.iby";
   1.532 +		}
   1.533 +	
   1.534 +	$command .= $addnl_ibys;
   1.535 +	
   1.536 +	if ($gce eq "" and $dp eq "")
   1.537 +		{
   1.538 +		$command .= " surfacemanager_ref.iby" if ($target eq "h6" || "lab" || "naviengine");
   1.539 +		}
   1.540 +		
   1.541 +	print $command, "\n";
   1.542 +
   1.543 +	die "EPOCROOT is not set" unless ($EPOCROOT ne "");
   1.544 +	my $romDir = $EPOCROOT . $KRomDir;
   1.545 +	die "$romDir does not exist" unless -d $romDir;
   1.546 +	chdir ($romDir) or die "Could not cd to $romDir - $!";
   1.547 +
   1.548 +	# delete the expected image, so clear whether worked or not
   1.549 +	if (-f $img)
   1.550 +		{
   1.551 +		my $count = unlink $img;
   1.552 +		die "Could not delete $KH2Img" unless $count == 1;
   1.553 +		}
   1.554 +
   1.555 +	# delete any existing zip, otherwise we could end up with multiple ROMs in our zip file
   1.556 +	if ($arm ne "" && -f $KZipName)
   1.557 +		{
   1.558 +		my $count = unlink $KZipName;
   1.559 +		die "Could not delete $KZipName" unless $count == 1;
   1.560 +		}
   1.561 +		
   1.562 +	my $result = system($command);
   1.563 +	if ($result != 0)
   1.564 +		{
   1.565 +		print "Command failed ($result)\n";
   1.566 +		exit 1;
   1.567 +		}
   1.568 +	if($arm ne "")
   1.569 +		{
   1.570 +		if ($nand eq "" and $wdp eq "") # for nand etc you need to use the rofs loder, otherwise conver to sys$rom.zip
   1.571 +			{
   1.572 +			my $zipCommand = "zip " . $KZipName . " " . $img;
   1.573 +		
   1.574 +			print $zipCommand, "\n";
   1.575 +			$result = system($zipCommand);
   1.576 +			if ($result != 0)
   1.577 +				{
   1.578 +				print "Command failed ($result)\n";
   1.579 +				exit 1;
   1.580 +				}
   1.581 +			}	
   1.582 +		elsif ($nand ne "" or $wdp ne "")
   1.583 +			{	
   1.584 +			if ($target eq "h6")
   1.585 +				{
   1.586 +				if ($nand ne "")
   1.587 +					{
   1.588 +					copy($KH6NandBootLoader,$KBinName) or die "Copy failed: $!";
   1.589 +					copy($KH6NandImg,$CoreImg) or die "Copy failed: $!";
   1.590 +					copy($KH6NandRofsImg,$Rofs1Img) or die "Copy failed: $!";
   1.591 +					}
   1.592 +				else # if ($wdp ne "") - not supported yet but ready for future releases
   1.593 +					{
   1.594 +					print "\nWDP is not supported yet on H6\n";
   1.595 +					exit 1;
   1.596 +#					copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!";
   1.597 +#					copy($KH6Img,$CoreImg) or die "Copy failed: $!";
   1.598 +#					copy($KH6RofsImg,$Rofs1Img) or die "Copy failed: $!";
   1.599 +					}
   1.600 +				}
   1.601 +			elsif ($target eq "lab")
   1.602 +				{
   1.603 +				if ($nand ne "")
   1.604 +					{
   1.605 +					copy($KLabNandImg,$CoreImg) or die "Copy failed: $!";
   1.606 +					copy($KLabNandRofsImg,$Rofs1Img) or die "Copy failed: $!";
   1.607 +#					copy($KLabNandBootLoader,$KBinName) or die "Copy failed: $!"; Lab Nandloader is still not part of the CBR release hence commenting this command for time being
   1.608 +					}
   1.609 +				else # if ($wdp ne "") - not supported yet but ready for future releases
   1.610 +					{
   1.611 +					print "\nWDP is not supported yet on Labrador\n";
   1.612 +					exit 1;
   1.613 +#					copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!";
   1.614 +#					copy($KLabImg,$CoreImg) or die "Copy failed: $!";
   1.615 +#					copy($KLabRofsImg,$Rofs1Img) or die "Copy failed: $!";
   1.616 +					}		
   1.617 +				}				
   1.618 +			else
   1.619 +				{
   1.620 +				if ($nand ne "")
   1.621 +					{
   1.622 +					copy($KH4NandBootLoader,$KBinName) or die "Copy failed: $!";
   1.623 +					copy($KH4NandImg,$CoreImg) or die "Copy failed: $!";
   1.624 +					copy($KH4NandRofsImg,$Rofs1Img) or die "Copy failed: $!";
   1.625 +					}
   1.626 +				else # if ($wdp ne "")
   1.627 +					{
   1.628 +					copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!";
   1.629 +					copy($KH4Img,$CoreImg) or die "Copy failed: $!";
   1.630 +					copy($KH4RofsImg,$Rofs1Img) or die "Copy failed: $!";
   1.631 +					}
   1.632 +				}
   1.633 +			print "Generated " . $CoreImg . ", " . $Rofs1Img . " and " . $KBinName . "\n";
   1.634 +			$command = "dir " . $CoreImg . " " . $Rofs1Img . " " . $KBinName;
   1.635 +			system($command);
   1.636 +			}
   1.637 +		}
   1.638 +	}	
   1.639 +
   1.640 +sub Usage
   1.641 +	{
   1.642 +	# print usage statement and exit
   1.643 +	print <<ENDHERESTRING;
   1.644 +usage:
   1.645 + 	mmrombuild {-i|-m|-f} [+i] [-d] [-x] [-t] [-a] [-eabi] [-h2] [-h4] [-h6] [-lab] [-lbk] [-p <ibyfile>] [-ne <-uni/-smp>]
   1.646 +
   1.647 +mmbuildrom will build a lubbock / H2 / H4 / NaviEngine / Labrador ROM for multimedia testing
   1.648 +
   1.649 +It will always build a standard rom for the given platform, the various flags
   1.650 +support what test and optional software is installed in addition.
   1.651 +The parameters are as follows:
   1.652 +
   1.653 +-d) Build demand-paging NAND rom - instead of standard NOR build. Implies -n
   1.654 +-w) Build writable data paging NAND rom - implies -d but not -n!
   1.655 +-i) Build ICL test (unit and integration) software only, if -t is set
   1.656 +-m) Build MMF unit test software only, if -t is set
   1.657 ++i) ICL tests are now disabled unless this parameter is also given
   1.658 +-n) Build NAND rom - otherwise builds NOR
   1.659 +-f) Add all tests software, it -t is set (default)
   1.660 +-t) Add test software
   1.661 +-x) Add optional Multimedia modules
   1.662 +-g) Add optional Graphics Composition Engine enabled components
   1.663 +-eabi) Builds rom for armv5
   1.664 +-h2) Builds for H2 board
   1.665 +-h4) Builds for H4 board
   1.666 +-x86pc) Builds rom for X86 Platform
   1.667 +-lab) Builds for labrador board
   1.668 +-ne) Builds rom for NaviEngine board(NE (uni/smp) does not support demand paging yet)
   1.669 +-smp) Builds an SMP-enabled Rom Image(Valid only if -ne flag is used)
   1.670 +-uni) Builds UniCore Rom Image(Valid only if -ne flag is used)
   1.671 +-lbk) Builds for lubbock board (default is h2)
   1.672 +-p <ibyfile>) Append .iby file to list
   1.673 +
   1.674 +ENDHERESTRING
   1.675 +	if ($targetToolsExists)
   1.676 +		{
   1.677 +		print "-a) Add MMAutoExec iby file (internal Symbian use only)"
   1.678 +		}
   1.679 +	if($wrong_ne_param)
   1.680 +		{
   1.681 +		print "\n \n*Did you forget to specify whether you want a UniCore image or an SMP image?*\n\n";
   1.682 +		}
   1.683 +	exit 1;
   1.684 +	}
   1.685 +