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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
135 | 135 |
136 config['arm-generic-bin'] = default.copy() | 136 config['arm-generic-bin'] = default.copy() |
137 config['arm-generic-bin'].update({ | 137 config['arm-generic-bin'].update({ |
138 'board' : 'arm-generic', | 138 'board' : 'arm-generic', |
139 'uprev' : True, | 139 'uprev' : True, |
140 'unittests' : False, | 140 'unittests' : False, |
141 'vm_tests' : False, | 141 'vm_tests' : False, |
142 'factory_install_mod' : False, | 142 'factory_install_mod' : False, |
143 'factory_test_mod' : False, | 143 'factory_test_mod' : False, |
144 }) | 144 }) |
145 | 145 |
sosa
2011/01/27 23:13:08
Maybe create a default_full ... that is a copy of
dgarrett
2011/01/28 00:18:05
Instead created 'arm' and 'full' defaults which ca
| |
146 config['arm-generic-rel'] = default.copy() | |
sosa
2011/01/27 23:13:08
Can we rename these to arm-generic-full etc.?
| |
147 config['arm-generic-rel'].update({ | |
148 'board' : 'arm-generic', | |
149 | |
150 'unittests' : False, | |
151 'vm_tests' : False, | |
152 | |
153 'usepkg' : False, | |
154 'chroot_replace' : True, | |
155 | |
156 'archive_build' : True, | |
157 'factory_install_mod' : False, | |
158 'factory_test_mod' : False, | |
159 }) | |
160 | |
161 config['arm-tegra2-rel'] = default.copy() | |
162 config['arm-tegra2-rel'].update({ | |
163 'board' : 'tegra2-dev-board', | |
164 | |
165 'unittests' : False, | |
166 'vm_tests' : False, | |
167 | |
168 'usepkg' : False, | |
169 'chroot_replace' : True, | |
170 | |
171 'archive_build' : True, | |
172 'factory_install_mod' : False, | |
173 'factory_test_mod' : False, | |
174 }) | |
175 | |
176 config['x86-generic-rel'] = default.copy() | |
177 config['x86-generic-rel'].update({ | |
178 'board' : 'x86-generic', | |
179 | |
180 'usepkg' : False, | |
181 'chroot_replace' : True, | |
182 | |
183 'archive_build' : True, | |
184 }) | |
185 | |
186 config['x86-pineview-rel'] = default.copy() | |
187 config['x86-pineview-rel'].update({ | |
188 'board' : 'x86-pineview', | |
189 | |
190 'usepkg' : False, | |
191 'chroot_replace' : True, | |
192 | |
193 'archive_build' : True, | |
194 }) | |
195 | |
196 | |
197 | |
146 # TODO(dgarrett) delete when buildbot updated to use new names | 198 # TODO(dgarrett) delete when buildbot updated to use new names |
147 config['x86_agz_bin'] = config['x86-agz-bin'] | 199 config['x86_agz_bin'] = config['x86-agz-bin'] |
148 config['x86_dogfood_bin'] = config['x86-dogfood-bin'] | 200 config['x86_dogfood_bin'] = config['x86-dogfood-bin'] |
149 config['x86_pineview_bin'] = config['x86-pineview-bin'] | 201 config['x86_pineview_bin'] = config['x86-pineview-bin'] |
150 config['arm_tegra2_bin'] = config['arm-tegra2-bin'] | 202 config['arm_tegra2_bin'] = config['arm-tegra2-bin'] |
151 config['arm_generic_bin'] = config['arm-generic-bin'] | 203 config['arm_generic_bin'] = config['arm-generic-bin'] |
OLD | NEW |