sf_config/rombuild/syborg/systemstarter/SSCForStartupMode1_target.rss
branchRCL_3
changeset 42 a7133d76f724
parent 40 c6e687949bf3
child 43 1d2d80cd09d4
--- a/sf_config/rombuild/syborg/systemstarter/SSCForStartupMode1_target.rss	Tue May 11 13:45:04 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,118 +0,0 @@
-// Copyright (c) 2005-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" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
-// which accompanies this distribution, and is available
-// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
-//
-// Initial Contributors:
-// Nokia Corporation - initial contribution.
-//
-// Contributors:
-//
-// Description:
-// SSCForStartupMode1.rss
-// Used to bring up textshell for testing purposes.
-// 
-//
-
-#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 =
-		{
-#ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
-		START_PROCESS_INFO
-			{
-			path = "Z:\\sys\\bin\\sysmon.exe";
-			start_method = EWaitForStart;
-			no_of_retries_on_failure = 2;
-			},
-#endif
-		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\\ewsrv.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_non_critical;
-	}
-
-RESOURCE COMMAND_ARRAY r_critical_dynamic_commands
-	{
-	commands =
-		{
-		START_APP_INFO
-			{
-			path = "Z:\\sys\\bin\\eshell.exe";
-			viewless = 1;
-			}
-
-		};
-	}
-
-/////////////////////////////////////////////
-// 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 =
-		{
-#ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
-		START_AMA_STARTER
-			{
-			} 
-#endif
-		};
-	}