Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Side by Side Diff: bin/cbuildbot_config.py

Issue 5839004: Change tegra2 binary builder to use board=tegra2_dev-board instead of tegra2. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils@master
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698