os/graphics/windowing/windowserver/test/resource/wins/gsastartupcmdlist7.rss
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-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 // gsastartupcmdlist7_target.rss
    15 // Modified default resource file to test graphics wserv
    16 // Modifications:
    17 // - customized for running the wserv tests using wshell
    18 // 
    19 //
    20 
    21 
    22 #include <ssm/ssmcmd.rh>
    23 #include <ssm/ssmsubstates.hrh>
    24 #include <ssm/cmdpersistreboots.rh>
    25 #include <ssm/cmdpersistreboots.hrh>
    26 
    27 UID2 KUidSsmCommandListResourceFile
    28 
    29 // SSM_COMMAND_LIST_ROOT must be the first resource in a command list resource file.
    30 // The SSM relies on this having a resource ID of 1.
    31 RESOURCE SSM_COMMAND_LIST_ROOT
    32 	{
    33 	command_list_mapping = r_command_list_mapping;
    34 	}
    35 
    36 RESOURCE SSM_COMMAND_LIST_MAPPING r_command_list_mapping
    37 	{
    38 	mappings =
    39 		{
    40 		SSM_COMMANDLISTID_TO_RESOURCEID
    41 			{
    42 			command_list_id = ESsmStartupSubStateCriticalStatic;
    43 			resource_id = r_critical_static_commands;
    44 			}
    45 		};
    46 	}
    47 
    48 
    49 RESOURCE SSM_COMMAND_LIST r_critical_static_commands
    50    	{
    51 	commands =
    52 		{
    53 		r_increment_boot_count
    54 		, r_command_publish_system_state
    55 		, r_command_ssmutilsrv
    56 		, r_command_sysagt2svr
    57 		, r_command_fbserv
    58 		, r_command_wserv
    59 		};
    60 	}
    61 
    62 
    63 RESOURCE SSM_START_PROCESS_INFO r_command_ssmutilsrv
    64 	{
    65 	severity = ECmdCriticalSeverity;
    66 	name = "ssmutilsrv.exe";
    67 	execution_behaviour = ESsmWaitForSignal;
    68 	retries = 2;
    69 	}
    70 
    71 RESOURCE SSM_START_PROCESS_INFO r_command_sysagt2svr
    72 	{
    73 	severity = ECmdCriticalSeverity;
    74 	name = "SysAgt2Svr.exe";
    75 	execution_behaviour = ESsmWaitForSignal;
    76 	retries = 2;
    77 	}
    78 
    79 RESOURCE SSM_START_PROCESS_INFO r_command_fbserv
    80 	{
    81 	severity = ECmdCriticalSeverity;
    82 	name = "fbserv.exe";
    83 	execution_behaviour = ESsmWaitForSignal;
    84 	retries = 1;
    85 	}
    86 
    87 RESOURCE SSM_START_PROCESS_INFO r_command_wserv
    88 	{
    89 	severity = ECmdCriticalSeverity;
    90 	name = "wserv.exe";
    91 	execution_behaviour = ESsmWaitForSignal;
    92 	}
    93 
    94 RESOURCE SSM_PUBLISH_SYSTEM_STATE r_command_publish_system_state
    95 	{
    96 	severity = ECmdCriticalSeverity;
    97 	}
    98 
    99 RESOURCE SSM_START_CUSTOM_COMMAND r_increment_boot_count
   100 	{
   101 	severity = ECmdCriticalSeverity;
   102 	execution_behaviour = ESsmWaitForSignal;
   103 	dllname = "cmncustomcmds.dll";
   104 	ordinal = 1; // Persist reboots custom command is at ordinal 1
   105 	dll_data = r_increment;
   106 	}
   107 
   108 RESOURCE SSM_COMMAND_PERSIST_REBOOTS r_increment
   109 	{
   110 	val = EIncrementBootCount;
   111 	}
   112