os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/generatenandloader.pl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/generatenandloader.pl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,41 @@
     1.4 +#!perl
     1.5 +
     1.6 +# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.7 +# All rights reserved.
     1.8 +# This component and the accompanying materials are made available
     1.9 +# under the terms of "Eclipse Public License v1.0"
    1.10 +# which accompanies this distribution, and is available
    1.11 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12 +#
    1.13 +# Initial Contributors:
    1.14 +# Nokia Corporation - initial contribution.
    1.15 +#
    1.16 +# Contributors:
    1.17 +#
    1.18 +# Description:
    1.19 +#
    1.20 +
    1.21 +system("getsource -o base_e32");
    1.22 +CreateAutoExeFlash();	
    1.23 +system("rename \\epoc32\\rom\\nandloader\\autoexec.bat autoexec_orig.bat")
    1.24 +	&& print "rename of autoexec.bat failed\n";
    1.25 +system("copy /y \\epoc32\\rom\\nandloader\\autoexec_flash.bat \\epoc32\\rom\\nandloader\\autoexec.bat")
    1.26 +	&& die "copy of autoexec_flash.bat failed\n";
    1.27 +chdir("\\src\\cedar\\generic\\base\\e32\\rombuild");
    1.28 +
    1.29 +system("rom -v=h4hrp -i=armv5 -b=urel -t=nandloader -m=_NAND2")
    1.30 +	&& die "building h4 nandloader rom failed\n";
    1.31 +system("copy H4HRP__NAND2ARMV5.IMG \\syslibs_multiimageloader.img")
    1.32 +	&& die "copy of H4HRP__NAND2ARMV5.IMG failed\n";
    1.33 +system("del \\epoc32\\rom\\nandloader\\autoexec.bat");
    1.34 +system("rename \\epoc32\\rom\\nandloader\\autoexec_orig.bat autoexec.bat")
    1.35 +	&& print "rename of autoexec_orig.bat failed\n";
    1.36 +
    1.37 +sub CreateAutoExeFlash
    1.38 +{
    1.39 +	my $sAutoExec = "\\epoc32\\rom\\nandloader\\autoexec_flash.bat";
    1.40 +	open(sAUTOFLASH,">$sAutoExec");
    1.41 +	print sAUTOFLASH "z:\n";
    1.42 +	print sAUTOFLASH "nandloader -f -d 3 -a d: cldr.img core.img rofs1.img rofs2.img -r";
    1.43 +	close(sAUTOFLASH);
    1.44 +}