sysstatemgmt/systemstarter/group/sysstartconfig.iby
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __SYSSTARTCONFIG_IBY__
       
    17 #define __SYSSTARTCONFIG_IBY__
       
    18 
       
    19 REM Simple startup configuration - install a single resource file 
       
    20 REM as the default "mode 0" file.
       
    21 REM Note this is a Techview specific way of including just the 
       
    22 REM SSC required in the ROM. Licensees are expected to include more 
       
    23 REM than one SSC in their devices.
       
    24 
       
    25 #ifdef _STARTUPMODE
       
    26 define _10205CC4_MODE _STARTUPMODE
       
    27 
       
    28 // previous scheme used _STARTUPMODEx defines
       
    29 // which are maintained for backwards compatibility
       
    30 #elif defined(_STARTUPMODE0)
       
    31 define _10205CC4_MODE 0	
       
    32 #elif defined(_STARTUPMODE1)
       
    33 define _10205CC4_MODE 1			// Text shell
       
    34 #elif defined(_STARTUPMODE2)
       
    35 define _10205CC4_MODE 2         // System Test
       
    36 #elif defined(_STARTUPMODE3)
       
    37 define _10205CC4_MODE 3         // Rapid Techview
       
    38 #elif defined(_STARTUPMODE4)
       
    39 define _10205CC4_MODE 4         // No watchers
       
    40 #elif defined(_STARTUPMODE5)
       
    41 define _10205CC4_MODE 5         // Demand Paging
       
    42 #elif defined(_STARTUPMODE8)
       
    43 define _10205CC4_MODE 8         // MiniGUI
       
    44 #else
       
    45 
       
    46 // default to mode 0
       
    47 define _10205CC4_MODE 0         // Normal
       
    48 #endif
       
    49 
       
    50 REM Selected mode _10205CC4_MODE startup resource file
       
    51 
       
    52 data=MULTI_LINGUIFY(RSC EPOCROOT##epoc32\data\Z\private\10205C44\SSCForStartupMode##_10205CC4_MODE##_target  private\10205C44\SSCForStartupMode0)
       
    53 #endif