os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/generatenandloader.pl
Update contrib.
3 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 # This component and the accompanying materials are made available
6 # under the terms of "Eclipse Public License v1.0"
7 # which accompanies this distribution, and is available
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 # Initial Contributors:
11 # Nokia Corporation - initial contribution.
18 system("getsource -o base_e32");
20 system("rename \\epoc32\\rom\\nandloader\\autoexec.bat autoexec_orig.bat")
21 && print "rename of autoexec.bat failed\n";
22 system("copy /y \\epoc32\\rom\\nandloader\\autoexec_flash.bat \\epoc32\\rom\\nandloader\\autoexec.bat")
23 && die "copy of autoexec_flash.bat failed\n";
24 chdir("\\src\\cedar\\generic\\base\\e32\\rombuild");
26 system("rom -v=h4hrp -i=armv5 -b=urel -t=nandloader -m=_NAND2")
27 && die "building h4 nandloader rom failed\n";
28 system("copy H4HRP__NAND2ARMV5.IMG \\syslibs_multiimageloader.img")
29 && die "copy of H4HRP__NAND2ARMV5.IMG failed\n";
30 system("del \\epoc32\\rom\\nandloader\\autoexec.bat");
31 system("rename \\epoc32\\rom\\nandloader\\autoexec_orig.bat autoexec.bat")
32 && print "rename of autoexec_orig.bat failed\n";
34 sub CreateAutoExeFlash
36 my $sAutoExec = "\\epoc32\\rom\\nandloader\\autoexec_flash.bat";
37 open(sAUTOFLASH,">$sAutoExec");
38 print sAUTOFLASH "z:\n";
39 print sAUTOFLASH "nandloader -f -d 3 -a d: cldr.img core.img rofs1.img rofs2.img -r";