os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/generatenandloader.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #!perl
     2 
     3 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 # All rights reserved.
     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".
     9 #
    10 # Initial Contributors:
    11 # Nokia Corporation - initial contribution.
    12 #
    13 # Contributors:
    14 #
    15 # Description:
    16 #
    17 
    18 system("getsource -o base_e32");
    19 CreateAutoExeFlash();	
    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");
    25 
    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";
    33 
    34 sub CreateAutoExeFlash
    35 {
    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";
    40 	close(sAUTOFLASH);
    41 }