os/kernelhwsrv/bsptemplate/asspandvariant/template_variant/rom/header.iby
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
//
sl@0
    18
// TO DO: (mandatory)
sl@0
    19
//
sl@0
    20
// This file provides the ROM header information for your variant
sl@0
    21
//
sl@0
    22
#define HEAPMAX(x)
sl@0
    23
sl@0
    24
// Relative variant path from base
sl@0
    25
#define VARIANT_PATH template\template_variant
sl@0
    26
sl@0
    27
//
sl@0
    28
// The Variant ID
sl@0
    29
//
sl@0
    30
#define VARID		0x09080001
sl@0
    31
#define MAGIC		0x09080001
sl@0
    32
#define ALL			0x09080001
sl@0
    33
sl@0
    34
#define FIXED
sl@0
    35
// Define FIXED as below for moving memory model:
sl@0
    36
// #define FIXED		fixed
sl@0
    37
sl@0
    38
// Enable all Kernel logging
sl@0
    39
kerneltrace 0xffffffff
sl@0
    40
sl@0
    41
// Comment out the following line for moving memory model:
sl@0
    42
memmodel multiple 0x100000
sl@0
    43
sl@0
    44
trace 0x10
sl@0
    45
collapse arm gcc 0
sl@0
    46
multikernel
sl@0
    47
sl@0
    48
nowrapper
sl@0
    49
sl@0
    50
// Bootrom and Kernel debug should send log to this serial port:
sl@0
    51
debugport 0
sl@0
    52
sl@0
    53
version=0.01
sl@0
    54
bootbinary=\Epoc32\Release\##MAIN##\_template_bootrom.bin
sl@0
    55
sl@0
    56
// These values in super page are for multiple memory model:
sl@0
    57
romsize=0x2000000
sl@0
    58
romlinearbase=0x80000000
sl@0
    59
romalign=0x10
sl@0
    60
kerneldataaddress=0xC8000000
sl@0
    61
kernelheapmin=0x1000			// calculated at boot time
sl@0
    62
kernelheapmax=0x00FFF000
sl@0
    63
sl@0
    64
// These values in super page are for moving memory model:
sl@0
    65
// romsize=0x01000000
sl@0
    66
// romlinearbase=0xf8000000
sl@0
    67
// romalign=0x10
sl@0
    68
// kerneldataaddress=0x64000000
sl@0
    69
// kernelheapmin=0x08000
sl@0
    70
// kernelheapmax=0x00FFC000
sl@0
    71
sl@0
    72
dataaddress=0x400000
sl@0
    73
defaultstackreserve=0x200000
sl@0
    74
romchecksum=0x12345678
sl@0
    75
sl@0
    76
//#define WITH_LFFS
sl@0
    77
//#define WITH_EXTENSION
sl@0
    78
//#define WITH_ROFS
sl@0
    79
//#define WITH_COMP
sl@0
    80
sl@0
    81
//MMC/SD not used, exclude MMC partition Library
sl@0
    82
#define USE_CUSTOM_MMC_PARTITION
sl@0
    83
sl@0
    84
#ifdef UNICODE
sl@0
    85
unicode
sl@0
    86
#endif
sl@0
    87