sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // gsastartupcmdlist7_target.rss sl@0: // Modified default resource file to test graphics wserv sl@0: // Modifications: sl@0: // - customized for running the wserv tests using wshell sl@0: // sl@0: // sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: UID2 KUidSsmCommandListResourceFile sl@0: sl@0: // SSM_COMMAND_LIST_ROOT must be the first resource in a command list resource file. sl@0: // The SSM relies on this having a resource ID of 1. sl@0: RESOURCE SSM_COMMAND_LIST_ROOT sl@0: { sl@0: command_list_mapping = r_command_list_mapping; sl@0: } sl@0: sl@0: RESOURCE SSM_COMMAND_LIST_MAPPING r_command_list_mapping sl@0: { sl@0: mappings = sl@0: { sl@0: SSM_COMMANDLISTID_TO_RESOURCEID sl@0: { sl@0: command_list_id = ESsmStartupSubStateCriticalStatic; sl@0: resource_id = r_critical_static_commands; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE SSM_COMMAND_LIST r_critical_static_commands sl@0: { sl@0: commands = sl@0: { sl@0: r_increment_boot_count sl@0: , r_command_publish_system_state sl@0: , r_command_ssmutilsrv sl@0: , r_command_sysagt2svr sl@0: , r_command_fbserv sl@0: , r_command_wserv sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE SSM_START_PROCESS_INFO r_command_ssmutilsrv sl@0: { sl@0: severity = ECmdCriticalSeverity; sl@0: name = "ssmutilsrv.exe"; sl@0: execution_behaviour = ESsmWaitForSignal; sl@0: retries = 2; sl@0: } sl@0: sl@0: RESOURCE SSM_START_PROCESS_INFO r_command_sysagt2svr sl@0: { sl@0: severity = ECmdCriticalSeverity; sl@0: name = "SysAgt2Svr.exe"; sl@0: execution_behaviour = ESsmWaitForSignal; sl@0: retries = 2; sl@0: } sl@0: sl@0: RESOURCE SSM_START_PROCESS_INFO r_command_fbserv sl@0: { sl@0: severity = ECmdCriticalSeverity; sl@0: name = "fbserv.exe"; sl@0: execution_behaviour = ESsmWaitForSignal; sl@0: retries = 1; sl@0: } sl@0: sl@0: RESOURCE SSM_START_PROCESS_INFO r_command_wserv sl@0: { sl@0: severity = ECmdCriticalSeverity; sl@0: name = "wserv.exe"; sl@0: execution_behaviour = ESsmWaitForSignal; sl@0: } sl@0: sl@0: RESOURCE SSM_PUBLISH_SYSTEM_STATE r_command_publish_system_state sl@0: { sl@0: severity = ECmdCriticalSeverity; sl@0: } sl@0: sl@0: RESOURCE SSM_START_CUSTOM_COMMAND r_increment_boot_count sl@0: { sl@0: severity = ECmdCriticalSeverity; sl@0: execution_behaviour = ESsmWaitForSignal; sl@0: dllname = "cmncustomcmds.dll"; sl@0: ordinal = 1; // Persist reboots custom command is at ordinal 1 sl@0: dll_data = r_increment; sl@0: } sl@0: sl@0: RESOURCE SSM_COMMAND_PERSIST_REBOOTS r_increment sl@0: { sl@0: val = EIncrementBootCount; sl@0: } sl@0: