os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/buildecomMultiImage.cmd
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 @rem
     2 @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 @rem All rights reserved.
     4 @rem This component and the accompanying materials are made available
     5 @rem under the terms of "Eclipse Public License v1.0"
     6 @rem which accompanies this distribution, and is available
     7 @rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 @rem
     9 @rem Initial Contributors:
    10 @rem Nokia Corporation - initial contribution.
    11 @rem
    12 @rem Contributors:
    13 @rem
    14 @rem Description:
    15 @rem
    16 @echo off
    17 
    18 :: buildecomMultiImage.cmd
    19 :: Copyright (c) 2007-2008 Symbian Software Ltd. All rights reserved.
    20 
    21 ::Disclaimer - this cmd file intends to show the steps to build the
    22 ::composite ROM in an unequivocal way. It is not meant to be a fool
    23 ::proof automation. It will run to completion unattended but user
    24 ::must manually check log files for ROM build and compile errors.
    25 ::To enhance readability, this file does not use
    26 ::local variables, i.e. sacrifice configurability, and does not
    27 ::check for compile errors, i.e. sacrifice robustness.
    28 
    29 ::================================================
    30 if NOT exist \rom\multiimage\save md \rom\multiimage\save
    31 del /F /Q \rom\multiimage\save\*.txt 2>NUL
    32 del /F /Q \rom\multiimage\*.img 2>NUL
    33 
    34 if NOT exist \rom\h4hrp_syslibs_nand_text_urel0 md \rom\h4hrp_syslibs_nand_text_urel0
    35 del /F /Q \rom\h4hrp_syslibs_nand_text_urel0\* 2>NUL
    36 
    37 if NOT exist \rom\h4hrp_syslibs_nand_text_urel1 md \rom\h4hrp_syslibs_nand_text_urel1
    38 del /F /Q \rom\h4hrp_syslibs_nand_text_urel1\* 2>NUL
    39 
    40 ::====================================================
    41 echo Verify the ecom source directory
    42 if NOT exist \syslibs\ecom3\Framework\MultipleImageTest\tools\scripts (
    43   echo This cmd file expects ecom source in \syslibs\ecom3\ directory.
    44   echo Move your source tree there and run %0 again.
    45   goto :EOF
    46 )
    47 
    48 ::================================================
    49 pushd \syslibs\ecom3\Framework\MultipleImageTest\tools\scripts
    50 
    51 echo Generate a special nandloader which will autoflash the IMG files
    52 echo on the MMC card to NAND.
    53 if NOT exist \syslibs_multiimageloader.img perl .\generatenandloader.pl > \rom\multiimage\save\nandloaderbuild.txt
    54 
    55 if NOT exist \syslibs_multiimageloader.img (
    56   echo generatenandloader.pl failed to build NAND loader.
    57   goto :EOF
    58 )
    59 
    60 copy /Y \syslibs_multiimageloader.img \rom\multiimage\sys$rom.bin
    61 pushd \rom\multiimage
    62 zip -q -m -9 sys$rom.zip sys$rom.bin
    63 popd
    64 
    65 ::================================================
    66 echo Modifying 3 obey files
    67 if NOT exist \rom\multiimage\save\header.iby copy \epoc32\rom\include\header.iby \rom\multiimage\save\header.iby
    68 perl .\EditHeaderIby.pl
    69 
    70 if NOT exist \rom\multiimage\save\h4hrp.oby copy \epoc32\rom\include\h4hrp.oby \rom\multiimage\save\h4hrp.oby
    71 perl .\EditH4hrpOby.pl
    72 
    73 popd
    74 ::====================================================
    75 ::Backup the original estartnandcomp.txt and always replace it
    76 ::with the composite ROM version.
    77 if NOT exist \epoc32\rom\h4hrp\unistore2 md \epoc32\rom\h4hrp\unistore2
    78 if NOT exist \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt goto MODIFYESTARTNANDCOMP
    79 if NOT exist \rom\multiimage\save\estartnandcomp.txt copy \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt \rom\multiimage\save 2>NUL
    80 :MODIFYESTARTNANDCOMP
    81 echo C: 2  ELOCAL FAT  0       FS_FORMAT_CORRUPT> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt
    82 echo D: 0  ELOCAL FAT  0       FS_FORMAT_COLD,FS_SYNC_DRIVE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt
    83 echo E: 1  ELOCAL FAT  0       FS_SCANDRIVE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt
    84 echo Z: 3  EROFS  ROFS 0       FS_COMPOSITE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt
    85 echo Z: 5  EROFS  ROFS 0       FS_COMPOSITE>> \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt
    86 
    87 set MISSING=
    88 if not exist \epoc32\rom\include\syslibs_textshell.oby (
    89   echo You need to fetch syslibs_textshell.oby for the OS product from overnight build scripts.
    90   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
    91   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
    92   set MISSING=syslibs_textshell.oby
    93 )
    94 
    95 if not exist \epoc32\rom\include\syslibs_utils.oby (
    96   echo You need to fetch syslibs_utils.oby for the OS product from overnight build scripts.
    97   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
    98   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
    99   set MISSING=syslibs_utils.oby
   100 )
   101 
   102 if not exist \epoc32\rom\include\syslibs_graphics.iby (
   103   echo You need to fetch syslibs_graphics.iby for the OS product from overnight build scripts.
   104   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
   105   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
   106   set MISSING=syslibs_graphics.iby
   107 )
   108 
   109 if defined MISSING (
   110   set MISSING=
   111   goto :ENDOFCMD
   112 )
   113 
   114 ::===========================================================================
   115 echo Compile multipleimagetest project twice and build the composite ROM
   116 
   117 ::There are about 12 lines dedicated to ensure clean build
   118 ::of the multipleimagetest project. They may seem excessively
   119 ::paranoid but could save you days of debugging.
   120 pushd \syslibs\ecom3\framework\multipleimagetest
   121 
   122 rd /s /q \epoc32\build\syslibs\ecom3\framework\multipleimagetest 2>NUL
   123 del /F /Q bld.inf 2>NUL
   124 copy bld_defaultImage.inf bld.inf
   125 call bldmake clean
   126 call bldmake bldfiles
   127 call abld -v test build armv5 urel > \rom\multiimage\save\Image1build.txt 2>&1
   128 call abld -w test build armv5 urel > \rom\multiimage\save\Image1what.txt
   129 echo scanning for compile errors in Image1 build
   130 call \epoc32\tools\scanlog.pl \rom\multiimage\save\Image1build.txt
   131 
   132 pushd \rom\h4hrp_syslibs_nand_text_urel0
   133 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
   134 popd
   135 
   136 call abld -v test clean armv5 urel > \rom\multiimage\save\Image1clean.txt 2>&1
   137 call abld -v test reallyclean armv5 urel >> \rom\multiimage\save\Image1clean.txt 2>&1
   138 
   139 ::========= build image2 =================
   140 rd /s /q \epoc32\build\syslibs\ecom3\framework\multipleimagetest
   141 del /F /Q bld.inf 2>NUL
   142 copy bld_image2.inf bld.inf
   143 call bldmake clean
   144 call bldmake bldfiles
   145 call abld -v test build armv5 urel > \rom\multiimage\save\Image2build.txt 2>&1
   146 call abld -w test build armv5 urel > \rom\multiimage\save\Image2what.txt
   147 echo scanning for compile errors in Image2 build
   148 call \epoc32\tools\scanlog.pl \rom\multiimage\save\Image2build.txt
   149 
   150 pushd \rom\h4hrp_syslibs_nand_text_urel1
   151 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
   152 popd
   153 
   154 call abld -v test clean armv5 urel > \rom\multiimage\save\Image2clean.txt 2>&1
   155 call abld -v test reallyclean armv5 urel >> \rom\multiimage\save\Image2clean.txt 2>&1
   156 
   157 ::================================================
   158 ::put all img files in one place
   159 set MISSING=
   160 copy /Y \rom\h4hrp_syslibs_nand_text_urel0\rombld.img \rom\multiimage\core.img || (
   161   echo ROM Build fail missing Image1 rombld.img
   162   set MISSING=Image1 rombld.img
   163 )
   164 
   165 copy /Y \rom\h4hrp_syslibs_nand_text_urel0\rombld.rofs.img \rom\multiimage\rofs1.img || (
   166   echo ROM Build fail missing Image1 rombld.rofs.img
   167   set MISSING=Image1 rombld.rofs.img
   168 )
   169 
   170 copy /Y \rom\h4hrp_syslibs_nand_text_urel1\rombld.rofs2.img \rom\multiimage\rofs2.img || (
   171   echo ROM Build fail missing Image2 rombld.rofs2.img
   172   set MISSING=Image2 rombld.rofs2.img
   173 )
   174 
   175 
   176 if defined MISSING (
   177   set MISSING=
   178 ) else (
   179   echo ROM build successful but check rombuild.txt in \rom\h4hrp_syslibs_nand_text_urel0
   180   echo and \rom\h4hrp_syslibs_nand_text_urel1 for any missing files.
   181   echo Also check \rom\multiimage\save\Image1build.txt and 
   182   echo \rom\multiimage\save\Image2build.txt for build errors.
   183 )
   184 
   185 popd
   186 
   187 ::================================================
   188 :ENDOFCMD
   189 echo Restore modified obey files.
   190 copy /Y \rom\multiimage\save\h4hrp.oby \epoc32\rom\include\h4hrp.oby
   191 copy /Y \rom\multiimage\save\header.iby \epoc32\rom\include\header.iby
   192 if exist \rom\multiimage\save\estartnandcomp.txt copy /Y \rom\multiimage\save\estartnandcomp.txt \epoc32\rom\h4hrp\unistore2\estartnandcomp.txt