sl@0
|
1 |
# Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
# All rights reserved.
|
sl@0
|
3 |
# This component and the accompanying materials are made available
|
sl@0
|
4 |
# under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
# which accompanies this distribution, and is available
|
sl@0
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
#
|
sl@0
|
8 |
# Initial Contributors:
|
sl@0
|
9 |
# Nokia Corporation - initial contribution.
|
sl@0
|
10 |
#
|
sl@0
|
11 |
# Contributors:
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# Description:
|
sl@0
|
14 |
# mmrombuild.pl
|
sl@0
|
15 |
#
|
sl@0
|
16 |
#
|
sl@0
|
17 |
|
sl@0
|
18 |
use strict;
|
sl@0
|
19 |
use warnings;
|
sl@0
|
20 |
use Env qw(EPOCROOT);
|
sl@0
|
21 |
use File::Copy;
|
sl@0
|
22 |
|
sl@0
|
23 |
# literals
|
sl@0
|
24 |
my $auto_param = "-a";
|
sl@0
|
25 |
my $dp_param = "-d";
|
sl@0
|
26 |
my $wdp_param = "-w";
|
sl@0
|
27 |
my $all_param = "-f";
|
sl@0
|
28 |
my $help_param = "-h";
|
sl@0
|
29 |
my $icl_param = "-i";
|
sl@0
|
30 |
my $plus_icl_param = "+i";
|
sl@0
|
31 |
my $keep_param = "-k";
|
sl@0
|
32 |
my $mmf_param = "-m";
|
sl@0
|
33 |
my $nand_param = "-n";
|
sl@0
|
34 |
my $addnl_param = "-p";
|
sl@0
|
35 |
my $test_param = "-t";
|
sl@0
|
36 |
my $extra_param = "-x";
|
sl@0
|
37 |
my $gce_param = "-g";
|
sl@0
|
38 |
my $eabi_param = "-eabi";
|
sl@0
|
39 |
my $h2_param = "-h2";
|
sl@0
|
40 |
my $h4_param = "-h4";
|
sl@0
|
41 |
my $h6_param = "-h6";
|
sl@0
|
42 |
my $lab_param = "-lab";
|
sl@0
|
43 |
my $lbk_param = "-lbk";
|
sl@0
|
44 |
my $x86_param = "-x86pc";
|
sl@0
|
45 |
my $ne_param = "-ne";
|
sl@0
|
46 |
my $smp_param = "-smp";
|
sl@0
|
47 |
my $uni_param = "-uni";
|
sl@0
|
48 |
|
sl@0
|
49 |
my $KRomDir = "epoc32\\rom";
|
sl@0
|
50 |
my $KLubbockImg = "la_001.techview.IMG";
|
sl@0
|
51 |
my $KH2Img = "om_001.techview.IMG";
|
sl@0
|
52 |
my $KH4Img = "h4hrp_001.techview.IMG";
|
sl@0
|
53 |
my $KH4RofsImg = "h4hrp_001.techview.rofs.IMG";
|
sl@0
|
54 |
my $KH6Img = "34xx_sdp_001.techview.IMG";
|
sl@0
|
55 |
my $KH6NandImg = "34xx_sdp_001.techview.nand.IMG";
|
sl@0
|
56 |
my $KH6NandRofsImg = "34xx_sdp_001.techview.nand.rofs.IMG";
|
sl@0
|
57 |
my $KLabImg = "lab_001.techview.IMG";
|
sl@0
|
58 |
my $KLabNandImg = "lab_001.techview.nand.IMG";
|
sl@0
|
59 |
my $KLabNandRofsImg = "lab_001.techview.nand.rofs.IMG";
|
sl@0
|
60 |
my $KH4NandImg = "h4hrp_001.techview.nand.img";
|
sl@0
|
61 |
my $KH4NandRofsImg = "h4hrp_001.techview.nand.rofs.img";
|
sl@0
|
62 |
my $KH6NandBootLoader = "h6.nandloader.reltest.img";
|
sl@0
|
63 |
my $KLabNandBootLoader = "lab_001.nandloader.reltest.img";
|
sl@0
|
64 |
my $KH4NandBootLoader = "h4.nandloader.reltest.img";
|
sl@0
|
65 |
my $KMmcBootLoader = "h4.mmcloader.reltest.img";
|
sl@0
|
66 |
my $CoreImg = "core.img";
|
sl@0
|
67 |
my $Rofs1Img = "rofs1.img";
|
sl@0
|
68 |
my $KBinName = 'sys$rom.bin'; # be careful about '$'
|
sl@0
|
69 |
my $KZipName = 'sys$rom.zip'; # be careful about '$'
|
sl@0
|
70 |
my $KX86Img = "x86pc_001.techview.IMG";
|
sl@0
|
71 |
my $KNEImg = "NE1_TB_001.techview.IMG";
|
sl@0
|
72 |
|
sl@0
|
73 |
my $extras = "";
|
sl@0
|
74 |
my $gce = "";
|
sl@0
|
75 |
my $test = "";
|
sl@0
|
76 |
my $component = "";
|
sl@0
|
77 |
my $keep = "";
|
sl@0
|
78 |
my $auto = "";
|
sl@0
|
79 |
my $eabi = "";
|
sl@0
|
80 |
my $addnl_ibys = "";
|
sl@0
|
81 |
my $dp = "";
|
sl@0
|
82 |
my $wdp = "";
|
sl@0
|
83 |
my $nand = "";
|
sl@0
|
84 |
my $img = "";
|
sl@0
|
85 |
my $target = ""; # default target is h6 but start as blank so we can distinguish multiple target requests
|
sl@0
|
86 |
my $default_target = "h6";
|
sl@0
|
87 |
my $arm = "";
|
sl@0
|
88 |
my $smp = "";
|
sl@0
|
89 |
my $uni = "";
|
sl@0
|
90 |
my $wrong_ne_param = 0;
|
sl@0
|
91 |
my $include_icl_tests = "";
|
sl@0
|
92 |
|
sl@0
|
93 |
my $eka2IdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build
|
sl@0
|
94 |
my $PlatSecIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\armv5\\udeb\\mmfdevsoundproxy.dll"; # if file present, is a build with platsec
|
sl@0
|
95 |
my $StreamingCafIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\armv5\\udeb\\sraserver.exe";
|
sl@0
|
96 |
|
sl@0
|
97 |
my $OptionalFile = "";
|
sl@0
|
98 |
# if any of these .iby files are present, then we'll add them to the ROM.
|
sl@0
|
99 |
my @OptionalFiles = ("$ENV{EPOCROOT}epoc32\\rom\\include\\XviDPU.iby",
|
sl@0
|
100 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\XviDhw.iby",
|
sl@0
|
101 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\oggvorbiscodec.iby",
|
sl@0
|
102 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\omxoggvorbiscodec.iby",
|
sl@0
|
103 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\pvopt.iby",
|
sl@0
|
104 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\pvtestsopt.iby",
|
sl@0
|
105 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\RtaUtils.iby",
|
sl@0
|
106 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\TestExecute.iby",
|
sl@0
|
107 |
"$ENV{EPOCROOT}epoc32\\rom\\include\\streamingcaf.iby");
|
sl@0
|
108 |
|
sl@0
|
109 |
my $OggVorbisCodecPresent = 0;
|
sl@0
|
110 |
|
sl@0
|
111 |
my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build";
|
sl@0
|
112 |
my $targetToolsExists = 0;
|
sl@0
|
113 |
if (-d $targetToolsDir)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
$targetToolsExists = 1;
|
sl@0
|
116 |
print "TargetTools directory exists: $targetToolsDir\n"
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
# main:
|
sl@0
|
120 |
{
|
sl@0
|
121 |
# Process command-line
|
sl@0
|
122 |
|
sl@0
|
123 |
&ReadArgs();
|
sl@0
|
124 |
|
sl@0
|
125 |
&ProcessArgs();
|
sl@0
|
126 |
|
sl@0
|
127 |
&BuildRom();
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
#
|
sl@0
|
131 |
# Subroutines
|
sl@0
|
132 |
#
|
sl@0
|
133 |
|
sl@0
|
134 |
sub ReadArgs()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
while (@ARGV)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
my $param = $ARGV[0]; shift @ARGV; # grab first param and shift along
|
sl@0
|
139 |
|
sl@0
|
140 |
if ($param eq "") # ignore blank parameters
|
sl@0
|
141 |
{
|
sl@0
|
142 |
next;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
if ($param eq $icl_param ||
|
sl@0
|
146 |
$param eq $mmf_param || $param eq $all_param)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
$component = $param;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
elsif ($param eq $plus_icl_param)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
$include_icl_tests = $param;
|
sl@0
|
153 |
}
|
sl@0
|
154 |
elsif ($param eq $test_param)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
$test = $param;
|
sl@0
|
157 |
}
|
sl@0
|
158 |
elsif ($param eq $extra_param)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
$extras = $param;
|
sl@0
|
161 |
}
|
sl@0
|
162 |
elsif ($param eq $gce_param)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
$gce = $param;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
elsif ($param eq $auto_param)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
$auto = $param;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
elsif ($param eq $eabi_param)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
$eabi = $param;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
elsif ($param eq $dp_param)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
$dp = $param;
|
sl@0
|
177 |
$nand = $param; # demand paging implies nand
|
sl@0
|
178 |
}
|
sl@0
|
179 |
elsif ($param eq $wdp_param)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
$wdp = $param;
|
sl@0
|
182 |
$dp = $param; # writable data paging implies standard demand paging
|
sl@0
|
183 |
}
|
sl@0
|
184 |
elsif ($param eq $nand_param)
|
sl@0
|
185 |
{
|
sl@0
|
186 |
$nand = $param;
|
sl@0
|
187 |
}
|
sl@0
|
188 |
elsif ($param eq $addnl_param)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
$addnl_ibys .= " " . $ARGV[0]; shift @ARGV; # grab next param and shift along
|
sl@0
|
191 |
}
|
sl@0
|
192 |
elsif ($param eq $h2_param)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
&Usage() if ($target ne "");
|
sl@0
|
195 |
$target = "h2";
|
sl@0
|
196 |
$eabi = $eabi_param; # H2 always EABI
|
sl@0
|
197 |
}
|
sl@0
|
198 |
elsif ($param eq $h4_param)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
&Usage() if ($target ne "");
|
sl@0
|
201 |
$target = "h4";
|
sl@0
|
202 |
$eabi = $eabi_param; # H4 always EABI
|
sl@0
|
203 |
}
|
sl@0
|
204 |
elsif ($param eq $h6_param)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
&Usage() if ($target ne "");
|
sl@0
|
207 |
$target = "h6";
|
sl@0
|
208 |
$eabi = $eabi_param; # H6 always EABI
|
sl@0
|
209 |
}
|
sl@0
|
210 |
elsif ($param eq $lab_param)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
&Usage() if ($target ne "");
|
sl@0
|
213 |
$target = "lab";
|
sl@0
|
214 |
$eabi = $eabi_param; # Lab always EABI
|
sl@0
|
215 |
}
|
sl@0
|
216 |
elsif ($param eq $lbk_param)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
&Usage() if ($target ne "");
|
sl@0
|
219 |
$target = "lbk";
|
sl@0
|
220 |
}
|
sl@0
|
221 |
elsif ($param eq $x86_param)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
&Usage() if ($target ne "");
|
sl@0
|
224 |
&Usage() if (($eabi ne "") || ($nand ne ""));
|
sl@0
|
225 |
$target = "x86";
|
sl@0
|
226 |
}
|
sl@0
|
227 |
elsif ($param eq $ne_param)
|
sl@0
|
228 |
{
|
sl@0
|
229 |
&Usage() if ($target ne "");
|
sl@0
|
230 |
&Usage() if ($nand ne "");
|
sl@0
|
231 |
$target = "naviengine";
|
sl@0
|
232 |
$eabi = $eabi_param; # NaviEngine always EABI
|
sl@0
|
233 |
}
|
sl@0
|
234 |
elsif ($param eq $smp_param)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
# Only NaviEngine can be configured to build SMP enabled image
|
sl@0
|
237 |
&Usage() if ($target ne "naviengine");
|
sl@0
|
238 |
$smp = "smp";
|
sl@0
|
239 |
}
|
sl@0
|
240 |
elsif ($param eq $uni_param)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
# '-uni'-flag valid only for NaviEngine
|
sl@0
|
243 |
&Usage() if ($target ne "naviengine");
|
sl@0
|
244 |
$uni = "uni";
|
sl@0
|
245 |
}
|
sl@0
|
246 |
elsif ($param eq $help_param)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
&Usage();
|
sl@0
|
249 |
}
|
sl@0
|
250 |
else
|
sl@0
|
251 |
{
|
sl@0
|
252 |
# unknown setting
|
sl@0
|
253 |
&Usage();
|
sl@0
|
254 |
}
|
sl@0
|
255 |
}
|
sl@0
|
256 |
&CheckArgs();
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
sub CheckArgs()
|
sl@0
|
260 |
{
|
sl@0
|
261 |
# check that the arguments make sense
|
sl@0
|
262 |
|
sl@0
|
263 |
$target = $default_target if ($target eq "");
|
sl@0
|
264 |
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
sub ProcessArgs()
|
sl@0
|
268 |
{
|
sl@0
|
269 |
if ($target eq "h2")
|
sl@0
|
270 |
{
|
sl@0
|
271 |
$img = $KH2Img;
|
sl@0
|
272 |
}
|
sl@0
|
273 |
elsif ($target eq "lkb")
|
sl@0
|
274 |
{
|
sl@0
|
275 |
$img = $KLubbockImg;
|
sl@0
|
276 |
}
|
sl@0
|
277 |
elsif ($target eq "h4")
|
sl@0
|
278 |
{
|
sl@0
|
279 |
$img = $KH4Img if ($nand eq "");
|
sl@0
|
280 |
$img = $KH4NandImg if ($nand ne "");
|
sl@0
|
281 |
}
|
sl@0
|
282 |
elsif ($target eq "h6")
|
sl@0
|
283 |
{
|
sl@0
|
284 |
$img = $KH6Img;
|
sl@0
|
285 |
}
|
sl@0
|
286 |
elsif ($target eq "lab")
|
sl@0
|
287 |
{
|
sl@0
|
288 |
$img = $KLabImg;
|
sl@0
|
289 |
}
|
sl@0
|
290 |
elsif ($target eq "x86")
|
sl@0
|
291 |
{
|
sl@0
|
292 |
$img = $KX86Img;
|
sl@0
|
293 |
}
|
sl@0
|
294 |
elsif ($target eq "naviengine")
|
sl@0
|
295 |
{
|
sl@0
|
296 |
$img = $KNEImg;
|
sl@0
|
297 |
}
|
sl@0
|
298 |
else
|
sl@0
|
299 |
{
|
sl@0
|
300 |
die "Internal error: unknown image type";
|
sl@0
|
301 |
}
|
sl@0
|
302 |
if($target eq "naviengine" && $smp eq "" && $uni eq "" )
|
sl@0
|
303 |
{
|
sl@0
|
304 |
$wrong_ne_param = 1;
|
sl@0
|
305 |
&Usage();
|
sl@0
|
306 |
}
|
sl@0
|
307 |
if($target eq "h2" || $target eq "lkb" || $target eq "h4" || $target eq "naviengine" || $target eq "h6" || $target eq "lab")
|
sl@0
|
308 |
{
|
sl@0
|
309 |
# procedure to build arm target different so identify a ARM based target
|
sl@0
|
310 |
$arm ="arm";
|
sl@0
|
311 |
}
|
sl@0
|
312 |
}
|
sl@0
|
313 |
|
sl@0
|
314 |
sub BuildRom()
|
sl@0
|
315 |
{
|
sl@0
|
316 |
my $command;
|
sl@0
|
317 |
# note from build 4713 -D_STARTUPMODE5 is replaced with -D_SSMSTARTUPMODE=5. Don't mix
|
sl@0
|
318 |
if($target ne "naviengine")
|
sl@0
|
319 |
{
|
sl@0
|
320 |
$command = "tools\\buildrom -D__NOWATCHER__ -D_DEBUG -D_SSMSTARTUPMODE=5";
|
sl@0
|
321 |
}
|
sl@0
|
322 |
else
|
sl@0
|
323 |
{
|
sl@0
|
324 |
#Currently startupmode flag is not used for NaviEngine.
|
sl@0
|
325 |
$command = "tools\\buildrom -D_DEBUG";
|
sl@0
|
326 |
$command .= " -DSYMBIAN_MDASOUNDADAPTER_FORCE_STEREO";
|
sl@0
|
327 |
}
|
sl@0
|
328 |
if($target ne "x86" && $target ne "naviengine")
|
sl@0
|
329 |
{
|
sl@0
|
330 |
$command .= " -D_SERIAL_DOWNLOAD";
|
sl@0
|
331 |
}
|
sl@0
|
332 |
if($smp ne "")
|
sl@0
|
333 |
{
|
sl@0
|
334 |
$command .= " -DSMP";
|
sl@0
|
335 |
}
|
sl@0
|
336 |
if($uni ne "")
|
sl@0
|
337 |
{
|
sl@0
|
338 |
#Use Flexible Memory Model for UniCore
|
sl@0
|
339 |
#Until base have fixed the issue related to this keep commented out.
|
sl@0
|
340 |
#$command .= " -DWITH_FLEXIBLE_MM";
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
$command .= " -D_NAND2" if ($nand ne "" && $arm ne "");
|
sl@0
|
344 |
$command .= " -DUSE_24BPP_DISPLAY_VARIANT" if ($target eq "h6" || "lab");
|
sl@0
|
345 |
if($wdp ne "")
|
sl@0
|
346 |
{
|
sl@0
|
347 |
$command .= " -DWITH_FLEXIBLE_MM -DUSE_SDIO_SD_MMC -D_INTERNAL_MMC -DUSE_DATA_PAGING"
|
sl@0
|
348 |
}
|
sl@0
|
349 |
$command .= " -DSYMBIAN_BASE_USE_GCE -DSYMBIAN_GRAPHICS_USE_GCE" if ($gce ne "");
|
sl@0
|
350 |
|
sl@0
|
351 |
# Needed to prevent Xml.iby errors if these flags are added to techview.oby for example, then remove them here
|
sl@0
|
352 |
$command .= " -DSYMBIAN_EXCLUDE_LIBXML2 -DSYMBIAN_EXCLUDE_LIBXML2_SAX_CPARSER_PLUGIN -DSYMBIAN_EXCLUDE_LIBXML2_DOM_XPATH_API";
|
sl@0
|
353 |
|
sl@0
|
354 |
# select instruction set type, only applicable for ARM based platforms
|
sl@0
|
355 |
#The below flags are currently not used for NaviEngine
|
sl@0
|
356 |
if($arm ne "" && $target ne "naviengine")
|
sl@0
|
357 |
{
|
sl@0
|
358 |
if ($eabi ne "" || -f $eka2IdentifyFile)
|
sl@0
|
359 |
{
|
sl@0
|
360 |
$command .= " -DRVCT -D_EABI=ARMV5";
|
sl@0
|
361 |
}
|
sl@0
|
362 |
else
|
sl@0
|
363 |
{
|
sl@0
|
364 |
$command .= " -D_THUMB";
|
sl@0
|
365 |
}
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
# Use the default FeatureManager database, not yet supported for x86
|
sl@0
|
369 |
if($arm ne "")
|
sl@0
|
370 |
{
|
sl@0
|
371 |
$command .= " -fm=$ENV{EPOCROOT}epoc32\\rom\\include\\featuredatabase.xml";
|
sl@0
|
372 |
}
|
sl@0
|
373 |
else
|
sl@0
|
374 |
{
|
sl@0
|
375 |
$command .= ' -nofm'; #-fm option not supported as of 0708.
|
sl@0
|
376 |
}
|
sl@0
|
377 |
|
sl@0
|
378 |
# select development board (now we build h4 by default)
|
sl@0
|
379 |
if ($target eq "lbk")
|
sl@0
|
380 |
{
|
sl@0
|
381 |
$command .= " lubbock";
|
sl@0
|
382 |
}
|
sl@0
|
383 |
elsif ($target eq "h2")
|
sl@0
|
384 |
{
|
sl@0
|
385 |
$command .= " h2";
|
sl@0
|
386 |
}
|
sl@0
|
387 |
elsif ($target eq "x86")
|
sl@0
|
388 |
{
|
sl@0
|
389 |
$command .= " x86pc";
|
sl@0
|
390 |
}
|
sl@0
|
391 |
elsif ($target eq "naviengine")
|
sl@0
|
392 |
{
|
sl@0
|
393 |
$command .= " naviengine";
|
sl@0
|
394 |
}
|
sl@0
|
395 |
elsif ($target eq "h6")
|
sl@0
|
396 |
{
|
sl@0
|
397 |
$command .= " pagedrom" if ($dp ne "");
|
sl@0
|
398 |
$command .= " 34xx_sdp";
|
sl@0
|
399 |
}
|
sl@0
|
400 |
elsif ($target eq "lab")
|
sl@0
|
401 |
{
|
sl@0
|
402 |
$command .= " pagedrom" if ($dp ne "");
|
sl@0
|
403 |
$command .= " lab";
|
sl@0
|
404 |
}
|
sl@0
|
405 |
elsif ($target eq "h4")
|
sl@0
|
406 |
{
|
sl@0
|
407 |
$command .= " pagedrom" if ($dp ne "");
|
sl@0
|
408 |
$command .= " h4hrp";
|
sl@0
|
409 |
}
|
sl@0
|
410 |
else
|
sl@0
|
411 |
{
|
sl@0
|
412 |
die "target does not exist!!"
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
# devkit.oby not included for NaviEngine currently
|
sl@0
|
416 |
if($target ne "naviengine")
|
sl@0
|
417 |
{
|
sl@0
|
418 |
$command .= " devkit";
|
sl@0
|
419 |
}
|
sl@0
|
420 |
$command .= " techview";
|
sl@0
|
421 |
|
sl@0
|
422 |
$command .= " misc.iby";
|
sl@0
|
423 |
|
sl@0
|
424 |
# use platform security, if appropriate
|
sl@0
|
425 |
if (-f $PlatSecIdentifyFile)
|
sl@0
|
426 |
{
|
sl@0
|
427 |
$command .= " platsec";
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
if ($extras ne "")
|
sl@0
|
431 |
{
|
sl@0
|
432 |
$command .= " mmfOpt.iby" ; # mmfOpt.iby should include optional stuff
|
sl@0
|
433 |
$command .= " iclOpt.iby" ; # iclOpt.iby should include optional stuff
|
sl@0
|
434 |
$command .= " miscOpt.iby" ; # miscOpt.iby should include optional stuff
|
sl@0
|
435 |
|
sl@0
|
436 |
if ($test ne "")
|
sl@0
|
437 |
{
|
sl@0
|
438 |
$command .= " mmfOptTest.iby" ; # mmfOptTest.iby should include tests of optional stuff
|
sl@0
|
439 |
$command .= " iclOptTest.iby" if $include_icl_tests ne ""; # iclOptTest.iby should include tests of optional stuff
|
sl@0
|
440 |
$command .= " miscOptTests.iby"; # miscOptTests.iby should include tests of optional stuff
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
# Open source code delivered separately to Symbian OS
|
sl@0
|
444 |
foreach $OptionalFile (@OptionalFiles)
|
sl@0
|
445 |
{
|
sl@0
|
446 |
if (-f $OptionalFile)
|
sl@0
|
447 |
{
|
sl@0
|
448 |
$OptionalFile =~ s/^.*\\//; # get only the filename
|
sl@0
|
449 |
|
sl@0
|
450 |
if ($OptionalFile eq "oggvorbiscodec.iby"
|
sl@0
|
451 |
|| $OptionalFile eq "omxoggvorbiscodec.iby")
|
sl@0
|
452 |
{
|
sl@0
|
453 |
$OggVorbisCodecPresent = 1;
|
sl@0
|
454 |
}
|
sl@0
|
455 |
|
sl@0
|
456 |
$command .= " ";
|
sl@0
|
457 |
$command .= $OptionalFile;
|
sl@0
|
458 |
}
|
sl@0
|
459 |
else
|
sl@0
|
460 |
{
|
sl@0
|
461 |
print "**** WARNING: $OptionalFile not added to ROM ****\n"
|
sl@0
|
462 |
}
|
sl@0
|
463 |
}
|
sl@0
|
464 |
|
sl@0
|
465 |
# Add oggvorbis to ROM only if oggvorbiscodec and omxoggvorbiscodec exist to prevent ROM build errors
|
sl@0
|
466 |
if ($OggVorbisCodecPresent)
|
sl@0
|
467 |
{
|
sl@0
|
468 |
$command .= " oggvorbis.iby";
|
sl@0
|
469 |
}
|
sl@0
|
470 |
}
|
sl@0
|
471 |
|
sl@0
|
472 |
if ($gce ne "")
|
sl@0
|
473 |
{
|
sl@0
|
474 |
$command .= " videorenderer.iby";
|
sl@0
|
475 |
|
sl@0
|
476 |
if ($test ne "")
|
sl@0
|
477 |
{
|
sl@0
|
478 |
$command .= " tsu_mmf_videorenderer.iby";
|
sl@0
|
479 |
}
|
sl@0
|
480 |
}
|
sl@0
|
481 |
|
sl@0
|
482 |
if ($test ne "")
|
sl@0
|
483 |
{
|
sl@0
|
484 |
if ($component eq $icl_param)
|
sl@0
|
485 |
{
|
sl@0
|
486 |
$command .= " iclIntTests.iby";
|
sl@0
|
487 |
$command .= " iclUnitTests.iby";
|
sl@0
|
488 |
}
|
sl@0
|
489 |
elsif ($component eq $mmf_param)
|
sl@0
|
490 |
{
|
sl@0
|
491 |
$command .= " mmfUnitTests.iby";
|
sl@0
|
492 |
if ($extras eq "")
|
sl@0
|
493 |
{
|
sl@0
|
494 |
$command .= " mmfNotOptTest.iby";
|
sl@0
|
495 |
}
|
sl@0
|
496 |
}
|
sl@0
|
497 |
else
|
sl@0
|
498 |
{
|
sl@0
|
499 |
# -f or default
|
sl@0
|
500 |
$command .= " MiscUnitTests.iby";
|
sl@0
|
501 |
$command .= " MiscIntTests.iby";
|
sl@0
|
502 |
$command .= " MMFUnitTests.iby";
|
sl@0
|
503 |
$command .= " MMFIntTests.iby";
|
sl@0
|
504 |
$command .= " ICLUnitTests.iby" if $include_icl_tests ne "";
|
sl@0
|
505 |
$command .= " ICLIntTests.iby" if $include_icl_tests ne "";
|
sl@0
|
506 |
if ($targetToolsExists)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
$command .= " ExtraMultimediaTests.iby ecam.iby";
|
sl@0
|
509 |
$command .= " timageviewer.iby timagedisplay.iby tphotoeditor.iby timagetran.iby" if $include_icl_tests ne "";
|
sl@0
|
510 |
}
|
sl@0
|
511 |
if ($extras eq "")
|
sl@0
|
512 |
{
|
sl@0
|
513 |
$command .= " mmfNotOptTest.iby";
|
sl@0
|
514 |
}
|
sl@0
|
515 |
}
|
sl@0
|
516 |
}
|
sl@0
|
517 |
if ($targetToolsExists)
|
sl@0
|
518 |
{
|
sl@0
|
519 |
if ($auto ne "")
|
sl@0
|
520 |
{
|
sl@0
|
521 |
$command .= " MMAutoExec.iby";
|
sl@0
|
522 |
}
|
sl@0
|
523 |
}
|
sl@0
|
524 |
|
sl@0
|
525 |
#pvdecoderaac.iby is somehow not getting included into naviengine roms, the way it is in case of H4 and the rest.
|
sl@0
|
526 |
if($target eq "naviengine")
|
sl@0
|
527 |
{
|
sl@0
|
528 |
$command .= " pvdecoderaac.iby";
|
sl@0
|
529 |
}
|
sl@0
|
530 |
|
sl@0
|
531 |
$command .= $addnl_ibys;
|
sl@0
|
532 |
|
sl@0
|
533 |
if ($gce eq "" and $dp eq "")
|
sl@0
|
534 |
{
|
sl@0
|
535 |
$command .= " surfacemanager_ref.iby" if ($target eq "h6" || "lab" || "naviengine");
|
sl@0
|
536 |
}
|
sl@0
|
537 |
|
sl@0
|
538 |
print $command, "\n";
|
sl@0
|
539 |
|
sl@0
|
540 |
die "EPOCROOT is not set" unless ($EPOCROOT ne "");
|
sl@0
|
541 |
my $romDir = $EPOCROOT . $KRomDir;
|
sl@0
|
542 |
die "$romDir does not exist" unless -d $romDir;
|
sl@0
|
543 |
chdir ($romDir) or die "Could not cd to $romDir - $!";
|
sl@0
|
544 |
|
sl@0
|
545 |
# delete the expected image, so clear whether worked or not
|
sl@0
|
546 |
if (-f $img)
|
sl@0
|
547 |
{
|
sl@0
|
548 |
my $count = unlink $img;
|
sl@0
|
549 |
die "Could not delete $KH2Img" unless $count == 1;
|
sl@0
|
550 |
}
|
sl@0
|
551 |
|
sl@0
|
552 |
# delete any existing zip, otherwise we could end up with multiple ROMs in our zip file
|
sl@0
|
553 |
if ($arm ne "" && -f $KZipName)
|
sl@0
|
554 |
{
|
sl@0
|
555 |
my $count = unlink $KZipName;
|
sl@0
|
556 |
die "Could not delete $KZipName" unless $count == 1;
|
sl@0
|
557 |
}
|
sl@0
|
558 |
|
sl@0
|
559 |
my $result = system($command);
|
sl@0
|
560 |
if ($result != 0)
|
sl@0
|
561 |
{
|
sl@0
|
562 |
print "Command failed ($result)\n";
|
sl@0
|
563 |
exit 1;
|
sl@0
|
564 |
}
|
sl@0
|
565 |
if($arm ne "")
|
sl@0
|
566 |
{
|
sl@0
|
567 |
if ($nand eq "" and $wdp eq "") # for nand etc you need to use the rofs loder, otherwise conver to sys$rom.zip
|
sl@0
|
568 |
{
|
sl@0
|
569 |
my $zipCommand = "zip " . $KZipName . " " . $img;
|
sl@0
|
570 |
|
sl@0
|
571 |
print $zipCommand, "\n";
|
sl@0
|
572 |
$result = system($zipCommand);
|
sl@0
|
573 |
if ($result != 0)
|
sl@0
|
574 |
{
|
sl@0
|
575 |
print "Command failed ($result)\n";
|
sl@0
|
576 |
exit 1;
|
sl@0
|
577 |
}
|
sl@0
|
578 |
}
|
sl@0
|
579 |
elsif ($nand ne "" or $wdp ne "")
|
sl@0
|
580 |
{
|
sl@0
|
581 |
if ($target eq "h6")
|
sl@0
|
582 |
{
|
sl@0
|
583 |
if ($nand ne "")
|
sl@0
|
584 |
{
|
sl@0
|
585 |
copy($KH6NandBootLoader,$KBinName) or die "Copy failed: $!";
|
sl@0
|
586 |
copy($KH6NandImg,$CoreImg) or die "Copy failed: $!";
|
sl@0
|
587 |
copy($KH6NandRofsImg,$Rofs1Img) or die "Copy failed: $!";
|
sl@0
|
588 |
}
|
sl@0
|
589 |
else # if ($wdp ne "") - not supported yet but ready for future releases
|
sl@0
|
590 |
{
|
sl@0
|
591 |
print "\nWDP is not supported yet on H6\n";
|
sl@0
|
592 |
exit 1;
|
sl@0
|
593 |
# copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!";
|
sl@0
|
594 |
# copy($KH6Img,$CoreImg) or die "Copy failed: $!";
|
sl@0
|
595 |
# copy($KH6RofsImg,$Rofs1Img) or die "Copy failed: $!";
|
sl@0
|
596 |
}
|
sl@0
|
597 |
}
|
sl@0
|
598 |
elsif ($target eq "lab")
|
sl@0
|
599 |
{
|
sl@0
|
600 |
if ($nand ne "")
|
sl@0
|
601 |
{
|
sl@0
|
602 |
copy($KLabNandImg,$CoreImg) or die "Copy failed: $!";
|
sl@0
|
603 |
copy($KLabNandRofsImg,$Rofs1Img) or die "Copy failed: $!";
|
sl@0
|
604 |
# copy($KLabNandBootLoader,$KBinName) or die "Copy failed: $!"; Lab Nandloader is still not part of the CBR release hence commenting this command for time being
|
sl@0
|
605 |
}
|
sl@0
|
606 |
else # if ($wdp ne "") - not supported yet but ready for future releases
|
sl@0
|
607 |
{
|
sl@0
|
608 |
print "\nWDP is not supported yet on Labrador\n";
|
sl@0
|
609 |
exit 1;
|
sl@0
|
610 |
# copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!";
|
sl@0
|
611 |
# copy($KLabImg,$CoreImg) or die "Copy failed: $!";
|
sl@0
|
612 |
# copy($KLabRofsImg,$Rofs1Img) or die "Copy failed: $!";
|
sl@0
|
613 |
}
|
sl@0
|
614 |
}
|
sl@0
|
615 |
else
|
sl@0
|
616 |
{
|
sl@0
|
617 |
if ($nand ne "")
|
sl@0
|
618 |
{
|
sl@0
|
619 |
copy($KH4NandBootLoader,$KBinName) or die "Copy failed: $!";
|
sl@0
|
620 |
copy($KH4NandImg,$CoreImg) or die "Copy failed: $!";
|
sl@0
|
621 |
copy($KH4NandRofsImg,$Rofs1Img) or die "Copy failed: $!";
|
sl@0
|
622 |
}
|
sl@0
|
623 |
else # if ($wdp ne "")
|
sl@0
|
624 |
{
|
sl@0
|
625 |
copy($KMmcBootLoader,$KBinName) or die "Copy failed: $!";
|
sl@0
|
626 |
copy($KH4Img,$CoreImg) or die "Copy failed: $!";
|
sl@0
|
627 |
copy($KH4RofsImg,$Rofs1Img) or die "Copy failed: $!";
|
sl@0
|
628 |
}
|
sl@0
|
629 |
}
|
sl@0
|
630 |
print "Generated " . $CoreImg . ", " . $Rofs1Img . " and " . $KBinName . "\n";
|
sl@0
|
631 |
$command = "dir " . $CoreImg . " " . $Rofs1Img . " " . $KBinName;
|
sl@0
|
632 |
system($command);
|
sl@0
|
633 |
}
|
sl@0
|
634 |
}
|
sl@0
|
635 |
}
|
sl@0
|
636 |
|
sl@0
|
637 |
sub Usage
|
sl@0
|
638 |
{
|
sl@0
|
639 |
# print usage statement and exit
|
sl@0
|
640 |
print <<ENDHERESTRING;
|
sl@0
|
641 |
usage:
|
sl@0
|
642 |
mmrombuild {-i|-m|-f} [+i] [-d] [-x] [-t] [-a] [-eabi] [-h2] [-h4] [-h6] [-lab] [-lbk] [-p <ibyfile>] [-ne <-uni/-smp>]
|
sl@0
|
643 |
|
sl@0
|
644 |
mmbuildrom will build a lubbock / H2 / H4 / NaviEngine / Labrador ROM for multimedia testing
|
sl@0
|
645 |
|
sl@0
|
646 |
It will always build a standard rom for the given platform, the various flags
|
sl@0
|
647 |
support what test and optional software is installed in addition.
|
sl@0
|
648 |
The parameters are as follows:
|
sl@0
|
649 |
|
sl@0
|
650 |
-d) Build demand-paging NAND rom - instead of standard NOR build. Implies -n
|
sl@0
|
651 |
-w) Build writable data paging NAND rom - implies -d but not -n!
|
sl@0
|
652 |
-i) Build ICL test (unit and integration) software only, if -t is set
|
sl@0
|
653 |
-m) Build MMF unit test software only, if -t is set
|
sl@0
|
654 |
+i) ICL tests are now disabled unless this parameter is also given
|
sl@0
|
655 |
-n) Build NAND rom - otherwise builds NOR
|
sl@0
|
656 |
-f) Add all tests software, it -t is set (default)
|
sl@0
|
657 |
-t) Add test software
|
sl@0
|
658 |
-x) Add optional Multimedia modules
|
sl@0
|
659 |
-g) Add optional Graphics Composition Engine enabled components
|
sl@0
|
660 |
-eabi) Builds rom for armv5
|
sl@0
|
661 |
-h2) Builds for H2 board
|
sl@0
|
662 |
-h4) Builds for H4 board
|
sl@0
|
663 |
-x86pc) Builds rom for X86 Platform
|
sl@0
|
664 |
-lab) Builds for labrador board
|
sl@0
|
665 |
-ne) Builds rom for NaviEngine board(NE (uni/smp) does not support demand paging yet)
|
sl@0
|
666 |
-smp) Builds an SMP-enabled Rom Image(Valid only if -ne flag is used)
|
sl@0
|
667 |
-uni) Builds UniCore Rom Image(Valid only if -ne flag is used)
|
sl@0
|
668 |
-lbk) Builds for lubbock board (default is h2)
|
sl@0
|
669 |
-p <ibyfile>) Append .iby file to list
|
sl@0
|
670 |
|
sl@0
|
671 |
ENDHERESTRING
|
sl@0
|
672 |
if ($targetToolsExists)
|
sl@0
|
673 |
{
|
sl@0
|
674 |
print "-a) Add MMAutoExec iby file (internal Symbian use only)"
|
sl@0
|
675 |
}
|
sl@0
|
676 |
if($wrong_ne_param)
|
sl@0
|
677 |
{
|
sl@0
|
678 |
print "\n \n*Did you forget to specify whether you want a UniCore image or an SMP image?*\n\n";
|
sl@0
|
679 |
}
|
sl@0
|
680 |
exit 1;
|
sl@0
|
681 |
}
|
sl@0
|
682 |
|