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