os/graphics/windowing/windowserver/test/resource/armv5/SSCForStartupMode7_target.rss
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/resource/armv5/SSCForStartupMode7_target.rss	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,109 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "startup.rh"
    1.20 +
    1.21 +// This file has been based on
    1.22 +// app-framework/sysstart/resource/armv5/SSCForStartupMode0_target.rss
    1.23 +// It is customized for running the wserv tests using wshell.
    1.24 +//
    1.25 +// ENTRY POINT
    1.26 +//
    1.27 +
    1.28 +// THIS MUST BE THE FIRST RESOURCE. The system relies on
    1.29 +// this having a resource ID of 1
    1.30 +
    1.31 +RESOURCE STARTUP_ENTRY_POINT r_entry_point
    1.32 +	{
    1.33 +	entry_point = r_startup_state_critical_static; 
    1.34 +	}
    1.35 +//
    1.36 +
    1.37 +
    1.38 +
    1.39 +//
    1.40 +// CRITICAL-STATIC startup state
    1.41 +//
    1.42 +RESOURCE STATE_INFO r_startup_state_critical_static
    1.43 +	{
    1.44 +	id = EStartupStateCriticalStatic;
    1.45 +	name = "Critical Static";
    1.46 +	command_list = r_critical_static_commands;
    1.47 +	next = r_startup_state_critical_dynamic;
    1.48 +	}
    1.49 +
    1.50 +RESOURCE COMMAND_ARRAY r_critical_static_commands
    1.51 +	{
    1.52 +	commands =
    1.53 +		{
    1.54 +		START_PROCESS_INFO
    1.55 +			{
    1.56 +			path = "Z:\\sys\\bin\\SysAgt2Svr.exe"; 
    1.57 +			start_method = EWaitForStart;
    1.58 +			no_of_retries_on_failure = 2;
    1.59 +			},
    1.60 +		START_PROCESS_INFO
    1.61 +			{
    1.62 +			path = "Z:\\sys\\bin\\fbserv.exe";
    1.63 +			start_method = EWaitForStart;
    1.64 +			no_of_retries_on_failure = 1;
    1.65 +			},
    1.66 +		START_PROCESS_INFO
    1.67 +			{
    1.68 +			path = "Z:\\sys\\bin\\ewsrv.exe";
    1.69 +			start_method = EWaitForStart;
    1.70 +			}
    1.71 +		};
    1.72 +	}
    1.73 +
    1.74 +//
    1.75 +// CRITICAL-DYNAMIC startup state
    1.76 +//
    1.77 +RESOURCE STATE_INFO r_startup_state_critical_dynamic
    1.78 +	{
    1.79 +	id = EStartupStateCriticalDynamic;
    1.80 +	name = "Critical Dynamic";
    1.81 +	command_list = r_critical_dynamic_commands;
    1.82 +	next = r_startup_state_non_critical;
    1.83 +	}
    1.84 +
    1.85 +RESOURCE COMMAND_ARRAY r_critical_dynamic_commands
    1.86 +	{
    1.87 +	commands =
    1.88 +		{
    1.89 +		};
    1.90 +	}
    1.91 +
    1.92 +//
    1.93 +// NON-CRITICAL startup state
    1.94 +//
    1.95 +RESOURCE STATE_INFO r_startup_state_non_critical
    1.96 +	{
    1.97 +	id = EStartupStateNonCritical;
    1.98 +	name = "Non-critical";
    1.99 +	command_list = r_non_critical_commands;
   1.100 +	next = 0;	// No more state transitions
   1.101 +	}
   1.102 +
   1.103 +RESOURCE COMMAND_ARRAY r_non_critical_commands
   1.104 +	{
   1.105 +	commands =
   1.106 +		{
   1.107 +		};
   1.108 +	}
   1.109 +
   1.110 +
   1.111 +
   1.112 +