sl@0: # Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: # All rights reserved. sl@0: # This component and the accompanying materials are made available sl@0: # under the terms of "Eclipse Public License v1.0" sl@0: # which accompanies this distribution, and is available sl@0: # at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: # sl@0: # Initial Contributors: sl@0: # Nokia Corporation - initial contribution. sl@0: # sl@0: # Contributors: sl@0: # sl@0: # Description: sl@0: # mmrombuild.pl sl@0: # sl@0: # sl@0: sl@0: use strict; sl@0: use warnings; sl@0: use Env qw(EPOCROOT); sl@0: use File::Copy; sl@0: sl@0: # literals sl@0: my $auto_param = "-a"; sl@0: my $dp_param = "-d"; sl@0: my $wdp_param = "-w"; sl@0: my $all_param = "-f"; sl@0: my $help_param = "-h"; sl@0: my $icl_param = "-i"; sl@0: my $plus_icl_param = "+i"; sl@0: my $keep_param = "-k"; sl@0: my $mmf_param = "-m"; sl@0: my $nand_param = "-n"; sl@0: my $addnl_param = "-p"; sl@0: my $test_param = "-t"; sl@0: my $extra_param = "-x"; sl@0: my $gce_param = "-g"; sl@0: my $eabi_param = "-eabi"; sl@0: my $h2_param = "-h2"; sl@0: my $h4_param = "-h4"; sl@0: my $h6_param = "-h6"; sl@0: my $lab_param = "-lab"; sl@0: my $lbk_param = "-lbk"; sl@0: my $x86_param = "-x86pc"; sl@0: my $ne_param = "-ne"; sl@0: my $smp_param = "-smp"; sl@0: my $uni_param = "-uni"; sl@0: sl@0: my $KRomDir = "epoc32\\rom"; sl@0: my $KLubbockImg = "la_001.techview.IMG"; sl@0: my $KH2Img = "om_001.techview.IMG"; sl@0: my $KH4Img = "h4hrp_001.techview.IMG"; sl@0: my $KH4RofsImg = "h4hrp_001.techview.rofs.IMG"; sl@0: my $KH6Img = "34xx_sdp_001.techview.IMG"; sl@0: my $KH6NandImg = "34xx_sdp_001.techview.nand.IMG"; sl@0: my $KH6NandRofsImg = "34xx_sdp_001.techview.nand.rofs.IMG"; sl@0: my $KLabImg = "lab_001.techview.IMG"; sl@0: my $KLabNandImg = "lab_001.techview.nand.IMG"; sl@0: my $KLabNandRofsImg = "lab_001.techview.nand.rofs.IMG"; sl@0: my $KH4NandImg = "h4hrp_001.techview.nand.img"; sl@0: my $KH4NandRofsImg = "h4hrp_001.techview.nand.rofs.img"; sl@0: my $KH6NandBootLoader = "h6.nandloader.reltest.img"; sl@0: my $KLabNandBootLoader = "lab_001.nandloader.reltest.img"; sl@0: my $KH4NandBootLoader = "h4.nandloader.reltest.img"; sl@0: my $KMmcBootLoader = "h4.mmcloader.reltest.img"; sl@0: my $CoreImg = "core.img"; sl@0: my $Rofs1Img = "rofs1.img"; sl@0: my $KBinName = 'sys$rom.bin'; # be careful about '$' sl@0: my $KZipName = 'sys$rom.zip'; # be careful about '$' sl@0: my $KX86Img = "x86pc_001.techview.IMG"; sl@0: my $KNEImg = "NE1_TB_001.techview.IMG"; sl@0: sl@0: my $extras = ""; sl@0: my $gce = ""; sl@0: my $test = ""; sl@0: my $component = ""; sl@0: my $keep = ""; sl@0: my $auto = ""; sl@0: my $eabi = ""; sl@0: my $addnl_ibys = ""; sl@0: my $dp = ""; sl@0: my $wdp = ""; sl@0: my $nand = ""; sl@0: my $img = ""; sl@0: my $target = ""; # default target is h6 but start as blank so we can distinguish multiple target requests sl@0: my $default_target = "h6"; sl@0: my $arm = ""; sl@0: my $smp = ""; sl@0: my $uni = ""; sl@0: my $wrong_ne_param = 0; sl@0: my $include_icl_tests = ""; sl@0: sl@0: my $eka2IdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build sl@0: my $PlatSecIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\armv5\\udeb\\mmfdevsoundproxy.dll"; # if file present, is a build with platsec sl@0: my $StreamingCafIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\armv5\\udeb\\sraserver.exe"; sl@0: sl@0: my $OptionalFile = ""; sl@0: # if any of these .iby files are present, then we'll add them to the ROM. sl@0: my @OptionalFiles = ("$ENV{EPOCROOT}epoc32\\rom\\include\\XviDPU.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\XviDhw.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\oggvorbiscodec.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\omxoggvorbiscodec.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\pvopt.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\pvtestsopt.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\RtaUtils.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\TestExecute.iby", sl@0: "$ENV{EPOCROOT}epoc32\\rom\\include\\streamingcaf.iby"); sl@0: sl@0: my $OggVorbisCodecPresent = 0; sl@0: sl@0: my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build"; sl@0: my $targetToolsExists = 0; sl@0: if (-d $targetToolsDir) sl@0: { sl@0: $targetToolsExists = 1; sl@0: print "TargetTools directory exists: $targetToolsDir\n" sl@0: } sl@0: sl@0: # main: sl@0: { sl@0: # Process command-line sl@0: sl@0: &ReadArgs(); sl@0: sl@0: &ProcessArgs(); sl@0: sl@0: &BuildRom(); sl@0: } sl@0: sl@0: # sl@0: # Subroutines sl@0: # sl@0: sl@0: sub ReadArgs() sl@0: { sl@0: while (@ARGV) sl@0: { sl@0: my $param = $ARGV[0]; shift @ARGV; # grab first param and shift along sl@0: sl@0: if ($param eq "") # ignore blank parameters sl@0: { sl@0: next; sl@0: } sl@0: sl@0: if ($param eq $icl_param || sl@0: $param eq $mmf_param || $param eq $all_param) sl@0: { sl@0: $component = $param; sl@0: } sl@0: elsif ($param eq $plus_icl_param) sl@0: { sl@0: $include_icl_tests = $param; sl@0: } sl@0: elsif ($param eq $test_param) sl@0: { sl@0: $test = $param; sl@0: } sl@0: elsif ($param eq $extra_param) sl@0: { sl@0: $extras = $param; sl@0: } sl@0: elsif ($param eq $gce_param) sl@0: { sl@0: $gce = $param; sl@0: } sl@0: elsif ($param eq $auto_param) sl@0: { sl@0: $auto = $param; sl@0: } sl@0: elsif ($param eq $eabi_param) sl@0: { sl@0: $eabi = $param; sl@0: } sl@0: elsif ($param eq $dp_param) sl@0: { sl@0: $dp = $param; sl@0: $nand = $param; # demand paging implies nand sl@0: } sl@0: elsif ($param eq $wdp_param) sl@0: { sl@0: $wdp = $param; sl@0: $dp = $param; # writable data paging implies standard demand paging sl@0: } sl@0: elsif ($param eq $nand_param) sl@0: { sl@0: $nand = $param; sl@0: } sl@0: elsif ($param eq $addnl_param) sl@0: { sl@0: $addnl_ibys .= " " . $ARGV[0]; shift @ARGV; # grab next param and shift along sl@0: } sl@0: elsif ($param eq $h2_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: $target = "h2"; sl@0: $eabi = $eabi_param; # H2 always EABI sl@0: } sl@0: elsif ($param eq $h4_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: $target = "h4"; sl@0: $eabi = $eabi_param; # H4 always EABI sl@0: } sl@0: elsif ($param eq $h6_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: $target = "h6"; sl@0: $eabi = $eabi_param; # H6 always EABI sl@0: } sl@0: elsif ($param eq $lab_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: $target = "lab"; sl@0: $eabi = $eabi_param; # Lab always EABI sl@0: } sl@0: elsif ($param eq $lbk_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: $target = "lbk"; sl@0: } sl@0: elsif ($param eq $x86_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: &Usage() if (($eabi ne "") || ($nand ne "")); sl@0: $target = "x86"; sl@0: } sl@0: elsif ($param eq $ne_param) sl@0: { sl@0: &Usage() if ($target ne ""); sl@0: &Usage() if ($nand ne ""); sl@0: $target = "naviengine"; sl@0: $eabi = $eabi_param; # NaviEngine always EABI sl@0: } sl@0: elsif ($param eq $smp_param) sl@0: { sl@0: # Only NaviEngine can be configured to build SMP enabled image sl@0: &Usage() if ($target ne "naviengine"); sl@0: $smp = "smp"; sl@0: } sl@0: elsif ($param eq $uni_param) sl@0: { sl@0: # '-uni'-flag valid only for NaviEngine sl@0: &Usage() if ($target ne "naviengine"); sl@0: $uni = "uni"; sl@0: } sl@0: elsif ($param eq $help_param) sl@0: { sl@0: &Usage(); sl@0: } sl@0: else sl@0: { sl@0: # unknown setting sl@0: &Usage(); sl@0: } sl@0: } sl@0: &CheckArgs(); sl@0: } sl@0: sl@0: sub CheckArgs() sl@0: { sl@0: # check that the arguments make sense sl@0: sl@0: $target = $default_target if ($target eq ""); sl@0: sl@0: } sl@0: sl@0: sub ProcessArgs() sl@0: { sl@0: if ($target eq "h2") sl@0: { sl@0: $img = $KH2Img; sl@0: } sl@0: elsif ($target eq "lkb") sl@0: { sl@0: $img = $KLubbockImg; sl@0: } sl@0: elsif ($target eq "h4") sl@0: { sl@0: $img = $KH4Img if ($nand eq ""); sl@0: $img = $KH4NandImg if ($nand ne ""); sl@0: } sl@0: elsif ($target eq "h6") sl@0: { sl@0: $img = $KH6Img; sl@0: } sl@0: elsif ($target eq "lab") sl@0: { sl@0: $img = $KLabImg; sl@0: } sl@0: elsif ($target eq "x86") sl@0: { sl@0: $img = $KX86Img; sl@0: } sl@0: elsif ($target eq "naviengine") sl@0: { sl@0: $img = $KNEImg; sl@0: } sl@0: else sl@0: { sl@0: die "Internal error: unknown image type"; sl@0: } sl@0: if($target eq "naviengine" && $smp eq "" && $uni eq "" ) sl@0: { sl@0: $wrong_ne_param = 1; sl@0: &Usage(); sl@0: } sl@0: if($target eq "h2" || $target eq "lkb" || $target eq "h4" || $target eq "naviengine" || $target eq "h6" || $target eq "lab") sl@0: { sl@0: # procedure to build arm target different so identify a ARM based target sl@0: $arm ="arm"; sl@0: } sl@0: } sl@0: sl@0: sub BuildRom() sl@0: { sl@0: my $command; sl@0: # note from build 4713 -D_STARTUPMODE5 is replaced with -D_SSMSTARTUPMODE=5. Don't mix sl@0: if($target ne "naviengine") sl@0: { sl@0: $command = "tools\\buildrom -D__NOWATCHER__ -D_DEBUG -D_SSMSTARTUPMODE=5"; sl@0: } sl@0: else sl@0: { sl@0: #Currently startupmode flag is not used for NaviEngine. sl@0: $command = "tools\\buildrom -D_DEBUG"; sl@0: $command .= " -DSYMBIAN_MDASOUNDADAPTER_FORCE_STEREO"; sl@0: } sl@0: if($target ne "x86" && $target ne "naviengine") sl@0: { sl@0: $command .= " -D_SERIAL_DOWNLOAD"; sl@0: } sl@0: if($smp ne "") sl@0: { sl@0: $command .= " -DSMP"; sl@0: } sl@0: if($uni ne "") sl@0: { sl@0: #Use Flexible Memory Model for UniCore sl@0: #Until base have fixed the issue related to this keep commented out. sl@0: #$command .= " -DWITH_FLEXIBLE_MM"; sl@0: } sl@0: sl@0: $command .= " -D_NAND2" if ($nand ne "" && $arm ne ""); sl@0: $command .= " -DUSE_24BPP_DISPLAY_VARIANT" if ($target eq "h6" || "lab"); sl@0: if($wdp ne "") sl@0: { sl@0: $command .= " -DWITH_FLEXIBLE_MM -DUSE_SDIO_SD_MMC -D_INTERNAL_MMC -DUSE_DATA_PAGING" sl@0: } sl@0: $command .= " -DSYMBIAN_BASE_USE_GCE -DSYMBIAN_GRAPHICS_USE_GCE" if ($gce ne ""); sl@0: sl@0: # Needed to prevent Xml.iby errors if these flags are added to techview.oby for example, then remove them here sl@0: $command .= " -DSYMBIAN_EXCLUDE_LIBXML2 -DSYMBIAN_EXCLUDE_LIBXML2_SAX_CPARSER_PLUGIN -DSYMBIAN_EXCLUDE_LIBXML2_DOM_XPATH_API"; sl@0: sl@0: # select instruction set type, only applicable for ARM based platforms sl@0: #The below flags are currently not used for NaviEngine sl@0: if($arm ne "" && $target ne "naviengine") sl@0: { sl@0: if ($eabi ne "" || -f $eka2IdentifyFile) sl@0: { sl@0: $command .= " -DRVCT -D_EABI=ARMV5"; sl@0: } sl@0: else sl@0: { sl@0: $command .= " -D_THUMB"; sl@0: } sl@0: } sl@0: sl@0: # Use the default FeatureManager database, not yet supported for x86 sl@0: if($arm ne "") sl@0: { sl@0: $command .= " -fm=$ENV{EPOCROOT}epoc32\\rom\\include\\featuredatabase.xml"; sl@0: } sl@0: else sl@0: { sl@0: $command .= ' -nofm'; #-fm option not supported as of 0708. sl@0: } sl@0: sl@0: # select development board (now we build h4 by default) sl@0: if ($target eq "lbk") sl@0: { sl@0: $command .= " lubbock"; sl@0: } sl@0: elsif ($target eq "h2") sl@0: { sl@0: $command .= " h2"; sl@0: } sl@0: elsif ($target eq "x86") sl@0: { sl@0: $command .= " x86pc"; sl@0: } sl@0: elsif ($target eq "naviengine") sl@0: { sl@0: $command .= " naviengine"; sl@0: } sl@0: elsif ($target eq "h6") sl@0: { sl@0: $command .= " pagedrom" if ($dp ne ""); sl@0: $command .= " 34xx_sdp"; sl@0: } sl@0: elsif ($target eq "lab") sl@0: { sl@0: $command .= " pagedrom" if ($dp ne ""); sl@0: $command .= " lab"; sl@0: } sl@0: elsif ($target eq "h4") sl@0: { sl@0: $command .= " pagedrom" if ($dp ne ""); sl@0: $command .= " h4hrp"; sl@0: } sl@0: else sl@0: { sl@0: die "target does not exist!!" sl@0: } sl@0: sl@0: # devkit.oby not included for NaviEngine currently sl@0: if($target ne "naviengine") sl@0: { sl@0: $command .= " devkit"; sl@0: } sl@0: $command .= " techview"; sl@0: sl@0: $command .= " misc.iby"; sl@0: sl@0: # use platform security, if appropriate sl@0: if (-f $PlatSecIdentifyFile) sl@0: { sl@0: $command .= " platsec"; sl@0: } sl@0: sl@0: if ($extras ne "") sl@0: { sl@0: $command .= " mmfOpt.iby" ; # mmfOpt.iby should include optional stuff sl@0: $command .= " iclOpt.iby" ; # iclOpt.iby should include optional stuff sl@0: $command .= " miscOpt.iby" ; # miscOpt.iby should include optional stuff sl@0: sl@0: if ($test ne "") sl@0: { sl@0: $command .= " mmfOptTest.iby" ; # mmfOptTest.iby should include tests of optional stuff sl@0: $command .= " iclOptTest.iby" if $include_icl_tests ne ""; # iclOptTest.iby should include tests of optional stuff sl@0: $command .= " miscOptTests.iby"; # miscOptTests.iby should include tests of optional stuff sl@0: } sl@0: sl@0: # Open source code delivered separately to Symbian OS sl@0: foreach $OptionalFile (@OptionalFiles) sl@0: { sl@0: if (-f $OptionalFile) sl@0: { sl@0: $OptionalFile =~ s/^.*\\//; # get only the filename sl@0: sl@0: if ($OptionalFile eq "oggvorbiscodec.iby" sl@0: || $OptionalFile eq "omxoggvorbiscodec.iby") sl@0: { sl@0: $OggVorbisCodecPresent = 1; sl@0: } sl@0: sl@0: $command .= " "; sl@0: $command .= $OptionalFile; sl@0: } sl@0: else sl@0: { sl@0: print "**** WARNING: $OptionalFile not added to ROM ****\n" sl@0: } sl@0: } sl@0: sl@0: # Add oggvorbis to ROM only if oggvorbiscodec and omxoggvorbiscodec exist to prevent ROM build errors sl@0: if ($OggVorbisCodecPresent) sl@0: { sl@0: $command .= " oggvorbis.iby"; sl@0: } sl@0: } sl@0: sl@0: if ($gce ne "") sl@0: { sl@0: $command .= " videorenderer.iby"; sl@0: sl@0: if ($test ne "") sl@0: { sl@0: $command .= " tsu_mmf_videorenderer.iby"; sl@0: } sl@0: } sl@0: sl@0: if ($test ne "") sl@0: { sl@0: if ($component eq $icl_param) sl@0: { sl@0: $command .= " iclIntTests.iby"; sl@0: $command .= " iclUnitTests.iby"; sl@0: } sl@0: elsif ($component eq $mmf_param) sl@0: { sl@0: $command .= " mmfUnitTests.iby"; sl@0: if ($extras eq "") sl@0: { sl@0: $command .= " mmfNotOptTest.iby"; sl@0: } sl@0: } sl@0: else sl@0: { sl@0: # -f or default sl@0: $command .= " MiscUnitTests.iby"; sl@0: $command .= " MiscIntTests.iby"; sl@0: $command .= " MMFUnitTests.iby"; sl@0: $command .= " MMFIntTests.iby"; sl@0: $command .= " ICLUnitTests.iby" if $include_icl_tests ne ""; sl@0: $command .= " ICLIntTests.iby" if $include_icl_tests ne ""; sl@0: if ($targetToolsExists) sl@0: { sl@0: $command .= " ExtraMultimediaTests.iby ecam.iby"; sl@0: $command .= " timageviewer.iby timagedisplay.iby tphotoeditor.iby timagetran.iby" if $include_icl_tests ne ""; sl@0: } sl@0: if ($extras eq "") sl@0: { sl@0: $command .= " mmfNotOptTest.iby"; sl@0: } sl@0: } sl@0: } sl@0: if ($targetToolsExists) sl@0: { sl@0: if ($auto ne "") sl@0: { sl@0: $command .= " MMAutoExec.iby"; sl@0: } sl@0: } sl@0: sl@0: #pvdecoderaac.iby is somehow not getting included into naviengine roms, the way it is in case of H4 and the rest. sl@0: if($target eq "naviengine") sl@0: { sl@0: $command .= " pvdecoderaac.iby"; sl@0: } sl@0: sl@0: $command .= $addnl_ibys; sl@0: sl@0: if ($gce eq "" and $dp eq "") sl@0: { sl@0: $command .= " surfacemanager_ref.iby" if ($target eq "h6" || "lab" || "naviengine"); sl@0: } sl@0: sl@0: print $command, "\n"; sl@0: sl@0: die "EPOCROOT is not set" unless ($EPOCROOT ne ""); sl@0: my $romDir = $EPOCROOT . $KRomDir; sl@0: die "$romDir does not exist" unless -d $romDir; sl@0: chdir ($romDir) or die "Could not cd to $romDir - $!"; sl@0: sl@0: # delete the expected image, so clear whether worked or not sl@0: if (-f $img) sl@0: { sl@0: my $count = unlink $img; sl@0: die "Could not delete $KH2Img" unless $count == 1; sl@0: } sl@0: sl@0: # delete any existing zip, otherwise we could end up with multiple ROMs in our zip file sl@0: if ($arm ne "" && -f $KZipName) sl@0: { sl@0: my $count = unlink $KZipName; sl@0: die "Could not delete $KZipName" unless $count == 1; sl@0: } sl@0: sl@0: my $result = system($command); sl@0: if ($result != 0) sl@0: { sl@0: print "Command failed ($result)\n"; sl@0: exit 1; sl@0: } sl@0: if($arm ne "") sl@0: { sl@0: if ($nand eq "" and $wdp eq "") # for nand etc you need to use the rofs loder, otherwise conver to sys$rom.zip sl@0: { sl@0: my $zipCommand = "zip " . $KZipName . " " . $img; sl@0: sl@0: print $zipCommand, "\n"; sl@0: $result = system($zipCommand); sl@0: if ($result != 0) sl@0: { sl@0: print "Command failed ($result)\n"; sl@0: exit 1; sl@0: } sl@0: } sl@0: elsif ($nand ne "" or $wdp ne "") sl@0: { sl@0: if ($target eq "h6") sl@0: { sl@0: if ($nand ne "") sl@0: { sl@0: copy($KH6NandBootLoader,$KBinName) or die "Copy failed: $!"; sl@0: copy($KH6NandImg,$CoreImg) or die "Copy failed: $!"; sl@0: copy($KH6NandRofsImg,$Rofs1Img) or die "Copy failed: $!"; sl@0: } sl@0: else # if ($wdp ne "") - not supported yet but ready for future releases sl@0: { sl@0: print "\nWDP is not supported yet on H6\n"; sl@0: exit 1; sl@0: # copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!"; sl@0: # copy($KH6Img,$CoreImg) or die "Copy failed: $!"; sl@0: # copy($KH6RofsImg,$Rofs1Img) or die "Copy failed: $!"; sl@0: } sl@0: } sl@0: elsif ($target eq "lab") sl@0: { sl@0: if ($nand ne "") sl@0: { sl@0: copy($KLabNandImg,$CoreImg) or die "Copy failed: $!"; sl@0: copy($KLabNandRofsImg,$Rofs1Img) or die "Copy failed: $!"; sl@0: # copy($KLabNandBootLoader,$KBinName) or die "Copy failed: $!"; Lab Nandloader is still not part of the CBR release hence commenting this command for time being sl@0: } sl@0: else # if ($wdp ne "") - not supported yet but ready for future releases sl@0: { sl@0: print "\nWDP is not supported yet on Labrador\n"; sl@0: exit 1; sl@0: # copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!"; sl@0: # copy($KLabImg,$CoreImg) or die "Copy failed: $!"; sl@0: # copy($KLabRofsImg,$Rofs1Img) or die "Copy failed: $!"; sl@0: } sl@0: } sl@0: else sl@0: { sl@0: if ($nand ne "") sl@0: { sl@0: copy($KH4NandBootLoader,$KBinName) or die "Copy failed: $!"; sl@0: copy($KH4NandImg,$CoreImg) or die "Copy failed: $!"; sl@0: copy($KH4NandRofsImg,$Rofs1Img) or die "Copy failed: $!"; sl@0: } sl@0: else # if ($wdp ne "") sl@0: { sl@0: copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!"; sl@0: copy($KH4Img,$CoreImg) or die "Copy failed: $!"; sl@0: copy($KH4RofsImg,$Rofs1Img) or die "Copy failed: $!"; sl@0: } sl@0: } sl@0: print "Generated " . $CoreImg . ", " . $Rofs1Img . " and " . $KBinName . "\n"; sl@0: $command = "dir " . $CoreImg . " " . $Rofs1Img . " " . $KBinName; sl@0: system($command); sl@0: } sl@0: } sl@0: } sl@0: sl@0: sub Usage sl@0: { sl@0: # print usage statement and exit sl@0: print <] [-ne <-uni/-smp>] sl@0: sl@0: mmbuildrom will build a lubbock / H2 / H4 / NaviEngine / Labrador ROM for multimedia testing sl@0: sl@0: It will always build a standard rom for the given platform, the various flags sl@0: support what test and optional software is installed in addition. sl@0: The parameters are as follows: sl@0: sl@0: -d) Build demand-paging NAND rom - instead of standard NOR build. Implies -n sl@0: -w) Build writable data paging NAND rom - implies -d but not -n! sl@0: -i) Build ICL test (unit and integration) software only, if -t is set sl@0: -m) Build MMF unit test software only, if -t is set sl@0: +i) ICL tests are now disabled unless this parameter is also given sl@0: -n) Build NAND rom - otherwise builds NOR sl@0: -f) Add all tests software, it -t is set (default) sl@0: -t) Add test software sl@0: -x) Add optional Multimedia modules sl@0: -g) Add optional Graphics Composition Engine enabled components sl@0: -eabi) Builds rom for armv5 sl@0: -h2) Builds for H2 board sl@0: -h4) Builds for H4 board sl@0: -x86pc) Builds rom for X86 Platform sl@0: -lab) Builds for labrador board sl@0: -ne) Builds rom for NaviEngine board(NE (uni/smp) does not support demand paging yet) sl@0: -smp) Builds an SMP-enabled Rom Image(Valid only if -ne flag is used) sl@0: -uni) Builds UniCore Rom Image(Valid only if -ne flag is used) sl@0: -lbk) Builds for lubbock board (default is h2) sl@0: -p ) Append .iby file to list sl@0: sl@0: ENDHERESTRING sl@0: if ($targetToolsExists) sl@0: { sl@0: print "-a) Add MMAutoExec iby file (internal Symbian use only)" sl@0: } sl@0: if($wrong_ne_param) sl@0: { sl@0: print "\n \n*Did you forget to specify whether you want a UniCore image or an SMP image?*\n\n"; sl@0: } sl@0: exit 1; sl@0: } sl@0: