imakerplugin/com.nokia.s60tools.imaker.tests/tools/iMakerStub.pl
author dpodwall
Tue, 12 Jan 2010 13:17:53 -0600
changeset 0 61163b28edca
child 1 7ff23301fe22
permissions -rw-r--r--
initial EPL conversion
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     1
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     2
# All rights reserved.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     3
# This component and the accompanying materials are made available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     4
# under the terms of "Eclipse Public License v1.0"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     5
# which accompanies this distribution, and is available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     6
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     7
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     8
# Initial Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     9
# Nokia Corporation - initial contribution.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    10
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    11
# Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    12
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    13
# Description:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    14
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    15
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    16
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    17
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    18
# iMakerStub.pl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
# Test stub for iMaker plugin JUnit tests.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
# This stub is used by IMakerWrapperTest and runs one iMaker call at the time.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
# File must be placed to C:\tests\ directory.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
$time = localtime;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
open OUTFILE, ">>out_iMakerStub.txt";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
print OUTFILE "iMakerStub.pl called at $time\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
$numArgs = $#ARGV + 1;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
print OUTFILE "Number of arguments: $numArgs\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
$testCase = $ARGV[0];
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
print OUTFILE "Test case: $testCase\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
print OUTFILE "Arguments:\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
foreach $argnum (0 .. $#ARGV) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
   print OUTFILE "\t$ARGV[$argnum]\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
if($numArgs eq 0) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
iMaker 09.37.01, 07-Sep-2009.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
Print help data on documented iMaker API items; targets and variables.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
Wildcards *, ? and [..] can be used with % patterns.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
help                  : Print this message.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
help-%                : Print help on help items matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
help-%-list           : Print a list of help items matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
help-target           : Print help on all targets (same as help-target-*).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
help-target-%         : Print help on targets matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
help-target-%-wiki    : Print wiki-formatted help on targets matching the patter
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
n.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
help-target-%-list    : Print a list of targets matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
help-variable         : Print help on all variables (same as help-variable-*).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
help-variable-%       : Print help on variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    63
help-variable-%-all   : Print full help on variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    64
help-variable-%-wiki  : Print wiki-formatted help on variables matching the patt
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    65
ern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    66
help-variable-%-list  : Print a list of variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
help-variable-%-value : Print a list of variables with values matching the patte
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
rn.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
help-config           : Print a list of available configurations in the current
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
working environment.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
menu                  : Run interactive menu.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
version               : Print the iMaker version number.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
For more info: http://configurationtools/imaker
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
exit(0);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
#@options = @ARGV;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
#shift @options;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
# Printing simulated imaker output to wrapper
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
# Test Case: testGetConfigurationsNoConfigs
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
# help-config
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
if( $testCase eq "test_case=testGetConfigurationsNoConfigs" ) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
print OUTFILE "Running help, no results\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
Testing new API
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
Total duration: 00:01
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
exit(0); # Just to ensure that no other results are returned
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   115
# Test Case: all test cases except testGetConfigurationsNoConfigs
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   116
# help-config
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   117
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   118
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   119
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   120
if($ARGV[0] eq "help-config") {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   121
print OUTFILE "Running help-config, full results\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   122
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   123
iMaker 09.37.01, 07-Sep-2009.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   124
Finding available configuration file(s):
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   125
/epoc32/rom/config/ncp77/filippa/image_conf_filippa.mk
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   126
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   127
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   128
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   129
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   130
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   131
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   132
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   133
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   134
# Test Case: all test cases except testGetConfigurationsNoTargets
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   135
# help-target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   136
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   137
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   138
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   139
if(($numArgs eq 3) and ($ARGV[2] =~ /filippa/ ) 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   140
    and ($ARGV[0] eq "help-target")) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   141
print OUTFILE "Running help-target, full results\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   142
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   143
iMaker 09.37.01, 07-Sep-2009.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   144
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   145
all
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   146
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   147
Description: Create all image sections and symbol files.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   148
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   149
clean
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   150
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   151
Description: Clean all target files.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   152
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   153
core
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   154
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   155
Description: Create Core (ROM & ROFS1) image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   156
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   157
core-dir
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   158
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   159
Description: Create directory structure for Core (ROM & ROFS1) creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   160
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   161
core-i2file
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   162
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   163
Description: Extract all files from Core (ROM & ROFS1) image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   164
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   165
core-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   166
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   167
Description: Create Core (ROM & ROFS1) image (.img) file(s).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   168
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   169
core-pre
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   170
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   171
Description: Run pre-step, create files etc. for Core (ROM & ROFS1) creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   172
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   173
core-symbol
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   174
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   175
Description: Create Core (ROM & ROFS1) symbol file(s).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   176
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   177
default
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   178
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   179
Description: Default target, uses variable TARGET_DEFAULT to get actual target(s), current default = core.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   180
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   181
e2flash
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   182
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   183
Description: Create the elf2flash (flash) file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   184
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   185
f2image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   186
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   187
Description: Revert the Symbian image file (.img) from the elf2flash (flash) file.(See CORE_FLASH,ROFS2_FLASH,ROFS3_FLASH)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   188
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   189
flash
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   190
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   191
Description: Create all image sections files. Not any symbol files.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   192
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   193
flash-all
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   194
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   195
Description: Create all image sections and symbol files.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   196
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   197
fota
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   198
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   199
Description: Create the FOTA sub-image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   200
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   201
help
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   202
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   203
Description: Print help on help targets.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   204
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   205
help-%
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   206
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   207
Description: Print help on help items matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   208
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   209
help-%-list
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   210
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   211
Description: Print a list of help items matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   212
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   213
help-config
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   214
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   215
Description: Print a list of available configurations in the current working environment.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   216
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   217
help-target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   218
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   219
Description: Print help on all targets (same as help-target-*).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   220
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   221
help-target-%
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   222
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   223
Description: Print help on targets matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   224
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   225
help-target-%-list
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   226
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   227
Description: Print a list of targets matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   228
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   229
help-target-%-wiki
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   230
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   231
Description: Print wiki-formatted help on targets matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   232
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   233
help-variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   234
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   235
Description: Print help on all variables (same as help-variable-*).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   236
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   237
help-variable-%
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   238
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   239
Description: Print help on variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   240
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   241
help-variable-%-all
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   242
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   243
Description: Print full help on variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   244
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   245
help-variable-%-list
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   246
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   247
Description: Print a list of variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   248
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   249
help-variable-%-value
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   250
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   251
Description: Print a list of variables with values matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   252
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   253
help-variable-%-wiki
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   254
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   255
Description: Print wiki-formatted help on variables matching the pattern.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   256
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   257
image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   258
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   259
Description: Create only the image file(s) (*.img)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   260
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   261
langpack_all
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   262
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   263
Description: Create all language packages.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   264
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   265
langpack_china
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   266
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   267
Description: Create language packages that belong to China region.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   268
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   269
langpack_japan
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   270
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   271
Description: Create language packages that belong to Japan region.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   272
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   273
langpack_western
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   274
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   275
Description: Create language packages that belong to Western region.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   276
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   277
mmc
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   278
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   279
Description: Create MMC/SD image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   280
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   281
mmc-dir
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   282
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   283
Description: Create directory structure for MMC/SD creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   284
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   285
mmc-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   286
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   287
Description: Create MMC/SD image (.img) file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   288
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   289
mmc-pre
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   290
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   291
Description: Run pre-step, create files etc. for MMC/SD creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   292
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   293
print-%
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   294
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   295
Description: Print the value(s) of the given variable(s). Wildcards *, ? and [..] can be used in variable names.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   296
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   297
resignsubcon
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   298
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   299
Description: Create re-signed security binaries for subcon image creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   300
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   301
rofs2
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   302
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   303
Description: Create ROFS2 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   304
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   305
rofs2-dir
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   306
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   307
Description: Create directory structure for ROFS2 creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   308
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   309
rofs2-i2file
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   310
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   311
Description: Extract all files from ROFS2 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   312
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   313
rofs2-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   314
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   315
Description: Create ROFS2 image (.img) file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   316
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   317
rofs2-pre
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   318
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   319
Description: Run pre-step, create files etc. for ROFS2 creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   320
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   321
rofs2-symbol
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   322
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   323
Description: Create ROFS2 symbol file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   324
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   325
rofs3
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   326
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   327
Description: Create ROFS3 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   328
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   329
rofs3-dir
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   330
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   331
Description: Create directory structure for ROFS3 creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   332
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   333
rofs3-i2file
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   334
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   335
Description: Extract all files from ROFS3 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   336
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   337
rofs3-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   338
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   339
Description: Create ROFS3 image (.img) file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   340
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   341
rofs3-pre
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   342
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   343
Description: Run pre-step, create files etc. for ROFS3 creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   344
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   345
rofs3-symbol
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   346
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   347
Description: Create ROFS3 symbol file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   348
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   349
rofs4
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   350
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   351
Description: Create DCC ROFS4 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   352
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   353
rofs4-dir
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   354
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   355
Description: Create directory structure for DCC ROFS4 creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   356
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   357
rofs4-i2file
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   358
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   359
Description: Extract all files from DCC ROFS4 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   360
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   361
rofs4-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   362
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   363
Description: Create DCC ROFS4 image (.img) file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   364
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   365
rofs4-pre
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   366
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   367
Description: Run pre-step, create files etc. for DCC ROFS4 creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   368
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   369
rofs4-symbol
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   370
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   371
Description: Create DCC ROFS4 symbol file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   372
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   373
romsymbol
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   374
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   375
Description: Create the rom symbol file
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   376
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   377
step-%
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   378
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   379
Description: Generic target to execute any step inside the iMaker configuration. Any step (e.g. BUILD_*,CLEAN_*) can be executed with step-STEPNAME. Example: step-ROFS2PRE executes the CLEAN_ROFS2PRE and BUILD_ROFS2PRE commands.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   380
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   381
toolinfo
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   382
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   383
Description: Print info about the tool
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   384
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   385
uda
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   386
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   387
Description: Create UDA image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   388
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   389
uda-dir
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   390
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   391
Description: Create directory structure for UDA creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   392
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   393
uda-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   394
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   395
Description: Create UDA image (.img) file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   396
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   397
uda-pre
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   398
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   399
Description: Run pre-step, create files etc. for UDA creation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   400
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   401
udaerase
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   402
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   403
Description: Create the flashable UDA erase image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   404
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   405
variant
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   406
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   407
Description: Create the variant image (rofs2,rofs3)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   408
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   409
variant-image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   410
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   411
Description: Create the variant image files (rofs2.img, rofs3.img)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   412
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   413
variantmmc
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   414
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   415
Description: Create MMC/SD image from a variant directory. Be sure to define the VARIANT_DIR.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   416
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   417
variantrofs2
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   418
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   419
Description: Create ROFS2 image from a variant directory. Be sure to define the VARIANT_DIR.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   420
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   421
variantrofs3
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   422
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   423
Description: Create ROFS3 image from a variant directory. Be sure to define the VARIANT_DIR.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   424
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   425
variantuda
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   426
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   427
Description: Create UDA image from a variant directory. Be sure to define the VARIANT_DIR.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   428
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   429
version
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   430
Type       : Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   431
Description: Print the version information
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   432
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   433
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   434
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   435
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   436
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   437
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   438
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   439
# Test Case: all test cases except testGetConfigurationsNoConfigElements
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   440
# help-variable-*-all
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   441
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   442
###########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   443
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   444
if(($numArgs eq 3) and ($ARGV[2] =~ /filippa/ ) 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   445
    and ($ARGV[0] eq "help-variable-*-all")) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   446
print OUTFILE "Running help-variable-*-all, giving full list\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   447
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   448
iMaker 09.37.01, 07-Sep-2009.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   449
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   450
BLDROBY = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   451
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   452
Description: For passing extra oby files (from command line) to the buildrom.pl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   453
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   454
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   455
BLDROM_OPT = `-loglevel1  -v -nosymbols   -DFEATUREVARIANT=filippa   -D__FEATURE_IBY__  -D_IMAGE_TYPE_RND'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   456
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   457
Description: The default buildrom.pl options
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   458
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   459
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   460
BLDROPT = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   461
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   462
Description: For passing extra parameters (from command line) to the buildrom.pl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   463
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   464
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   465
CONFIGROOT = `/epoc32/rom/config'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   466
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   467
Description: Define the default configuration root directory.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   468
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   469
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   470
CORE_CDPROMFILE = `/epoc32/rombuild/odpcoderomfiles.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   471
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   472
Description: The name of the core Code Demand Paging rom file (Code paging).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   473
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   474
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   475
CORE_DIR = `/epoc32/rombuild/filippa/core'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   476
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   477
Description: The working directory, when creating core image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   478
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   479
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   480
CORE_FLASH = `/epoc32/rombuild/filippa/filippa_0010_rnd.fpsx'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   481
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   482
Description: The name of the flashable core image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   483
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   484
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   485
CORE_FWIDFILE = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_fwid.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   486
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   487
Description: The (generated) _core_fwid.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   488
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   489
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   490
CORE_IMEISVFILE = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_imeisv.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   491
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   492
Description: The (generated) _core_imeisv.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   493
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   494
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   495
CORE_IMEISVINFO = `00'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   496
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   497
Description: The content string for the imeisv.txt file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   498
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   499
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   500
CORE_MODELFILE = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_model.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   501
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   502
Description: The (generated) _core_model.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   503
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   504
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   505
CORE_MODELINFO = `S60'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   506
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   507
Description: The content string for the model.txt file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   508
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   509
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   510
CORE_MSTOBY = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_master.oby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   511
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   512
Description: The generated master oby file name, which includes the CORE_OBY files
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   513
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   514
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   515
CORE_NAME = `/epoc32/rombuild/filippa/core/filippa_0010_rnd'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   516
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   517
Description: The name of the core image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   518
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   519
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   520
CORE_NDPROMFILE = `/epoc32/rombuild/romfiles.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   521
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   522
Description: The name of the core Non Demand Paging rom file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   523
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   524
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   525
CORE_OBY = `/epoc32/rom/ncp.oby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   526
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   527
Description: The oby file(s) included to the core image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   528
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   529
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   530
CORE_ODPROMFILE = `/epoc32/rombuild/odpromfiles.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   531
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   532
Description: The name of the core On Demand Paging rom file (Rom paging).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   533
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   534
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   535
CORE_OPT = `-loglevel1  -v -nosymbols   -DFEATUREVARIANT=filippa   -D__FEATURE_IBY__  -D_IMAGE_TYPE_RND -D_EABI=ARMV5    -DFILIPPA  -D_IMAGE_TYPE_NCP -DLCD_SHELL -DBSW_USE_TEXTSHELL_UPDATER'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   536
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   537
Description: The core specific buildrom options
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   538
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   539
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   540
CORE_PLATFILE = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_platform.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   541
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   542
Description: The (generated) _core_platform.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   543
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   544
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   545
CORE_PLATINFO = `SymbianOSMajorVersion=9\nSymbianOSMinorVersion=5\n'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   546
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   547
Description: The content string for the fwid.txt file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   548
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   549
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   550
CORE_PRODFILE = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_product.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   551
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   552
Description: The (generated) _core_product.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   553
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   554
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   555
CORE_ROFSFILE = `/epoc32/rombuild/odprofsfiles.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   556
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   557
Description: The name of the core rofs file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   558
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   559
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   560
CORE_ROMVER = `0.01(0)'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   561
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   562
Description: The rom version parameter passed to the version.iby
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   563
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   564
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   565
CORE_SWVERFILE = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_sw.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   566
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   567
Description: The (generated) _core_sw.txt version file name. This generated file is included in the CORE_VERIBY file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   568
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   569
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   570
CORE_SWVERINFO = `V 77.52.2009.24.0610_RC RND\n10-09-09\nRM-601\n(c) Nokia'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   571
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   572
Description: The content string for the sw.txt file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   573
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   574
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   575
CORE_TIME = `10/09/2009'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   576
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   577
Description: The time defined to the core image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   578
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   579
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   580
CORE_UDEBFILE = `/epoc32/rombuild/mytraces.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   581
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   582
Description: The name of the core udeb file. See USE_UDEB.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   583
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   584
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   585
CORE_VERIBY = `/epoc32/rombuild/filippa/core/filippa_0010_rnd_core_version.iby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   586
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   587
Description: The name of the generated core *version.iby, which included version files and info
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   588
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   589
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   590
CORE_VERSION = `V 77.52.2009.24.0610_RC RND'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   591
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   592
Description: The version of the core. Used in sw.txt generation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   593
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   594
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   595
COREPLAT_NAME = `ncp77'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   596
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   597
Description: Name of the core platform
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   598
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   599
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   600
CUSTVARIANT_COMPLP = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   601
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   602
Description: Compatible language variant.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   603
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   604
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   605
CUSTVARIANT_DIR = `/epoc32/rom/config/ncp77/filippa/customer/'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   606
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   607
Description: Overrides the VARIANT_DIR for customer variant, see the instructions of VARIANT_CONFCP for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   608
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   609
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   610
FLASH_EXT = `.fpsx'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   611
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   612
Description: The flash file extension.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   613
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   614
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   615
HWID = `0010'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   616
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   617
Description: Hardware Id
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   618
Values     : ([0-9]4)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   619
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   620
HWID_LIST = `0010 0020 0100 0110 0120 0130 0140 0200 0220'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   621
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   622
Description: Possible Hardware Ids of the product.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   623
Values     : ([0-9]4)*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   624
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   625
KEEPTEMP = `0'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   626
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   627
Description: Keep the buildrom.pl temp files (copied to the WORKDIR). E.g. tmp1.oby tmp2.oby..tmp9.oby
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   628
Values     : ([0|1])
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   629
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   630
LABEL = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   631
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   632
Description: A label to the NAME of the image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   633
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   634
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   635
LANGPACK_CONFCP = `7752 filippa '
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   636
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   637
Description: Overrides the VARIANT_CONFCP for language pack, see the instructions of VARIANT_CONFCP for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   638
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   639
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   640
LANGPACK_CONFML = `/epoc32/rom/config/ncp77/filippa/filippa.confml'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   641
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   642
Description: Overrides the VARIANT_CONFML for language pack, see the instructions of VARIANT_CONFML for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   643
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   644
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   645
LANGPACK_DEFAULTLANG = `English'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   646
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   647
Description: Default language is the language where the device will boot to (SIM language overrides this selection)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   648
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   649
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   650
LANGPACK_DIR = `/epoc32/rom/config/ncp77/filippa/language/'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   651
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   652
Description: Overrides the VARIANT_DIR for language pack, see the instructions of VARIANT_CONFCP for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   653
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   654
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   655
LANGPACK_ID = `01'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   656
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   657
Description: Language id used in the lang.txt generation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   658
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   659
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   660
LANGPACK_LANGS = `English'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   661
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   662
Description: Languages are the languages that are taken to the image (SC language is is defaulting to 01 in languages.txt)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   663
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   664
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   665
NAME = `filippa_0010_rnd'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   666
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   667
Description: The name of the image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   668
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   669
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   670
OPERATOR_OBY = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_operator.oby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   671
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   672
Description: The name for generated operator oby, which is a file generated based on an operator specific content.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   673
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   674
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   675
OPERATOR_OBYGEN = `geniby | /epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_operator.oby | /epoc32/rom/include/operator | *.iby | #include \"%3\" | end'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   676
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   677
Description: The name, path, rule for collecting content to the operator specific oby (E.g. operator.oby | /epoc32/rom/include/operator | *.iby collects all iby files from operator folder).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   678
Values     : (string)|(string)|(string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   679
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   680
PRODUCT_MODEL = `N00'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   681
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   682
Description: The model of the product
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   683
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   684
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   685
PRODUCT_NAME = `filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   686
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   687
Description: Name of the product
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   688
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   689
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   690
PRODUCT_REVISION = `01'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   691
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   692
Description: The revision of the product.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   693
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   694
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   695
PRODVARIANT_CONFCP = `7752 filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   696
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   697
Description: Overrides the VARIANT_CONFCP for product variant, see the instructions of VARIANT_CONFCP for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   698
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   699
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   700
PRODVARIANT_CONFML = `/epoc32/rom/config/ncp77/filippa/filippa.confml'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   701
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   702
Description: Overrides the VARIANT_CONFML for product variant, see the instructions of VARIANT_CONFML for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   703
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   704
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   705
PRODVARIANT_DIR = `/epoc32/rom/config/ncp77/filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   706
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   707
Description: Overrides the VARIANT_DIR for product variant, see the instructions of VARIANT_CONFCP for details.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   708
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   709
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   710
ROFS2_DIR = `/epoc32/rombuild/filippa/rofs2'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   711
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   712
Description: The working directory, when creating the rofs2 image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   713
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   714
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   715
ROFS2_FLASH = `/epoc32/rombuild/filippa/rofs2/filippa_0010_rnd.rofs2.fpsx'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   716
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   717
Description: The name of the flashable rofs2 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   718
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   719
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   720
ROFS2_FOOTER = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   721
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   722
Description: This variable can contain a footer section for the rofs2 master oby.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   723
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   724
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   725
ROFS2_FWIDFILE = `/epoc32/rombuild/filippa/rofs2/filippa_0010_rnd_rofs2_fwid.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   726
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   727
Description: The (generated) _rofs2_fwid.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   728
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   729
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   730
ROFS2_FWIDINFO = `id=language\nversion=01\n'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   731
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   732
Description: The content string for the fwid2.txt file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   733
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   734
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   735
ROFS2_HEADER = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   736
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   737
Description: This variable can contain a header section for the rofs2 master oby.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   738
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   739
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   740
ROFS2_MSTOBY = `/epoc32/rombuild/filippa/rofs2/filippa_0010_rnd_rofs2_master.oby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   741
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   742
Description: The (generated) rofs2 master oby file name. This file includes the ROFS2_OBY files and other parameters
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   743
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   744
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   745
ROFS2_NAME = `/epoc32/rombuild/filippa/rofs2/filippa_0010_rnd'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   746
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   747
Description: The name of the rofs2 image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   748
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   749
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   750
ROFS2_OBY = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   751
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   752
Description: The oby file(s) included to the rofs2 image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   753
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   754
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   755
ROFS2_OPT = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   756
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   757
Description: The rofs2 specific buildrom options
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   758
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   759
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   760
ROFS2_ROMVER = `0.01(0)'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   761
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   762
Description: The rofs2 ROM version string
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   763
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   764
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   765
ROFS2_TIME = `10/09/2009'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   766
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   767
Description: The time defined to the rofs2 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   768
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   769
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   770
ROFS2_VERIBY = `/epoc32/rombuild/filippa/rofs2/filippa_0010_rnd_rofs2_version.iby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   771
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   772
Description: The (generated) version iby file name for the rofs2 image. This file included the version text files and other version parameters.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   773
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   774
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   775
ROFS3_CUSTSWFILE = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_customersw.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   776
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   777
Description: The (generated) source file name for customersw.txt.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   778
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   779
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   780
ROFS3_CUSTSWINFO = `V 77.52.2009.24.0610_RC RND\n10-09-09'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   781
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   782
Description: The content string for the customersw.txt.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   783
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   784
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   785
ROFS3_DIR = `/epoc32/rombuild/filippa/rofs3'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   786
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   787
Description: The working directory, when creating the rofs3 image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   788
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   789
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   790
ROFS3_FLASH = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd.rofs3.fpsx'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   791
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   792
Description: The name of the flashable rofs3 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   793
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   794
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   795
ROFS3_FOOTER = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   796
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   797
Description: This variable can contain a footer section for the rofs3 master oby.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   798
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   799
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   800
ROFS3_FWIDFILE = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_fwid.txt'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   801
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   802
Description: The (generated) _rofs3_fwid.txt file name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   803
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   804
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   805
ROFS3_FWIDINFO = `id=customer\nversion=V 77.52.2009.24.0610_RC RND Customer\n'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   806
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   807
Description: The content string for the fwid3.txt file.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   808
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   809
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   810
ROFS3_HEADER = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   811
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   812
Description: This variable can contain a header section for the rofs3 master oby.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   813
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   814
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   815
ROFS3_MSTOBY = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_master.oby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   816
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   817
Description: The (generated) version iby file name for the rofs3 image. This file included the version text files and other version parameters.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   818
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   819
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   820
ROFS3_NAME = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   821
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   822
Description: The name of the rofs3 image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   823
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   824
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   825
ROFS3_OBY = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_operator.oby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   826
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   827
Description: The oby file(s) included to the rofs3 image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   828
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   829
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   830
ROFS3_OPT = `'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   831
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   832
Description: The rofs3 specific buildrom options
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   833
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   834
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   835
ROFS3_ROMVER = `0.01(0)'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   836
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   837
Description: The rofs3 ROM version string
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   838
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   839
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   840
ROFS3_TIME = `10/09/2009'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   841
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   842
Description: The time defined to the rofs3 image.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   843
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   844
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   845
ROFS3_VERIBY = `/epoc32/rombuild/filippa/rofs3/filippa_0010_rnd_rofs3_version.iby'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   846
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   847
Description: The (generated) version iby file name for the rofs3 image. This file included the version text files and other version parameters.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   848
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   849
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   850
SOS_VERSION = `9.5'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   851
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   852
Description: Symbian OS version number. The value is used in the version info generation (platform.txt).(see USE_VERGEN)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   853
Values     : ([0-9]+.[0-9]+)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   854
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   855
SWUPD_EXT = `.swupd'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   856
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   857
Description: The software update file extension.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   858
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   859
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   860
TARGET_DEFAULT = `core'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   861
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   862
Description: Configure actual target(s) for target default.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   863
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   864
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   865
TYPE = `rnd'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   866
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   867
Description: Defines the image type.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   868
Values     : (rnd|prd|subcon)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   869
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   870
USE_OVERRIDE = `1'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   871
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   872
Description: Define whether the override.pm Buildrom.pl plugin is used.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   873
Values     : ([0|1])
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   874
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   875
USE_PAGING = `rom'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   876
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   877
Description: Define the usage of On Demand Pagin (ODP). (E.g. 0,rom,code).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   878
Values     : ((0|rom|code[:[(1|2|3)]+]?))
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   879
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   880
USE_PLATSIM = `0'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   881
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   882
Description: Define that the configuration is a PlatSim configuration.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   883
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   884
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   885
USE_ROFS = `1'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   886
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   887
Description: Define the rofs sections in use. A comma separated list can be given of possible values. (E.g. 1,2,3).
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   888
Values     : ([[dummy|]0..6][,[dummy|]0..6]*)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   889
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   890
USE_ROMFILE = `1'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   891
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   892
Description: Define whether the \epoc32\rombuild\romfiles.txt is used. Files in romfiles are automatically moved to ROM, everything else in core is moved to ROFS1.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   893
Values     : ([0|1])
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   894
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   895
USE_SYMGEN = `0'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   896
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   897
Description: Generate the rom symbol file. 0=Do not generate, 1=Generate
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   898
Values     : ([0|1])
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   899
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   900
USE_UDEB = `0'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   901
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   902
Description: Include the usage of the debug binary *.txt to define the list of binaries that are taken from udeb folder instead of the urel.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   903
Values     : ([0|1|full])
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   904
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   905
USE_VERGEN = `1'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   906
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   907
Description: Use iMaker version info generation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   908
Values     : ([0|1])
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   909
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   910
VARIANT_CONFCP = `7752 filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   911
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   912
Description: Configure which ConfigurationTool generated configurations dirs are copied to output.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   913
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   914
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   915
VARIANT_CONFML = `/epoc32/rom/config/ncp77/filippa/filippa.confml'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   916
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   917
Description: Configure what is the ConfigurationTool input confml file, when configuration tool is ran.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   918
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   919
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   920
VARIANT_DIR = `/epoc32/rom/config/ncp77/filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   921
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   922
Description: Configure the directory where to included the customer variant content. By default all content under  is included to the image as it exists in the folder.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   923
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   924
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   925
WORKDIR = `/epoc32/rombuild/filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   926
Type       : Variable
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   927
Description: The working directory for the image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   928
Values     : (string)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   929
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   930
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   931
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   932
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   933
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   934
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   935
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   936
# Test Case: testGetConfigurationsNoConfigElements
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   937
# help-variable-*-all
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   938
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   939
###########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   940
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   941
if(($testCase eq "test_case=testGetConfigurationsNoConfigElements") 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   942
    and ($ARGV[1] eq "help-variable-*-all")) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   943
print OUTFILE "Running help-variable-*-all, no results\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   944
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   945
Testing new API
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   946
----------------------------------------
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   947
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   948
Total duration: 00:01
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   949
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   950
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   951
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   952
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   953
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   954
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   955
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   956
# Test Case: testBuildImage
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   957
# 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   958
###########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   959
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   960
if( $testCase eq "test_case=testBuildImage" ) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   961
print OUTFILE "Running build image, returning builder result\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   962
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   963
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   964
Testing new API
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   965
Generating oby for Variant ROFS2 image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   966
Generating ROFS2 version file(s)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   967
Creating Variant ROFS2 SOS image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   968
Generating Variant ROFS2 Elf2flash configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   969
Adding BB5 Common Header(s) to Variant ROFS2
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   970
Creating flashable Variant ROFS2 image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   971
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   972
Total duration: 01:13
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   973
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   974
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   975
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   976
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   977
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   978
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   979
#
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   980
# Test Case: testBuildImageFailed
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   981
# 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   982
###########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   983
##########################################################################################################################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   984
if( $testCase eq "test_case=testBuildImageFailed" ) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   985
print OUTFILE "Running build image, returning builder result with errors\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   986
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   987
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   988
Testing new API
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   989
Generating oby for Variant ROFS2 image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   990
Generating ROFS2 version file(s)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   991
Creating Variant ROFS2 SOS image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   992
Generating Variant ROFS2 Elf2flash configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   993
Adding BB5 Common Header(s) to Variant ROFS2
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   994
Creating flashable Variant ROFS2 image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   995
error: something went wrong
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   996
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   997
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   998
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   999
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1000
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1001
if(($numArgs eq 3) and ($ARGV[2] eq "flash")) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1002
print "
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1003
iMaker 09.37.01, 07-Sep-2009.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1004
Variant target             USE_VARIANTBLD = `1'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1005
Variant directory          VARIANT_DIR    = `/epoc32/rom/config/ncp77/filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1006
Variant config makefile    VARIANT_MK     = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1007
Variant include directory  VARIANT_INCDIR = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1008
Variant confml file        VARIANT_CONFML = `/epoc32/rom/config/ncp77/filippa/filippa.confml'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1009
Variant CenRep configs     VARIANT_CONFCP = `7752 filippa'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1010
Variant SIS directory      VARIANT_SISDIR = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1011
Variant operator cache dir VARIANT_OPCDIR = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1012
Variant widget preinst dir VARIANT_WGZDIR = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1013
Variant zip content dir    VARIANT_ZIPDIR = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1014
Variant copy content dir   VARIANT_CPDIR  = -
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1015
Variant output directory   VARIANT_OUTDIR = `/epoc32/rombuild/filippa/core/variant'
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1016
Calling S60 Configuration Tool
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1017
Generating Feature manager file(s)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1018
Generating file(s) for Core (ROM & ROFS1) image creation
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1019
Creating Core (ROM & ROFS1) SOS image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1020
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1021
Missing file(s):
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1022
1) \epoc32\rombuild\filippa\core\filippa_0010_rnd_core_master.oby(95): Missing file: '\epoc32\release\ARMV5\urel\BTRACEX_LDD' in statement 'data='
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1023
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1024
Warning(s):
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1025
1) WARNING: /epoc32/include/s60features.xml doesn't exist
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1026
2) WARNING: /epoc32/include/s60regionalfeatures.xml doesn't exist
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1027
3) WARNING: /epoc32/include/s60customswfeatures.xml doesn't exist
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1028
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1029
Error(s):
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1030
1) ERROR: Invalid patchable value at \"power_resources.dll\@KHwDrvMMC_CorePinNo     None \"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1031
2) ERROR: Invalid patchable value at \"power_resources.dll\@KHwDrvMMC_IOPinNo       None \"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1032
Generating Boot Block Elf2flash configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1033
Creating flashable Boot Block image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1034
Creating GenIO Initialization subimage
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1035
Adding BB5 Common Header(s) to GenIO Initialization image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1036
Generating SOS (Core) Elf2flash configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1037
Adding BB5 Common Header(s) to SOS (Core) image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1038
Creating flashable SOS (Core) image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1039
Generating Core Elf2flash configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1040
Creating flashable Core image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1041
Generating UDA Erase Elf2flash configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1042
Creating flashable UDA Erase image
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1043
";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1044
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1045
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1046
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1047
####################
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1048
END {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1049
print OUTFILE "---------------------------------------------------------------\n";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1050
close OUTFILE;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1051
}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1052
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1053
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
  1054
#EOF