localisation/apparchitecture/tef/tssaac/tssaac_tapp_hardware.rss
author Maciej Seroka <maciejs@symbian.org>
Thu, 21 Jan 2010 12:53:44 +0000
branchSymbian2
changeset 1 8758140453c0
child 6 c108117318cb
permissions -rw-r--r--
Added Symbian2 smoketests from FBF at changeset bde28f2b1d99

// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Symbian Foundation License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// Modified default resource file to test apparc functionality
// during critical startup
// WARNING: Any changes made to this resource file must be
// checked against the sysstart apparc test cases listed
// T_TestLocalisedCaptionL      
// 
//

#include "startup.rh"

/////////////////////////////////////////////
// ENTRY POINT
/////////////////////////////////////////////

// THIS MUST BE THE FIRST RESOURCE. The system relies on
// this having a resource ID of 1

RESOURCE STARTUP_ENTRY_POINT r_entry_point
	{
	entry_point = r_startup_state_critical_static; 
	}
/////////////////////////////////////////////



/////////////////////////////////////////////
// CRITICAL-STATIC startup state
/////////////////////////////////////////////
RESOURCE STATE_INFO r_startup_state_critical_static
	{
	id = EStartupStateCriticalStatic;
	name = "Critical Static";
	command_list = r_critical_static_commands;
	next = r_startup_state_critical_dynamic;
	}

RESOURCE COMMAND_ARRAY r_critical_static_commands
	{
	commands =
		{
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\SysAgt2Svr.exe";
			start_method = EWaitForStart;
			no_of_retries_on_failure = 2;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\fbserv.exe";
			start_method = EWaitForStart;
			no_of_retries_on_failure = 1;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\ewsrv.exe";
			args = "-NoShell";
			start_method = EWaitForStart;
			},
		SPLASH_SCREEN
			{
			path = "Z:\\sys\\bin\\splash.exe";
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\eiksrvs.exe";
			args = "-OnlyStartDependentServers";
			start_method = EWaitForStart;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\tzserver.exe";
			start_method = EWaitForStart;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\tssaac_tapp.exe";
			start_method = EWaitForStart;
			}
		};
	}

/////////////////////////////////////////////
// CRITICAL-DYNAMIC startup state
/////////////////////////////////////////////
RESOURCE STATE_INFO r_startup_state_critical_dynamic
	{
	id = EStartupStateCriticalDynamic;
	name = "Critical Dynamic";
	command_list = r_critical_dynamic_commands;
	next = r_startup_state_networking_critical;
	}

RESOURCE COMMAND_ARRAY r_critical_dynamic_commands
	{
	commands =
		{
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\initialiselocale.exe";
			start_method = EWaitForStart;
			fail_on_error = EIgnoreCommandFailure;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\apsexe.exe";
			start_method = EWaitForStart; // this is the only method allowable for apsexe.exe
			},
		START_APP_INFO
			{
			path = "Z:\\sys\\bin\\shell.exe";	// Requires apparc to be properly started
			start_method = EDeferredWaitForStart;
			viewless = 1;	 
			},
		MULTIPLE_WAIT  
			{
			timeout = 10000;
			fail_on_error = EPanicOnCommandFailure;
			},
		SPLASH_SCREEN
			{
			kill = 1;
			}
		};
	}

/////////////////////////////////////////////
// Networking-CRITICAL startup state
/////////////////////////////////////////////
RESOURCE STATE_INFO  r_startup_state_networking_critical
	{
	id = EStartupStateNetworkingCritical;   
	name = "Networking-Critical";
	command_list =  r_networking_critical_commands;
	next = r_startup_state_non_critical;
	} 

RESOURCE COMMAND_ARRAY r_networking_critical_commands
	{
	commands =
		{
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\c32start.exe";
  			start_method = EWaitForStart;
  			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\msexe.exe";
			start_method = EWaitForStart;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\watcher.exe";
			start_method = EWaitForStart;
			}
		};
	}

/////////////////////////////////////////////
// NON-CRITICAL startup state
/////////////////////////////////////////////
RESOURCE STATE_INFO r_startup_state_non_critical
	{
	id = EStartupStateNonCritical;
	name = "Non-critical";
	command_list = r_non_critical_commands;
	next = 0;	// No more state transitions
	}

RESOURCE COMMAND_ARRAY r_non_critical_commands
	{
	commands =
		{
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\SystemAMS.exe";
			args = "-boot";
			fail_on_error = EIgnoreCommandFailure;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\swidaemon.exe";
			start_method = EWaitForStart;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\cntsrv.exe";
			args = "-nontransient";
			fail_on_error = 0;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\agsvexe.exe";
			args = "-nontransient";
			fail_on_error = 0;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\fotaagent.exe";
			fail_on_error = EIgnoreCommandFailure;
			},
		START_PROCESS_INFO
			{
			path = "z:\\sys\\bin\\Fepswitch.exe";
			start_method = EFireAndForget;
			fail_on_error = EIgnoreCommandFailure;
			},
		START_PROCESS_INFO
			{
			path = "Z:\\sys\\bin\\schexe.exe";
			args = "sysstartschexe"; // Command line parameter passed to schexe.exe
			fail_on_error = EIgnoreCommandFailure; //Task Scheduler may have already been started by a client
			}
		};
	}