| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 'master' : True, | 134 'master' : True, |
| 135 | 135 |
| 136 'uprev' : True, | 136 'uprev' : True, |
| 137 'rev_overlays': 'both', | 137 'rev_overlays': 'both', |
| 138 'push_overlays': 'private', | 138 'push_overlays': 'private', |
| 139 }) | 139 }) |
| 140 | 140 |
| 141 config['x86-alex-pre-flight-branch'] = default.copy() | 141 config['x86-alex-pre-flight-branch'] = default.copy() |
| 142 config['x86-alex-pre-flight-branch'].update({ | 142 config['x86-alex-pre-flight-branch'].update({ |
| 143 'board' : 'x86-alex', | 143 'board' : 'x86-alex', |
| 144 'master' : True, | 144 'master' : False, |
| 145 | 145 |
| 146 'uprev' : True, | 146 'uprev' : True, |
| 147 'rev_overlays': 'both', | 147 'rev_overlays': 'both', |
| 148 'push_overlays': None, | 148 'push_overlays': None, |
| 149 }) | 149 }) |
| 150 | 150 |
| 151 config['x86-mario-pre-flight-branch'] = default.copy() | 151 config['x86-mario-pre-flight-branch'] = default.copy() |
| 152 config['x86-mario-pre-flight-branch'].update({ | 152 config['x86-mario-pre-flight-branch'].update({ |
| 153 'board' : 'x86-mario', | 153 'board' : 'x86-mario', |
| 154 'master' : True, | 154 'master' : True, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 config['x86-generic-full'].update(full) | 230 config['x86-generic-full'].update(full) |
| 231 config['x86-generic-full'].update({ | 231 config['x86-generic-full'].update({ |
| 232 'board' : 'x86-generic', | 232 'board' : 'x86-generic', |
| 233 }) | 233 }) |
| 234 | 234 |
| 235 config['x86-pineview-full'] = default.copy() | 235 config['x86-pineview-full'] = default.copy() |
| 236 config['x86-pineview-full'].update(full) | 236 config['x86-pineview-full'].update(full) |
| 237 config['x86-pineview-full'].update({ | 237 config['x86-pineview-full'].update({ |
| 238 'board' : 'x86-pineview', | 238 'board' : 'x86-pineview', |
| 239 }) | 239 }) |
| OLD | NEW |