~linaro-automation/lava-dispatcher/multinode

« back to all changes in this revision

Viewing changes to lava_dispatcher/default-config/lava-dispatcher/device-defaults.conf

  • Committer: Neil Williams
  • Date: 2013-09-20 07:59:38 UTC
  • Revision ID: neil.williams@linaro.org-20130920075938-qt4cby3m1xggwim3
Mark branch as obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# The default device settings.
2
 
 
3
 
# All device settings default to these values unless they are
4
 
# overwritten by the specific device type file
5
 
# (device-types/${TYPE}.conf) or the specific device file
6
 
# (devices/${DEVICE}.conf).
7
 
 
8
 
# The client_type.  This determines how we connect, deploy to and
9
 
# control the booting of the device.  'master', the default, means a
10
 
# board that boots into a known good image by default but can be
11
 
# manipulated to boot from different boot and rootfs filesystems.
12
 
# 'qemu' is the other possible value at this time.
13
 
client_type = master
14
 
 
15
 
connection_command = conmux-console %(hostname)s
16
 
 
17
 
pre_connect_command =
18
 
 
19
 
# The bootloader commands to boot the device into the test image (we
20
 
# assume that the device boots into the master image without bootloader
21
 
# intervention).
22
 
#
23
 
# XXX should be called # boot_test_image_commands ?
24
 
boot_cmds =
25
 
 
26
 
# The bootloader commands to boot the device into an android-based test
27
 
# image.
28
 
#
29
 
# XXX should be called # boot_android_test_image_commands ?
30
 
boot_cmds_android =
31
 
 
32
 
# The bootloader commands to boot the device into an OpenEmbedded test image.
33
 
#
34
 
# XXX should be called # boot_oe_test_image_commands ?
35
 
boot_cmds_oe =
36
 
 
37
 
# The device type.  Settings in device-types/${DEVICE_TYPE}.conf
38
 
# override settings in this file, but are overridden by the
39
 
# devices/${DEVICE}.conf file.
40
 
device_type =
41
 
 
42
 
# The network interface that comes up by default
43
 
default_network_interface = eth0
44
 
 
45
 
# boot partition number, counting from 1
46
 
#
47
 
# This is used to divide up the image produced by linaro-media-create
48
 
# into sections to write onto the device.
49
 
boot_part = 1
50
 
 
51
 
# root partition number, counting from 1
52
 
#
53
 
# This is used to divide up the image produced by linaro-media-create
54
 
# into sections to write onto the device.
55
 
root_part = 2
56
 
 
57
 
# Original linaro-android-media-create generated Android system SD card layout
58
 
#
59
 
# This is used to regenerate init script when Android bootup for partitions are
60
 
# changed if deployed in LAVA test image
61
 
#
62
 
# boot partition number in original Android, counting from 1
63
 
boot_part_android_org = 1
64
 
# sys partition number in original Android, counting from 1
65
 
sys_part_android_org = 2
66
 
# cache partition number in original Android, counting from 1
67
 
cache_part_android_org = 3
68
 
# data partition number in original Android, counting from 1
69
 
data_part_android_org = 5
70
 
# sdcard partition number in original Android, counting from 1
71
 
sdcard_part_android_org = 6
72
 
 
73
 
# Android LAVA test image SD card layout
74
 
#
75
 
# This is used to regenerate init script when Android bootup for partitions are
76
 
# changed if deployed in LAVA test image
77
 
#
78
 
# sys partition number in LAVA test image, counting from 1
79
 
sys_part_android = 5
80
 
# sdcard partition number in LAVA test image, counting from 1
81
 
sdcard_part_android = 7
82
 
# data partition number in LAVA test image, counting from 1
83
 
data_part_android = 6
84
 
 
85
 
# Master image recognization string
86
 
# This is only used to detect that the master image has booted, it is
87
 
# overwritten after that.
88
 
# MASTER_STR = root@master
89
 
 
90
 
# The string to look for to interrupt the boot process
91
 
interrupt_boot_prompt = Hit any key to stop autoboot
92
 
 
93
 
# The string command to stop the normal boot process
94
 
interrupt_boot_command = ""
95
 
 
96
 
# The string to look for to know that the boot process has begun
97
 
image_boot_msg = Linux version
98
 
 
99
 
# The character the boot loader uses as a prompt on this board.
100
 
bootloader_prompt = #
101
 
 
102
 
# The argument to pass to --dev when invoking linaro-media-create
103
 
# Defaults to device_type because that's what was used before this
104
 
# option was introduced.
105
 
lmc_dev_arg = %(device_type)s
106
 
 
107
 
# The value to pass to qemu-system-arm's -M option.
108
 
qemu_machine_type = %(device_type)s
109
 
 
110
 
# QEMU drive interface.
111
 
qemu_drive_interface = sd
112
 
 
113
 
# This is for android build where the network is not up by default. 1 or 0
114
 
enable_network_after_boot_android = 1
115
 
 
116
 
# the url of disablesusepend.sh script in android git repository
117
 
git_url_disablesuspend_sh = "http://android.git.linaro.org/gitweb?p=device/linaro/common.git;a=blob_plain;f=disablesuspend.sh;hb=refs/heads/linaro-ics"
118
 
 
119
 
# the url of the media files for CTS test
120
 
cts_media_url = http://testdata.validation.linaro.org/cts/media.tgz
121
 
 
122
 
# how long the disablesuspend script should take to complete
123
 
#disablesuspend_timeout = 240
124
 
 
125
 
# This is the actual boot device for test images. Can be overridden in device
126
 
# specific config file.
127
 
boot_device = 0
128
 
 
129
 
# The test boot offset that should be added to the boot partition for data
130
 
# obtained from boot.txt or uEnv.txt and others. Can be overridden in device
131
 
# specific config file.
132
 
testboot_offset = 2
133
 
 
134
 
# How many times the dispatcher should try to reboot master and test images before failing
135
 
boot_retries = 3