mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-11 23:16:58 +02:00
TEST=Ran cbuildbot locally. Review URL: http://codereview.chromium.org/3137006 Change-Id: I8c80334480a4a2e4bb32234d323c0b129bed4692
16 lines
361 B
Python
16 lines
361 B
Python
#!/usr/bin/python
|
|
|
|
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
config = {}
|
|
config['default'] = {
|
|
'board' : 'x86-generic',
|
|
'uprev' : False,
|
|
}
|
|
config['x86-generic-pre-flight-queue'] = {
|
|
'board' : 'x86-generic',
|
|
'uprev' : True,
|
|
}
|