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