|
1 // Copyright (c) 2005-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 // Modified default resource file to test system starter |
|
15 // WARNING: Any changes made to this resource file must be |
|
16 // checked against the system starter test cases. |
|
17 // Specifically: |
|
18 // - AppFailRetry0Ignore |
|
19 // |
|
20 // |
|
21 |
|
22 #include <startup.rh> |
|
23 |
|
24 |
|
25 // |
|
26 // ENTRY POINT |
|
27 // |
|
28 |
|
29 // THIS MUST BE THE FIRST RESOURCE. The system relies on |
|
30 // this having a resource ID of 1 |
|
31 |
|
32 RESOURCE STARTUP_ENTRY_POINT r_entry_point |
|
33 { |
|
34 entry_point = r_startup_state_non_critical; |
|
35 } |
|
36 |
|
37 |
|
38 // |
|
39 // NON-CRITICAL startup state |
|
40 // |
|
41 RESOURCE STATE_INFO r_startup_state_non_critical |
|
42 { |
|
43 id = EStartupStateNonCritical; |
|
44 name = "Non-critical"; |
|
45 command_list = r_non_critical_commands; |
|
46 next = 0; // No more state transitions |
|
47 } |
|
48 |
|
49 RESOURCE COMMAND_ARRAY r_non_critical_commands |
|
50 { |
|
51 commands = |
|
52 { |
|
53 START_AMA_STARTER |
|
54 { |
|
55 |
|
56 }, |
|
57 START_PROCESS_INFO |
|
58 { |
|
59 path = "Z:\\sys\\bin\\SystemAMS.exe"; |
|
60 args = "-boot"; |
|
61 fail_on_error = EIgnoreCommandFailure; |
|
62 }, |
|
63 START_PROCESS_INFO |
|
64 { |
|
65 path = "Z:\\sys\\bin\\swidaemon.exe"; |
|
66 start_method = EWaitForStart; |
|
67 }, |
|
68 START_PROCESS_INFO |
|
69 { |
|
70 path = "Z:\\sys\\bin\\cntsrv.exe"; |
|
71 args = "-nontransient"; |
|
72 fail_on_error = 0; |
|
73 }, |
|
74 START_PROCESS_INFO |
|
75 { |
|
76 path = "Z:\\sys\\bin\\agsvexe.exe"; |
|
77 args = "-nontransient"; |
|
78 fail_on_error = 0; |
|
79 }, |
|
80 START_PROCESS_INFO |
|
81 { |
|
82 path = "Z:\\sys\\bin\\fotaagent.exe"; |
|
83 fail_on_error = EIgnoreCommandFailure; |
|
84 } |
|
85 }; |
|
86 } |
|
87 |
|
88 |