sl@0: @rem sl@0: @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: @rem All rights reserved. sl@0: @rem This component and the accompanying materials are made available sl@0: @rem under the terms of "Eclipse Public License v1.0" sl@0: @rem which accompanies this distribution, and is available sl@0: @rem at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: @rem sl@0: @rem Initial Contributors: sl@0: @rem Nokia Corporation - initial contribution. sl@0: @rem sl@0: @rem Contributors: sl@0: @rem sl@0: @rem Description: sl@0: @rem sl@0: @echo off sl@0: sl@0: :: buildecomMultiImage.cmd sl@0: :: Copyright (c) 2007-2008 Symbian Software Ltd. All rights reserved. sl@0: sl@0: ::Disclaimer - this cmd file intends to show the steps to build the sl@0: ::composite ROM in an unequivocal way. It is not meant to be a fool sl@0: ::proof automation. It will run to completion unattended but user sl@0: ::must manually check log files for ROM build and compile errors. sl@0: ::To enhance readability, this file does not use sl@0: ::local variables, i.e. sacrifice configurability, and does not sl@0: ::check for compile errors, i.e. sacrifice robustness. sl@0: sl@0: ::================================================ sl@0: if NOT exist \rom\multiimage\save md \rom\multiimage\save sl@0: del /F /Q \rom\multiimage\save\*.txt 2>NUL sl@0: del /F /Q \rom\multiimage\*.img 2>NUL sl@0: sl@0: if NOT exist \rom\h4hrp_syslibs_nand_text_urel0 md \rom\h4hrp_syslibs_nand_text_urel0 sl@0: del /F /Q \rom\h4hrp_syslibs_nand_text_urel0\* 2>NUL sl@0: sl@0: if NOT exist \rom\h4hrp_syslibs_nand_text_urel1 md \rom\h4hrp_syslibs_nand_text_urel1 sl@0: del /F /Q \rom\h4hrp_syslibs_nand_text_urel1\* 2>NUL sl@0: sl@0: ::==================================================== sl@0: echo Verify the ecom source directory sl@0: if NOT exist \syslibs\ecom3\Framework\MultipleImageTest\tools\scripts ( sl@0: echo This cmd file expects ecom source in \syslibs\ecom3\ directory. sl@0: echo Move your source tree there and run %0 again. sl@0: goto :EOF sl@0: ) sl@0: sl@0: ::================================================ sl@0: pushd \syslibs\ecom3\Framework\MultipleImageTest\tools\scripts sl@0: sl@0: echo Generate a special nandloader which will autoflash the IMG files sl@0: echo on the MMC card to NAND. sl@0: if NOT exist \syslibs_multiimageloader.img perl .\generatenandloader.pl > \rom\multiimage\save\nandloaderbuild.txt sl@0: sl@0: if NOT exist \syslibs_multiimageloader.img ( sl@0: echo generatenandloader.pl failed to build NAND loader. sl@0: goto :EOF sl@0: ) sl@0: sl@0: copy /Y \syslibs_multiimageloader.img \rom\multiimage\sys$rom.bin sl@0: pushd \rom\multiimage sl@0: zip -q -m -9 sys$rom.zip sys$rom.bin sl@0: popd sl@0: sl@0: ::================================================ sl@0: echo Modifying 3 obey files sl@0: if NOT exist \rom\multiimage\save\header.iby copy \epoc32\rom\include\header.iby \rom\multiimage\save\header.iby sl@0: perl .\EditHeaderIby.pl sl@0: sl@0: if NOT exist \rom\multiimage\save\h4hrp.oby copy \epoc32\rom\include\h4hrp.oby \rom\multiimage\save\h4hrp.oby sl@0: perl .\EditH4hrpOby.pl sl@0: sl@0: popd sl@0: ::==================================================== sl@0: ::Backup the original estartnandcomp.txt and always replace it sl@0: ::with the composite ROM version. sl@0: if NOT exist \epoc32\rom\h4hrp\unistore2 md \epoc32\rom\h4hrp\unistore2 sl@0: if NOT exist \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt goto MODIFYESTARTNANDCOMP sl@0: if NOT exist \rom\multiimage\save\estartnandcomp.txt copy \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt \rom\multiimage\save 2>NUL sl@0: :MODIFYESTARTNANDCOMP sl@0: echo C: 2 ELOCAL FAT 0 FS_FORMAT_CORRUPT> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt sl@0: echo D: 0 ELOCAL FAT 0 FS_FORMAT_COLD,FS_SYNC_DRIVE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt sl@0: echo E: 1 ELOCAL FAT 0 FS_SCANDRIVE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt sl@0: echo Z: 3 EROFS ROFS 0 FS_COMPOSITE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt sl@0: echo Z: 5 EROFS ROFS 0 FS_COMPOSITE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt sl@0: sl@0: set MISSING= sl@0: if not exist \epoc32\rom\include\syslibs_textshell.oby ( sl@0: echo You need to fetch syslibs_textshell.oby for the OS product from overnight build scripts. sl@0: echo e.g. p4 print -o \epoc32\rom\include\syslibs_textshell.oby -q //PR/share/DABSRelease/buildscripts/projects/syslibs/Symbian_OS_v9.5/SysLibsDevTools/syslibs_textshell.oby sl@0: echo For Vancouver: p4 print -o \epoc32\rom\include\syslibs_textshell.oby -q //EPOC/development/CDMA/build/buildscripts/projects/syslibs/Symbian_OS_v9.5/SysLibsDevTools/syslibs_textshell.oby sl@0: set MISSING=syslibs_textshell.oby sl@0: ) sl@0: sl@0: if not exist \epoc32\rom\include\syslibs_utils.oby ( sl@0: echo You need to fetch syslibs_utils.oby for the OS product from overnight build scripts. sl@0: echo e.g. p4 print -o \epoc32\rom\include\syslibs_utils.oby -q //PR/share/DABSRelease/buildscripts/projects/syslibs/Symbian_OS_v9.5/SysLibsDevTools/syslibs_utils.oby sl@0: echo For Vancouver: p4 print -o \epoc32\rom\include\syslibs_utils.oby -q //EPOC/development/CDMA/build/buildscripts/projects/syslibs/Symbian_OS_v9.5/SysLibsDevTools/syslibs_utils.oby sl@0: set MISSING=syslibs_utils.oby sl@0: ) sl@0: sl@0: if not exist \epoc32\rom\include\syslibs_graphics.iby ( sl@0: echo You need to fetch syslibs_graphics.iby for the OS product from overnight build scripts. sl@0: echo e.g. p4 print -o \epoc32\rom\include\syslibs_graphics.iby -q //PR/share/DABSRelease/buildscripts/projects/syslibs/Symbian_OS_v9.5/SysLibsDevTools/syslibs_graphics.iby sl@0: echo For Vancouver: p4 print -o \epoc32\rom\include\syslibs_graphics.iby -q //EPOC/development/CDMA/build/buildscripts/projects/syslibs/Symbian_OS_v9.5/SysLibsDevTools/syslibs_graphics.iby sl@0: set MISSING=syslibs_graphics.iby sl@0: ) sl@0: sl@0: if defined MISSING ( sl@0: set MISSING= sl@0: goto :ENDOFCMD sl@0: ) sl@0: sl@0: ::=========================================================================== sl@0: echo Compile multipleimagetest project twice and build the composite ROM sl@0: sl@0: ::There are about 12 lines dedicated to ensure clean build sl@0: ::of the multipleimagetest project. They may seem excessively sl@0: ::paranoid but could save you days of debugging. sl@0: pushd \syslibs\ecom3\framework\multipleimagetest sl@0: sl@0: rd /s /q \epoc32\build\syslibs\ecom3\framework\multipleimagetest 2>NUL sl@0: del /F /Q bld.inf 2>NUL sl@0: copy bld_defaultImage.inf bld.inf sl@0: call bldmake clean sl@0: call bldmake bldfiles sl@0: call abld -v test build armv5 urel > \rom\multiimage\save\Image1build.txt 2>&1 sl@0: call abld -w test build armv5 urel > \rom\multiimage\save\Image1what.txt sl@0: echo scanning for compile errors in Image1 build sl@0: call \epoc32\tools\scanlog.pl \rom\multiimage\save\Image1build.txt sl@0: sl@0: pushd \rom\h4hrp_syslibs_nand_text_urel0 sl@0: call buildrom.cmd -D_SERIAL_DOWNLOAD -DUSE_STRONG_CRYPTOGRAPHY -DTEXT_ONLY_ROM -DRVCT -D_EABI=ARMV5 -D_NAND2 -nofm h4hrp syslibs_textshell syslibs_utils platsec EcomMultipleImageTest.iby -orombld.img > rombuild.txt sl@0: popd sl@0: sl@0: call abld -v test clean armv5 urel > \rom\multiimage\save\Image1clean.txt 2>&1 sl@0: call abld -v test reallyclean armv5 urel >> \rom\multiimage\save\Image1clean.txt 2>&1 sl@0: sl@0: ::========= build image2 ================= sl@0: rd /s /q \epoc32\build\syslibs\ecom3\framework\multipleimagetest sl@0: del /F /Q bld.inf 2>NUL sl@0: copy bld_image2.inf bld.inf sl@0: call bldmake clean sl@0: call bldmake bldfiles sl@0: call abld -v test build armv5 urel > \rom\multiimage\save\Image2build.txt 2>&1 sl@0: call abld -w test build armv5 urel > \rom\multiimage\save\Image2what.txt sl@0: echo scanning for compile errors in Image2 build sl@0: call \epoc32\tools\scanlog.pl \rom\multiimage\save\Image2build.txt sl@0: sl@0: pushd \rom\h4hrp_syslibs_nand_text_urel1 sl@0: call buildrom.cmd -D_SERIAL_DOWNLOAD -DUSE_STRONG_CRYPTOGRAPHY -DTEXT_ONLY_ROM -DRVCT -D_EABI=ARMV5 -D_NAND2 -nofm h4hrp syslibs_textshell syslibs_utils platsec EcomMultipleImage2.iby -orombld.img > rombuild.txt sl@0: popd sl@0: sl@0: call abld -v test clean armv5 urel > \rom\multiimage\save\Image2clean.txt 2>&1 sl@0: call abld -v test reallyclean armv5 urel >> \rom\multiimage\save\Image2clean.txt 2>&1 sl@0: sl@0: ::================================================ sl@0: ::put all img files in one place sl@0: set MISSING= sl@0: copy /Y \rom\h4hrp_syslibs_nand_text_urel0\rombld.img \rom\multiimage\core.img || ( sl@0: echo ROM Build fail missing Image1 rombld.img sl@0: set MISSING=Image1 rombld.img sl@0: ) sl@0: sl@0: copy /Y \rom\h4hrp_syslibs_nand_text_urel0\rombld.rofs.img \rom\multiimage\rofs1.img || ( sl@0: echo ROM Build fail missing Image1 rombld.rofs.img sl@0: set MISSING=Image1 rombld.rofs.img sl@0: ) sl@0: sl@0: copy /Y \rom\h4hrp_syslibs_nand_text_urel1\rombld.rofs2.img \rom\multiimage\rofs2.img || ( sl@0: echo ROM Build fail missing Image2 rombld.rofs2.img sl@0: set MISSING=Image2 rombld.rofs2.img sl@0: ) sl@0: sl@0: sl@0: if defined MISSING ( sl@0: set MISSING= sl@0: ) else ( sl@0: echo ROM build successful but check rombuild.txt in \rom\h4hrp_syslibs_nand_text_urel0 sl@0: echo and \rom\h4hrp_syslibs_nand_text_urel1 for any missing files. sl@0: echo Also check \rom\multiimage\save\Image1build.txt and sl@0: echo \rom\multiimage\save\Image2build.txt for build errors. sl@0: ) sl@0: sl@0: popd sl@0: sl@0: ::================================================ sl@0: :ENDOFCMD sl@0: echo Restore modified obey files. sl@0: copy /Y \rom\multiimage\save\h4hrp.oby \epoc32\rom\include\h4hrp.oby sl@0: copy /Y \rom\multiimage\save\header.iby \epoc32\rom\include\header.iby sl@0: if exist \rom\multiimage\save\estartnandcomp.txt copy /Y \rom\multiimage\save\estartnandcomp.txt \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt