| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 config['x86_pineview_bin'] = { | 93 config['x86_pineview_bin'] = { |
| 94 'board' : 'x86-pineview', | 94 'board' : 'x86-pineview', |
| 95 'uprev' : True, | 95 'uprev' : True, |
| 96 'master' : False, | 96 'master' : False, |
| 97 'important' : False, | 97 'important' : False, |
| 98 'unittests': True, | 98 'unittests': True, |
| 99 'rev_overlays': 'public', | 99 'rev_overlays': 'public', |
| 100 'push_overlays': None, | 100 'push_overlays': None, |
| 101 } | 101 } |
| 102 config['arm_tegra2_bin'] = { | 102 config['arm_tegra2_bin'] = { |
| 103 'board' : 'tegra2', | 103 'board' : 'tegra2_dev-board', |
| 104 'uprev' : True, | 104 'uprev' : True, |
| 105 'master' : False, | 105 'master' : False, |
| 106 'important' : False, | 106 'important' : False, |
| 107 'unittests' : False, | 107 'unittests' : False, |
| 108 'rev_overlays': 'public', | 108 'rev_overlays': 'public', |
| 109 'push_overlays': None, | 109 'push_overlays': None, |
| 110 } | 110 } |
| 111 config['arm_generic_bin'] = { | 111 config['arm_generic_bin'] = { |
| 112 'board' : 'arm-generic', | 112 'board' : 'arm-generic', |
| 113 'uprev' : True, | 113 'uprev' : True, |
| 114 'master' : False, | 114 'master' : False, |
| 115 'important' : False, | 115 'important' : False, |
| 116 'unittests' : False, | 116 'unittests' : False, |
| 117 'rev_overlays': 'public', | 117 'rev_overlays': 'public', |
| 118 'push_overlays': None, | 118 'push_overlays': None, |
| 119 } | 119 } |
| OLD | NEW |