Index: tools/buildbot_spec.py |
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py |
index 551907038eec0856ce470c9d3850b9dcf4a1b5d0..b549a1b08be815df146d41e23572d65803aa3d1a 100755 |
--- a/tools/buildbot_spec.py |
+++ b/tools/buildbot_spec.py |
@@ -244,6 +244,12 @@ def device_cfg(builder_dict): |
'Daisy': 'daisy', |
}[builder_dict['model']] |
+ # iOS. |
+ if 'iOS' in builder_dict.get('os', ''): |
+ return { |
+ 'iPad4': 'iPad4,1', |
+ }[builder_dict['model']] |
+ |
return None |