sl@0: #!perl sl@0: sl@0: # Copyright (c) 2007-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: # sl@0: sl@0: system("getsource -o base_e32"); sl@0: CreateAutoExeFlash(); sl@0: system("rename \\epoc32\\rom\\nandloader\\autoexec.bat autoexec_orig.bat") sl@0: && print "rename of autoexec.bat failed\n"; sl@0: system("copy /y \\epoc32\\rom\\nandloader\\autoexec_flash.bat \\epoc32\\rom\\nandloader\\autoexec.bat") sl@0: && die "copy of autoexec_flash.bat failed\n"; sl@0: chdir("\\src\\cedar\\generic\\base\\e32\\rombuild"); sl@0: sl@0: system("rom -v=h4hrp -i=armv5 -b=urel -t=nandloader -m=_NAND2") sl@0: && die "building h4 nandloader rom failed\n"; sl@0: system("copy H4HRP__NAND2ARMV5.IMG \\syslibs_multiimageloader.img") sl@0: && die "copy of H4HRP__NAND2ARMV5.IMG failed\n"; sl@0: system("del \\epoc32\\rom\\nandloader\\autoexec.bat"); sl@0: system("rename \\epoc32\\rom\\nandloader\\autoexec_orig.bat autoexec.bat") sl@0: && print "rename of autoexec_orig.bat failed\n"; sl@0: sl@0: sub CreateAutoExeFlash sl@0: { sl@0: my $sAutoExec = "\\epoc32\\rom\\nandloader\\autoexec_flash.bat"; sl@0: open(sAUTOFLASH,">$sAutoExec"); sl@0: print sAUTOFLASH "z:\n"; sl@0: print sAUTOFLASH "nandloader -f -d 3 -a d: cldr.img core.img rofs1.img rofs2.img -r"; sl@0: close(sAUTOFLASH); sl@0: }