Index: bin/cbuildbot_config.py |
diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py |
index ccd514b47b48c524f516ae98183b29ce8bbf76b8..b4ebfac8bc56f636956b25fa54d1f0c3a3897cc4 100644 |
--- a/bin/cbuildbot_config.py |
+++ b/bin/cbuildbot_config.py |
@@ -143,6 +143,58 @@ config['arm-generic-bin'].update({ |
'factory_test_mod' : False, |
}) |
sosa
2011/01/27 23:13:08
Maybe create a default_full ... that is a copy of
dgarrett
2011/01/28 00:18:05
Instead created 'arm' and 'full' defaults which ca
|
+config['arm-generic-rel'] = default.copy() |
sosa
2011/01/27 23:13:08
Can we rename these to arm-generic-full etc.?
|
+config['arm-generic-rel'].update({ |
+ 'board' : 'arm-generic', |
+ |
+ 'unittests' : False, |
+ 'vm_tests' : False, |
+ |
+ 'usepkg' : False, |
+ 'chroot_replace' : True, |
+ |
+ 'archive_build' : True, |
+ 'factory_install_mod' : False, |
+ 'factory_test_mod' : False, |
+}) |
+ |
+config['arm-tegra2-rel'] = default.copy() |
+config['arm-tegra2-rel'].update({ |
+ 'board' : 'tegra2-dev-board', |
+ |
+ 'unittests' : False, |
+ 'vm_tests' : False, |
+ |
+ 'usepkg' : False, |
+ 'chroot_replace' : True, |
+ |
+ 'archive_build' : True, |
+ 'factory_install_mod' : False, |
+ 'factory_test_mod' : False, |
+}) |
+ |
+config['x86-generic-rel'] = default.copy() |
+config['x86-generic-rel'].update({ |
+ 'board' : 'x86-generic', |
+ |
+ 'usepkg' : False, |
+ 'chroot_replace' : True, |
+ |
+ 'archive_build' : True, |
+}) |
+ |
+config['x86-pineview-rel'] = default.copy() |
+config['x86-pineview-rel'].update({ |
+ 'board' : 'x86-pineview', |
+ |
+ 'usepkg' : False, |
+ 'chroot_replace' : True, |
+ |
+ 'archive_build' : True, |
+}) |
+ |
+ |
+ |
# TODO(dgarrett) delete when buildbot updated to use new names |
config['x86_agz_bin'] = config['x86-agz-bin'] |
config['x86_dogfood_bin'] = config['x86-dogfood-bin'] |