OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Dictionary of configuration types for cbuildbot. | 5 """Dictionary of configuration types for cbuildbot. |
6 | 6 |
7 Each dictionary entry is in turn a dictionary of config_param->value. | 7 Each dictionary entry is in turn a dictionary of config_param->value. |
8 | 8 |
9 config_param's: | 9 config_param's: |
10 board -- The board of the image to build. | 10 board -- The board of the image to build. |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 'uprev' : True, | 96 'uprev' : True, |
97 'rev_overlays': 'public', | 97 'rev_overlays': 'public', |
98 'push_overlays': 'public', | 98 'push_overlays': 'public', |
99 }) | 99 }) |
100 | 100 |
101 config['x86-generic-chrome-pre-flight-queue'] = default.copy() | 101 config['x86-generic-chrome-pre-flight-queue'] = default.copy() |
102 config['x86-generic-chrome-pre-flight-queue'].update({ | 102 config['x86-generic-chrome-pre-flight-queue'].update({ |
103 'board' : 'x86-generic', | 103 'board' : 'x86-generic', |
104 'master' : True, | 104 'master' : True, |
105 | 105 |
106 'uprev' : True, | 106 'uprev' : False, |
107 'rev_overlays': 'public', | 107 'rev_overlays': 'public', |
108 'push_overlays': 'public', | 108 'push_overlays': 'public', |
109 }) | 109 }) |
110 | 110 |
111 | 111 |
112 config['x86-mario-pre-flight-queue'] = default.copy() | 112 config['x86-mario-pre-flight-queue'] = default.copy() |
113 config['x86-mario-pre-flight-queue'].update({ | 113 config['x86-mario-pre-flight-queue'].update({ |
114 'board' : 'x86-mario', | 114 'board' : 'x86-mario', |
115 'master' : True, | 115 'master' : True, |
116 | 116 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 config['x86-pineview-full'].update({ | 208 config['x86-pineview-full'].update({ |
209 'board' : 'x86-pineview', | 209 'board' : 'x86-pineview', |
210 }) | 210 }) |
211 | 211 |
212 # TODO(dgarrett) delete when buildbot updated to use new names | 212 # TODO(dgarrett) delete when buildbot updated to use new names |
213 config['x86_agz_bin'] = config['x86-agz-bin'] | 213 config['x86_agz_bin'] = config['x86-agz-bin'] |
214 config['x86_dogfood_bin'] = config['x86-dogfood-bin'] | 214 config['x86_dogfood_bin'] = config['x86-dogfood-bin'] |
215 config['x86_pineview_bin'] = config['x86-pineview-bin'] | 215 config['x86_pineview_bin'] = config['x86-pineview-bin'] |
216 config['arm_tegra2_bin'] = config['arm-tegra2-bin'] | 216 config['arm_tegra2_bin'] = config['arm-tegra2-bin'] |
217 config['arm_generic_bin'] = config['arm-generic-bin'] | 217 config['arm_generic_bin'] = config['arm-generic-bin'] |
OLD | NEW |