| OLD | NEW |
| 1 #!/usr/bin/python |
| 2 |
| 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 1 config = {} | 7 config = {} |
| 2 config['default'] = { | 8 config['default'] = { |
| 3 'board' : 'x86-generic', | 9 'board' : 'x86-generic', |
| 4 'uprev' : False, | 10 'uprev' : False, |
| 5 } | 11 } |
| 6 config['x86-generic-pre-flight-queue'] = { | 12 config['x86-generic-pre-flight-queue'] = { |
| 7 'board' : 'x86-generic', | 13 'board' : 'x86-generic', |
| 8 'uprev' : True, | 14 'uprev' : True, |
| 9 } | 15 } |
| OLD | NEW |